fix: accept null
This commit is contained in:
parent
42ff57e23e
commit
9fbc8ace15
1 changed files with 8 additions and 8 deletions
|
|
@ -303,14 +303,14 @@ export class RequestListController extends Controller {
|
||||||
payload: {
|
payload: {
|
||||||
workStatus?: RequestWorkStatus;
|
workStatus?: RequestWorkStatus;
|
||||||
attributes?: Record<string, any>;
|
attributes?: Record<string, any>;
|
||||||
customerDuty?: boolean;
|
customerDuty?: boolean | null;
|
||||||
customerDutyCost?: number;
|
customerDutyCost?: number | null;
|
||||||
companyDuty?: boolean;
|
companyDuty?: boolean | null;
|
||||||
companyDutyCost?: number;
|
companyDutyCost?: number | null;
|
||||||
individualDuty?: boolean;
|
individualDuty?: boolean | null;
|
||||||
individualDutyCost?: number;
|
individualDutyCost?: number | null;
|
||||||
responsibleUserLocal?: boolean;
|
responsibleUserLocal?: boolean | null;
|
||||||
responsibleUserId?: string;
|
responsibleUserId?: string | null;
|
||||||
},
|
},
|
||||||
@Query() successAll?: boolean,
|
@Query() successAll?: boolean,
|
||||||
) {
|
) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue