feat(freight): shop freight templates, server-side checkout fees, company dictionary (add-freight-templates)
This commit is contained in:
@@ -180,6 +180,13 @@ onMounted(() => {
|
||||
</tr>
|
||||
</tbody>
|
||||
</VTable>
|
||||
<p class="text-muted mt-4 text-right text-[13px]">
|
||||
{{ t("checkout.shippingFee") }}:
|
||||
<span v-if="order.shipping_fee_minor > 0">
|
||||
<PriceText :amount-minor="order.shipping_fee_minor" :currency="order.currency" />
|
||||
</span>
|
||||
<span v-else class="text-success">{{ t("checkout.freeShipping") }}</span>
|
||||
</p>
|
||||
<p v-if="order.discount_minor > 0" class="text-primary mt-4 text-right text-[13px]">
|
||||
{{ t("checkout.couponDiscount") }}:
|
||||
<PriceText :amount-minor="order.discount_minor" :currency="order.currency" />
|
||||
|
||||
Reference in New Issue
Block a user