문제

I'm currently trying to add a new column to a product order, when you create a new shipment (the adminhtml/blocks/sales/order/shipment/create area) and have been beating my head against for a while, with various different guides. I've tried to change the item.phtml and form.phtml with very little success.

I was able to change the form block itself (form.php), but that's little help with the deeper core of the product listing. I'd like each product to have a column for its manufacturer attribute, but I'd be happy with just a column showing up where it's supposed to.

도움이 되었습니까?

해결책

You can refer below xml there are two path block and template either my creating new files or editing same you can get result


app\design\adminhtml\default\default\layout\sales.xml
<block type="adminhtml/sales_order_view_items" name="order_items" template="sales/order/view/items.phtml">
    <action method="addItemRender"><type>default</type><block>adminhtml/sales_order_view_items_renderer_default</block><template>sales/order/view/items/renderer/default.phtml</template></action>
    <action method="addColumnRender"><column>qty</column><block>adminhtml/sales_items_column_qty</block><template>sales/items/column/qty.phtml</template></action>
    <action method="addColumnRender"><column>name</column><block>adminhtml/sales_items_column_name</block><template>sales/items/column/name.phtml</template></action>
    <action method="addColumnRender"><column>name</column><block>adminhtml/sales_items_column_name_grouped</block><template>sales/items/column/name.phtml</template><type>grouped</type></action>
    <block type="core/text_list" name="order_item_extra_info" />
</block>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top