diff --git a/src/components/05_quotation/TableQuotation.vue b/src/components/05_quotation/TableQuotation.vue
index 4cf6602d..012a51f9 100644
--- a/src/components/05_quotation/TableQuotation.vue
+++ b/src/components/05_quotation/TableQuotation.vue
@@ -1,32 +1,149 @@
-
+
-
+
- {{ col.label }}
+ {{ $t(col.label) }}
+
+
+
+
+ {{ props.rowIndex + 1 }}
+
+
+
+
+
{{ props.row.workName }}
+
{{ props.row.code }}
+
+
+
+
+ {{ dateFormat(props.row.createdAt) }}
+
+
+
+ {{ dateFormat(props.row.dueDate) }}
+
+
+
+ {{ props.row.contactName }}
+
+
+
+ {{ props.row.createdBy.firstName }}
+
+
+
+ {{ props.row.finalPrice }}
+
+
+
+ {{ $t(payCondition(props.row.payCondition)) }}
+
+
+
+
+
+
+
+
+ Preview
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/pages/05_quotation/MainPage.vue b/src/pages/05_quotation/MainPage.vue
index 4542fe5b..f5d0d539 100644
--- a/src/pages/05_quotation/MainPage.vue
+++ b/src/pages/05_quotation/MainPage.vue
@@ -1,7 +1,7 @@