{{ selectedWarehouse.address }}
{{ $t("sales.invoice") }} : {{ order.invoice_number }} | {{ $t("common.date") }} : {{ formatDate(order.order_date) }} |
{{ $t("stock.customer") }} : {{ order.user.name }} | {{ $t("stock.sold_by") }} : {{ order.staff_member.name }} |
# | {{ $t("common.item") }} | {{ $t("common.qty") }} | {{ $t("product.mrp") }} | {{ $t("common.rate") }} | {{ $t("common.total") }} |
{{ index + 1 }} | {{ item.product.name }} | {{ item.quantity + "" + item.unit.short_name }} | {{ item.mrp ? formatAmountCurrency(item.mrp) : "-" }} | {{ formatAmountCurrency(item.unit_price) }} | {{ formatAmountCurrency(item.subtotal) }} |
{{ $t("stock.order_tax") }} | {{ formatAmountCurrency(order.tax_amount) }} | ||||
{{ $t("stock.discount") }} | {{ formatAmountCurrency(order.discount) }} | ||||
{{ $t("stock.shipping") }} | {{ formatAmountCurrency(order.shipping) }} |
{{ $t("common.items") }}: {{ order.total_items }} |
{{ $t("common.qty") }}: {{ order.total_quantity }} |
{{ $t("common.total") }}: {{ formatAmountCurrency(order.total) }} |
{{ $t("payments.paid_amount") }} | {{ $t("payments.due_amount") }} |
{{ formatAmountCurrency(order.paid_amount) }} | {{ formatAmountCurrency(order.due_amount) }} |
{{ $t("invoice.payment_mode") }}: {{ formatAmountCurrency( currentOrderPayments.amount ) }} ( {{ currentOrderPayments.payment.payment_mode .name }} ){{ $t("invoice.payment_mode") }}: - |
{{ $t("invoice.total_discount_on_mrp") }} : {{ formatAmountCurrency(order.saving_on_mrp) }}
{{ $t("invoice.total_discount") }} : {{ order.saving_percentage }}%
{{ $t("invoice.total_tax") }} : {{ formatAmountCurrency(order.total_tax_on_items) }}