refactor: remove document receive point
This commit is contained in:
parent
f768e11a32
commit
5dae3d6fce
2 changed files with 4 additions and 7 deletions
|
|
@ -1240,11 +1240,10 @@ model Quotation {
|
|||
|
||||
code String
|
||||
|
||||
workName String
|
||||
contactName String
|
||||
contactTel String
|
||||
documentReceivePoint String
|
||||
dueDate DateTime @db.Date
|
||||
workName String
|
||||
contactName String
|
||||
contactTel String
|
||||
dueDate DateTime @db.Date
|
||||
|
||||
date DateTime @default(now())
|
||||
payCondition PayCondition
|
||||
|
|
|
|||
|
|
@ -36,7 +36,6 @@ type QuotationCreate = {
|
|||
workName: string;
|
||||
contactName: string;
|
||||
contactTel: string;
|
||||
documentReceivePoint: string;
|
||||
dueDate: Date;
|
||||
|
||||
payCondition: PayCondition;
|
||||
|
|
@ -94,7 +93,6 @@ type QuotationUpdate = {
|
|||
workName?: string;
|
||||
contactName?: string;
|
||||
contactTel?: string;
|
||||
documentReceivePoint?: string;
|
||||
dueDate?: Date;
|
||||
|
||||
payCondition?: PayCondition;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue