refactor: remove date from installments
This commit is contained in:
parent
0570dc2677
commit
da8dc33b15
3 changed files with 18 additions and 60 deletions
|
|
@ -201,7 +201,8 @@ export type Quotation = {
|
|||
payBillDate: string | Date;
|
||||
paySplitCount: number;
|
||||
paySplit: {
|
||||
date: string | Date;
|
||||
no: number;
|
||||
invoice: boolean;
|
||||
amount: number;
|
||||
}[];
|
||||
payCondition: 'Full' | 'Split' | 'BillFull' | 'BillSplit';
|
||||
|
|
@ -277,7 +278,7 @@ export type QuotationFull = {
|
|||
urgent: boolean;
|
||||
payBillDate: string | Date | null;
|
||||
paySplitCount: number | null;
|
||||
paySplit: { no: number; date: string | Date; amount: number }[];
|
||||
paySplit: { no: number; amount: number }[];
|
||||
payCondition: 'Full' | 'Split' | 'BillFull' | 'BillSplit';
|
||||
date: string | Date;
|
||||
dueDate: string | Date;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue