fix: make remark accept null
This commit is contained in:
parent
7847a68df2
commit
fd3366262f
1 changed files with 2 additions and 2 deletions
|
|
@ -28,7 +28,7 @@ import { precisionRound } from "../utils/arithmetic";
|
|||
type QuotationCreate = {
|
||||
registeredBranchId: string;
|
||||
status?: Status;
|
||||
remark?: string;
|
||||
remark?: string | null;
|
||||
|
||||
workName: string;
|
||||
contactName: string;
|
||||
|
|
@ -80,7 +80,7 @@ type QuotationCreate = {
|
|||
type QuotationUpdate = {
|
||||
registeredBranchId?: string;
|
||||
status?: "ACTIVE" | "INACTIVE";
|
||||
remark?: string;
|
||||
remark?: string | null;
|
||||
|
||||
workName?: string;
|
||||
contactName?: string;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue