chore: update type
This commit is contained in:
parent
2ce41bf9af
commit
76e7617d95
1 changed files with 2 additions and 2 deletions
|
|
@ -160,7 +160,6 @@ export type Quotation = {
|
|||
totalDiscount: number;
|
||||
totalPrice: number;
|
||||
urgent: boolean;
|
||||
workerCount: number;
|
||||
payBillDate: string | Date;
|
||||
paySplitCount: number;
|
||||
paySplit: {
|
||||
|
|
@ -189,6 +188,8 @@ export type Quotation = {
|
|||
};
|
||||
|
||||
export type QuotationFull = {
|
||||
_count: { worker: number };
|
||||
|
||||
worker: {
|
||||
id: string;
|
||||
quotationId: string;
|
||||
|
|
@ -217,7 +218,6 @@ export type QuotationFull = {
|
|||
totalDiscount: number;
|
||||
totalPrice: number;
|
||||
urgent: boolean;
|
||||
workerCount: number;
|
||||
payBillDate: string | Date | null;
|
||||
paySplitCount: number | null;
|
||||
paySplit: { no: number; date: string | Date; amount: number }[];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue