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 };
|
_count: { worker: number };
|
||||||
discount?: number;
|
discount?: number;
|
||||||
payBillDate?: Date | null;
|
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
|
paySplitCount?: number | null; // int
|
||||||
payCondition:
|
payCondition:
|
||||||
| 'Full'
|
| 'Full'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue