fix: installment force push
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 8s

This commit is contained in:
Thanaphon Frappet 2025-03-06 11:14:11 +07:00
parent e6f2a8df4e
commit 87de5b48ac
6 changed files with 52 additions and 17 deletions

View file

@ -196,7 +196,7 @@ const selectedWorkerItem = computed(() => {
];
});
const workerList = ref<Employee[]>([]);
const firstCodePayment = ref('');
const selectedProductGroup = ref('');
const selectedInstallmentNo = ref<number[]>([]);
const installmentAmount = ref<number>(0);
@ -1093,12 +1093,14 @@ watch(
// }
function storeDataLocal() {
quotationFormData.value.productServiceList = productServiceList.value;
quotationFormData.value.productServiceList = productService.value;
localStorage.setItem(
'quotation-preview',
JSON.stringify({
data: {
codeInvoice: code.value,
codePayment: firstCodePayment.value,
...quotationFormData.value,
productServiceList: productService.value,
},
@ -1939,6 +1941,7 @@ function covertToNode() {
view !== View.Complete
"
:data="quotationFormState.source"
v-model:first-code-payment="firstCodePayment"
@fetch-status="
() => {
fetchQuotation();
@ -2105,6 +2108,8 @@ function covertToNode() {
installmentAmount = props.row.amount;
view = View.Invoice;
console.log(code);
}
}
"