Skip to content

Commit

Permalink
Add missing shipping total
Browse files Browse the repository at this point in the history
  • Loading branch information
Zales0123 committed Jun 26, 2024
1 parent 11a2e33 commit 343b1d6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Resources/views/admin/order/update/_order_items.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,9 @@
<h4 class="ui dividing header">{{ 'setono_sylius_order_edit.ui.order_discounts'|trans }}</h4>
{{ form_widget(form.discounts) }}
</div>
<div class="ui segment big">
<div class="ui segment">
<h4 class="ui dividing header">{{ 'sylius.ui.order_summary'|trans }}</h4>
<br/>{{ 'sylius.ui.items_total'|trans }}: {{ money.format(order.itemsTotal, order.currencyCode) }}
<br/><br/>{{ 'sylius.ui.order_total'|trans }}: {{ money.format(order.total, order.currencyCode) }}
<br/>{{ 'sylius.ui.shipping_total'|trans }}: {{ money.format(order.shippingTotal, order.currencyCode) }}
<br/><br/><span class="ui large header">{{ 'sylius.ui.order_total'|trans }}: {{ money.format(order.total, order.currencyCode) }}</span>
</div>

0 comments on commit 343b1d6

Please sign in to comment.