diff --git a/src/components/05_quotation/ProductItem.vue b/src/components/05_quotation/ProductItem.vue
index 3ca36321..aa48269a 100644
--- a/src/components/05_quotation/ProductItem.vue
+++ b/src/components/05_quotation/ProductItem.vue
@@ -13,6 +13,7 @@ import { useConfigStore } from 'stores/config';
const props = defineProps<{
readonly?: boolean;
agentPrice: boolean;
+ installmentInput?: boolean;
employeeRows?: {
foreignRefNo: string;
employeeName: string;
@@ -228,7 +229,20 @@ watch(
flat
bordered
hide-pagination
- :columns="columns"
+ :columns="
+ installmentInput
+ ? [
+ ...columns.slice(0, 1),
+ {
+ name: 'periodNo',
+ align: 'left',
+ label: 'quotation.periodNo',
+ field: (v) => v.product.code,
+ },
+ ...columns.slice(1),
+ ]
+ : columns
+ "
:rows="item.product"
class="full-width"
:no-data-label="$t('general.noDataTable')"
@@ -248,6 +262,19 @@ watch(