fix: null not get accepted as valid
This commit is contained in:
parent
e33e0bc9f7
commit
235d2020d7
1 changed files with 2 additions and 2 deletions
|
|
@ -40,7 +40,7 @@ type QuotationCreate = {
|
||||||
payCondition: PayCondition;
|
payCondition: PayCondition;
|
||||||
|
|
||||||
paySplitCount?: number;
|
paySplitCount?: number;
|
||||||
paySplit?: { name?: string; amount: number }[];
|
paySplit?: { name?: string | null; amount: number }[];
|
||||||
|
|
||||||
payBillDate?: Date;
|
payBillDate?: Date;
|
||||||
|
|
||||||
|
|
@ -98,7 +98,7 @@ type QuotationUpdate = {
|
||||||
payCondition?: PayCondition;
|
payCondition?: PayCondition;
|
||||||
|
|
||||||
paySplitCount?: number;
|
paySplitCount?: number;
|
||||||
paySplit?: { name?: string; amount: number }[];
|
paySplit?: { name?: string | null; amount: number }[];
|
||||||
|
|
||||||
payBillDate?: Date;
|
payBillDate?: Date;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue