feat: custom installments (#4)
* feat: add database schema * feat: add custom installments payload * chore: migrations
This commit is contained in:
parent
56de83a181
commit
9a81f1c9ef
3 changed files with 5 additions and 2 deletions
|
|
@ -40,7 +40,7 @@ type QuotationCreate = {
|
|||
payCondition: PayCondition;
|
||||
|
||||
paySplitCount?: number;
|
||||
paySplit?: { amount: number }[];
|
||||
paySplit?: { name?: string; amount: number }[];
|
||||
|
||||
payBillDate?: Date;
|
||||
|
||||
|
|
@ -98,7 +98,7 @@ type QuotationUpdate = {
|
|||
payCondition?: PayCondition;
|
||||
|
||||
paySplitCount?: number;
|
||||
paySplit?: { amount: number }[];
|
||||
paySplit?: { name?: string; amount: number }[];
|
||||
|
||||
payBillDate?: Date;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue