+
+ {{ $t('form.pos.order.order') }}:
+
+ {{ currentOrderReturn.documentNo }}
+
+
+
+
+ {{ $t('form.pos.order.date') }}:
+
+ {{ formatDate(currentOrderReturn.dateOrdered) }}
+
+
+
+
+ {{ $t('form.pos.order.type') }}:
+
+ {{ currentOrderReturn.documentType.name }}
+
+
+
+
+ {{ $t('form.pos.order.itemQuantity') }}:
+
+ {{ formatQuantity({ value: itemQuantity }) }}
+
+
+
+
+ {{ $t('form.pos.order.numberLines') }}:
+
+ {{ listProduct.length }}
+
+
+
+
+ {{ $t('form.pos.order.seller') }}:
+
+ {{ currentOrderReturn.salesRepresentative.name }}
+
+
+
+
+ {{ $t('form.pos.order.subTotal') }}:
+
+ {{ formatPrice(currentOrderReturn.totalLines, currentOrderReturn.priceList.currency.iso_code) }}
+
+
+
+
+ {{ $t('form.pos.tableProduct.displayDiscountAmount') }}:
+
+ {{ formatPrice(currentOrderReturn.discountAmount, currentOrderReturn.priceList.currency.iso_code) }}
+
+
+
+
+ {{ $t('form.pos.order.tax') }}:
+
+ {{ formatPrice(currentOrderReturn.taxAmount, currentOrderReturn.priceList.currency.iso_code) }}
+
+
+
+
+ {{ $t('form.pos.order.total') }}:
+
+ {{ formatPrice(currentOrderReturn.grandTotal, currentOrderReturn.priceList.currency.iso_code) }}
+
+
+