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;
|
totalDiscount: number;
|
||||||
totalPrice: number;
|
totalPrice: number;
|
||||||
urgent: boolean;
|
urgent: boolean;
|
||||||
workerCount: number;
|
|
||||||
payBillDate: string | Date;
|
payBillDate: string | Date;
|
||||||
paySplitCount: number;
|
paySplitCount: number;
|
||||||
paySplit: {
|
paySplit: {
|
||||||
|
|
@ -189,6 +188,8 @@ export type Quotation = {
|
||||||
};
|
};
|
||||||
|
|
||||||
export type QuotationFull = {
|
export type QuotationFull = {
|
||||||
|
_count: { worker: number };
|
||||||
|
|
||||||
worker: {
|
worker: {
|
||||||
id: string;
|
id: string;
|
||||||
quotationId: string;
|
quotationId: string;
|
||||||
|
|
@ -217,7 +218,6 @@ export type QuotationFull = {
|
||||||
totalDiscount: number;
|
totalDiscount: number;
|
||||||
totalPrice: number;
|
totalPrice: number;
|
||||||
urgent: boolean;
|
urgent: boolean;
|
||||||
workerCount: number;
|
|
||||||
payBillDate: string | Date | null;
|
payBillDate: string | Date | null;
|
||||||
paySplitCount: number | null;
|
paySplitCount: number | null;
|
||||||
paySplit: { no: number; date: string | Date; amount: number }[];
|
paySplit: { no: number; date: string | Date; amount: number }[];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue