fix: error backend changed

This commit is contained in:
Methapon Metanipat 2024-10-15 17:21:06 +07:00
parent 39bbc609a7
commit 2485de651a
2 changed files with 0 additions and 4 deletions

View file

@ -29,7 +29,6 @@ const DEFAULT_DATA: QuotationPayload = {
contactTel: '',
contactName: '',
workName: '',
actorName: '',
_count: { worker: 0 },
status: 'CREATED',
};

View file

@ -195,7 +195,6 @@ export type Quotation = {
contactTel: string;
contactName: string;
workName: string;
actorName: string;
code: string;
statusOrder: number;
status: Status;
@ -257,7 +256,6 @@ export type QuotationFull = {
contactTel: string;
contactName: string;
workName: string;
actorName: string;
code: string;
statusOrder: number;
status: Status;
@ -300,7 +298,6 @@ export type QuotationPayload = {
contactTel: string;
contactName: string;
workName: string;
actorName: string;
status?: Status;
};