From d91189e19391d205a9b26842eb11d8a4084d4236 Mon Sep 17 00:00:00 2001 From: Methapon Metanipat Date: Fri, 18 Oct 2024 13:54:55 +0700 Subject: [PATCH] fix: display name in table --- src/pages/05_quotation/peview/ViewForm.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/05_quotation/peview/ViewForm.vue b/src/pages/05_quotation/peview/ViewForm.vue index eb833ae0..3f448cfa 100644 --- a/src/pages/05_quotation/peview/ViewForm.vue +++ b/src/pages/05_quotation/peview/ViewForm.vue @@ -135,7 +135,7 @@ onMounted(async () => { data.value?.productServiceList.map((v) => ({ id: v.product.id, code: v.product.code, - detail: v.product.detail, + detail: v.product.name, amount: v.amount || 0, priceUnit: v.pricePerUnit || 0, discount: v.discount || 0,