diff --git a/src/pages/05_quotation/QuotationForm.vue b/src/pages/05_quotation/QuotationForm.vue index 1da68cb8..92a230b7 100644 --- a/src/pages/05_quotation/QuotationForm.vue +++ b/src/pages/05_quotation/QuotationForm.vue @@ -665,6 +665,35 @@ function storeDataLocal() { window.open('/quotation/document-view', '_blank'); } + +const statusQuotationForm = ref< + { title: string; status: 'done' | 'doing' | 'waiting' }[] +>([ + { + title: 'ใบเสนอราคา', + status: 'done', + }, + { + title: 'ลูกค้าตอบรับ', + status: 'done', + }, + { + title: 'ใบแจ้งหนี้', + status: 'done', + }, + { + title: 'ชำระเงิน', + status: 'doing', + }, + { + title: 'ใบเสร็จรับเงิน', + status: 'waiting', + }, + { + title: 'เสร็จสิ้น', + status: 'waiting', + }, +]);
- - {{ - productGroup.find((g) => g.id === selectedProductGroup) - ?.name || '-' - }} -