diff --git a/src/stores/quotations/types.ts b/src/stores/quotations/types.ts index aa4bc4d1..659c7aac 100644 --- a/src/stores/quotations/types.ts +++ b/src/stores/quotations/types.ts @@ -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'