diff --git a/src/i18n/eng/index.ts b/src/i18n/eng/index.ts index 8ec52f2d..a2503eb5 100644 --- a/src/i18n/eng/index.ts +++ b/src/i18n/eng/index.ts @@ -608,7 +608,8 @@ export default { title: 'Quotation', customerName: 'Customer Name', actor: 'Actor', - totalPrice: 'Total (Baht)', + totalPrice: 'Total', + totalPriceBaht: 'Total (Baht)', receipt: 'Receipt/Tax Invoice', branch: 'Branch that issues the quotation', customer: 'Customer', @@ -638,6 +639,7 @@ export default { foreignRefNo: 'Alien Reference Number', documentExpireDate: 'Document Expiration Date', + allProductPrice: 'All product price', pricePerUnit: 'Unit price', sumPrice: 'Total price', tax: 'Tax', diff --git a/src/i18n/tha/index.ts b/src/i18n/tha/index.ts index 05b14179..18e7fde0 100644 --- a/src/i18n/tha/index.ts +++ b/src/i18n/tha/index.ts @@ -605,7 +605,8 @@ export default { title: 'ใบเสนอราคา', customerName: 'ชื่อลูกค้า', actor: 'ผู้ที่ทำรายงาน', - totalPrice: 'ยอดรวมสุทธิ(บาท)', + totalPrice: 'ยอดรวมสุทธิ', + totalPriceBaht: 'ยอดรวมสุทธิ(บาท)', receipt: 'ใบเสร็จ/กำกับภาษี', branch: 'สาขาที่ออกใบเสนอราคา', customer: 'ลูกค้า', @@ -636,6 +637,7 @@ export default { foreignRefNo: 'เลขที่อ้างอิงคนต่างด้าว', documentExpireDate: 'วันที่เอกสารหมดอายุ', + allProductPrice: 'ราคาสินค้าทั้งหมด', pricePerUnit: 'ราคาต่อหน่วย', sumPrice: 'ราคารวม', tax: 'ภาษี', diff --git a/src/pages/05_quotation/QuotationForm.vue b/src/pages/05_quotation/QuotationForm.vue index 07abc75a..bcbcb6aa 100644 --- a/src/pages/05_quotation/QuotationForm.vue +++ b/src/pages/05_quotation/QuotationForm.vue @@ -162,6 +162,7 @@ function convertToTable(nodes: Node[]) { if (v.checked) return v; return []; }; + pageState.productServiceModal = false; productServiceList.value = nodes.flatMap(_recursive).map((v) => v.value); }