Skip to content

Commit 0af356f

Browse files
ENGCOM-1316: MSI-430: Added additional container to shipment form for display extra shipment information (ex. Inventory data) #14731
- Merge Pull Request #14731 from seruymt/magento2:MSI-430 - Merged commits: 1. 823402e
2 parents f5debf0 + 823402e commit 0af356f

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_new.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
<container name="extra_customer_info"/>
1616
</block>
1717
<block class="Magento\Sales\Block\Adminhtml\Order\Payment" name="order_payment"/>
18+
<container name="extra_shipment_info"/>
1819
<block class="Magento\Shipping\Block\Adminhtml\Create\Items" name="order_items" template="Magento_Shipping::create/items.phtml">
1920
<block class="Magento\Sales\Block\Adminhtml\Items\Renderer\DefaultRenderer" name="default" as="default" template="Magento_Shipping::create/items/renderer/default.phtml"/>
2021
<block class="Magento\Sales\Block\Adminhtml\Items\Column\Qty" name="column_qty" template="Magento_Sales::items/column/qty.phtml" group="column"/>

app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_view.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
<container name="extra_customer_info"/>
1616
</block>
1717
<block class="Magento\Sales\Block\Adminhtml\Order\Payment" name="order_payment"/>
18+
<container name="extra_shipment_info"/>
1819
<block class="Magento\Shipping\Block\Adminhtml\View\Items" name="shipment_items" template="Magento_Shipping::view/items.phtml">
1920
<block class="Magento\Sales\Block\Adminhtml\Items\Renderer\DefaultRenderer" name="default" as="default" template="Magento_Shipping::view/items/renderer/default.phtml"/>
2021
<block class="Magento\Sales\Block\Adminhtml\Items\Column\Qty" name="column_qty" template="Magento_Sales::items/column/qty.phtml" group="column"/>

app/code/Magento/Shipping/view/adminhtml/templates/create/form.phtml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
</div>
5353
</div>
5454
</div>
55+
<div><?= $block->getChildHtml('extra_shipment_info') ?></div>
5556
<div id="ship_items_container">
5657
<?= $block->getItemsHtml() ?>
5758
</div>

app/code/Magento/Shipping/view/adminhtml/templates/view/form.phtml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ $order = $block->getShipment()->getOrder();
103103
</div>
104104
</div>
105105
</section>
106+
<div><?= $block->getChildHtml('extra_shipment_info') ?></div>
106107

107108
<section class="admin__page-section">
108109
<div class="admin__page-section-title">

0 commit comments

Comments
 (0)