جمع کل فاکتور:
{{ totalInvoice.toLocaleString('fa-IR') }}
تخفیف کلی:
{{ (showTotalPercentDiscount ? Math.round((totalInvoice * totalDiscountPercent) / 100) : totalDiscount).toLocaleString('fa-IR') }}
هزینه حمل:
{{ shippingCost.toLocaleString('fa-IR') }}
جمع کل با تخفیف و حمل:
{{ (totalInvoice - (showTotalPercentDiscount ? Math.round((totalInvoice * totalDiscountPercent) / 100) : totalDiscount) + shippingCost).toLocaleString('fa-IR') }}
مبلغ مالیات:
{{ taxAmount.toLocaleString('fa-IR') }}
جمع کل نهایی:
{{ finalTotal.toLocaleString('fa-IR') }}