refactor: add type invoice id
This commit is contained in:
parent
60c2745627
commit
e7cb52d482
1 changed files with 7 additions and 1 deletions
|
|
@ -357,7 +357,13 @@ export type QuotationPayload = {
|
|||
_count: { worker: number };
|
||||
discount?: number;
|
||||
payBillDate?: Date | null;
|
||||
paySplit: { no: number; amount: number; name?: string; invoice?: boolean }[];
|
||||
paySplit: {
|
||||
no: number;
|
||||
amount: number;
|
||||
name?: string;
|
||||
invoice?: boolean;
|
||||
invoiceId?: string;
|
||||
}[];
|
||||
paySplitCount?: number | null; // int
|
||||
payCondition:
|
||||
| 'Full'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue