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 = {
|
type QuotationCreate = {
|
||||||
registeredBranchId: string;
|
registeredBranchId: string;
|
||||||
status?: Status;
|
status?: Status;
|
||||||
remark?: string;
|
remark?: string | null;
|
||||||
|
|
||||||
workName: string;
|
workName: string;
|
||||||
contactName: string;
|
contactName: string;
|
||||||
|
|
@ -80,7 +80,7 @@ type QuotationCreate = {
|
||||||
type QuotationUpdate = {
|
type QuotationUpdate = {
|
||||||
registeredBranchId?: string;
|
registeredBranchId?: string;
|
||||||
status?: "ACTIVE" | "INACTIVE";
|
status?: "ACTIVE" | "INACTIVE";
|
||||||
remark?: string;
|
remark?: string | null;
|
||||||
|
|
||||||
workName?: string;
|
workName?: string;
|
||||||
contactName?: string;
|
contactName?: string;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue