refactor: type paySplit add invoice
This commit is contained in:
parent
2ffb49474d
commit
c890d97480
1 changed files with 2 additions and 2 deletions
|
|
@ -286,7 +286,7 @@ export type QuotationFull = {
|
|||
urgent: boolean;
|
||||
payBillDate: string | Date | null;
|
||||
paySplitCount: number | null;
|
||||
paySplit: { no: number; amount: number }[];
|
||||
paySplit: { no: number; amount: number; invoice: boolean }[];
|
||||
payCondition:
|
||||
| 'Full'
|
||||
| 'Split'
|
||||
|
|
@ -346,7 +346,7 @@ export type QuotationPayload = {
|
|||
_count: { worker: number };
|
||||
discount?: number;
|
||||
payBillDate?: Date | null;
|
||||
paySplit: { no: number; amount: number }[];
|
||||
paySplit: { no: number; amount: number; invoice: boolean }[];
|
||||
paySplitCount?: number | null; // int
|
||||
payCondition:
|
||||
| 'Full'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue