Skip to content

Commit 16274ed

Browse files
committed
Merge pull request #399 from magento-mpi/prs
[Github] Merge public Github commits
2 parents d3fb588 + 762e586 commit 16274ed

File tree

5 files changed

+9
-2
lines changed

5 files changed

+9
-2
lines changed

app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_new.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
<block class="Magento\Sales\Block\Adminhtml\Order\Invoice\Totals" name="invoice_totals" template="order/totals.phtml">
2525
<block class="Magento\Sales\Block\Adminhtml\Order\Totals\Tax" name="tax" template="order/totals/tax.phtml"/>
2626
</block>
27+
<container name="submit_before" label="Submit Before"/>
28+
<container name="submit_after" label="Submit After"/>
2729
</block>
2830
</block>
2931
</block>

app/code/Magento/Sales/view/adminhtml/templates/order/invoice/create/items.phtml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,10 @@
123123
<label class="admin__field-label" for="send_email"><?php echo __('Email Copy of Invoice') ?></label>
124124
</div>
125125
<?php endif; ?>
126+
<?php echo $block->getChildHtml('submit_before') ?>
126127
<div class="actions">
127128
<?php echo $block->getChildHtml('submit_button') ?>
129+
<?php echo $block->getChildHtml('submit_after') ?>
128130
</div>
129131
</div>
130132
</div>

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
<block class="Magento\Sales\Block\Adminhtml\Items\Column\Qty" name="column_qty" template="Magento_Sales::items/column/qty.phtml" group="column"/>
1919
<block class="Magento\Sales\Block\Adminhtml\Items\Column\Name" name="column_name" template="Magento_Sales::items/column/name.phtml" group="column"/>
2020
<block class="Magento\Framework\View\Element\Text\ListText" name="order_item_extra_info"/>
21+
<container name="submit_before" label="Submit Before"/>
22+
<container name="submit_after" label="Submit After"/>
2123
</block>
2224
<block class="Magento\Shipping\Block\Adminhtml\Order\Tracking" name="shipment_tracking" template="order/tracking.phtml"/>
2325
<block class="Magento\Shipping\Block\Adminhtml\Order\Packaging" name="shipment_packaging" template="Magento_Shipping::order/packaging/popup.phtml"/>

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,10 @@
104104
<span><?php echo __('Email Copy of Shipment') ?></span></label>
105105
</div>
106106
<?php endif; ?>
107-
107+
<?php echo $block->getChildHtml('submit_before') ?>
108108
<div class="order-history-comments-actions actions">
109109
<?php echo $block->getChildHtml('submit_button') ?>
110+
<?php echo $block->getChildHtml('submit_after') ?>
110111
</div>
111112
</div>
112113
</div>

app/code/Magento/Tax/view/adminhtml/templates/toolbar/rate/add.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
// @codingStandardsIgnoreFile
88

99
?>
10-
<?php echo $block->getChildhtml('grid') ?>
10+
<?php echo $block->getChildHtml('grid') ?>

0 commit comments

Comments
 (0)