feat: paycondition

This commit is contained in:
Methapon Metanipat 2024-10-29 10:19:47 +07:00
parent da8dc33b15
commit 810b8b96ba
7 changed files with 57 additions and 30 deletions

View file

@ -265,8 +265,7 @@ async function fetchQuotationList() {
{
fullAmountCash: 'Full',
installmentsCash: 'Split',
fullAmountBill: 'BillFull',
installmentsBill: 'BillSplit',
installmentsCustomCash: 'SplitCustom',
} as const
)[pageState.currentTab]
: undefined,
@ -337,11 +336,9 @@ async function storeDataLocal(id: string) {
? quotationStats.full
: pageState.currentTab === 'installmentsCash'
? quotationStats.split
: pageState.currentTab === 'fullAmountBill'
? quotationStats.billFull
: pageState.currentTab === 'installmentsBill'
? quotationStats.billSplit
: 0
: pageState.currentTab === 'installmentsCustomCash'
? quotationStats.splitCustom
: 0
}}
</q-badge>
<q-btn
@ -383,22 +380,13 @@ async function storeDataLocal(id: string) {
pageState.currentTab !== 'installmentsCash',
},
{
icon: 'mdi-receipt-text-outline',
count: quotationStats.billFull,
label: 'quotation.type.fullAmountBill',
icon: 'mdi-hand-coin-outline',
count: quotationStats.splitCustom,
label: 'quotation.type.installmentsCustomCash',
color: 'lime',
hidden:
pageState.currentTab !== 'all' &&
pageState.currentTab !== 'fullAmountBill',
},
{
icon: 'mdi-receipt-text-send-outline',
count: quotationStats.billSplit,
label: 'quotation.type.installmentsBill',
color: 'light-purple',
hidden:
pageState.currentTab !== 'all' &&
pageState.currentTab !== 'installmentsBill',
pageState.currentTab !== 'installmentsCustomCash',
},
]"
:dark="$q.dark.isActive"

View file

@ -44,10 +44,14 @@ const { data: config } = storeToRefs(configStore);
const payBillDate = defineModel<Date | null | undefined>('payBillDate', {
required: false,
});
const payType = defineModel<'Full' | 'Split' | 'BillFull' | 'BillSplit'>(
'payType',
{ required: true },
);
const payType = defineModel<
| 'Full'
| 'Split'
| 'SplitCustom'
| 'BillFull'
| 'BillSplit'
| 'BillSplitCustom'
>('payType', { required: true });
const paySplitCount = defineModel<number | null>('paySplitCount', {
default: 1,
});

View file

@ -23,8 +23,7 @@ export const pageTabs = [
'all',
'fullAmountCash',
'installmentsCash',
'fullAmountBill',
'installmentsBill',
'installmentsCustomCash',
];
export const fieldSelectedOption = [{ label: 'general.type', value: 'value' }];