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: '', contactTel: '',
contactName: '', contactName: '',
workName: '', workName: '',
actorName: '',
_count: { worker: 0 }, _count: { worker: 0 },
status: 'CREATED', status: 'CREATED',
}; };

View file

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