diff --git a/src/components/TableComponents.vue b/src/components/TableComponents.vue
index a7d7e13b..197d4002 100644
--- a/src/components/TableComponents.vue
+++ b/src/components/TableComponents.vue
@@ -17,7 +17,7 @@ const props = withDefaults(
hidePagination?: boolean;
inTable?: boolean;
hideView?: boolean;
- btnSelectedAll?: boolean;
+ btnSelected?: boolean;
imgColumn?: string;
customColumn?: string[];
@@ -59,9 +59,6 @@ defineEmits<{
:style="`background-color: ${inTable ? '#F0FFF1' : 'hsla(var(--info-bg) / 0.07'} `"
:props="props"
>
-
-
-
{{ $t('fullname') }}
diff --git a/src/pages/05_quotation/QuotationForm.vue b/src/pages/05_quotation/QuotationForm.vue
index 6b0f6e07..3d6108ae 100644
--- a/src/pages/05_quotation/QuotationForm.vue
+++ b/src/pages/05_quotation/QuotationForm.vue
@@ -3,7 +3,11 @@ import { useI18n } from 'vue-i18n';
import { storeToRefs } from 'pinia';
import { useQuasar } from 'quasar';
import { computed, nextTick, onMounted, reactive, ref, watch } from 'vue';
-import { dialogCheckData, dialogWarningClose } from 'stores/utils';
+import {
+ dialogCheckData,
+ dialogWarningClose,
+ formatNumberDecimal,
+} from 'stores/utils';
import { ProductTree, quotationProductTree } from './utils';
// NOTE: Import stores
@@ -1024,14 +1028,64 @@ const view = ref(View.Quotation);
-
+ >
+
+
+
+
+
+
+ {{ $t(col.label) }}
+
+
+
+
+
+
+
+
+
+
+ {{ col.value }}
+
+
+
+ {{ formatNumberDecimal(col.value, 2) }}
+
+
+
+
+
+
+
+
+