copyWith method
WebApiModulesWarehouseCheckInReconcileCheckInReconcile
copyWith({
- String? contractId,
- String? contractDate,
- String? contractNumber,
- String? contractType,
- String? contractTime,
- String? locationId,
- String? locationCode,
- String? location,
- String? warehouseId,
- String? warehouseCode,
- String? warehouse,
- String? dealId,
- String? deal,
- String? departmentId,
- String? department,
- String? quikInOneOrderPerContract,
- bool? hasAssigned,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesWarehouseCheckInReconcileCheckInReconcile copyWith(
{String? contractId,
String? contractDate,
String? contractNumber,
String? contractType,
String? contractTime,
String? locationId,
String? locationCode,
String? location,
String? warehouseId,
String? warehouseCode,
String? warehouse,
String? dealId,
String? deal,
String? departmentId,
String? department,
String? quikInOneOrderPerContract,
bool? hasAssigned,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesWarehouseCheckInReconcileCheckInReconcile(
contractId: contractId ?? this.contractId,
contractDate: contractDate ?? this.contractDate,
contractNumber: contractNumber ?? this.contractNumber,
contractType: contractType ?? this.contractType,
contractTime: contractTime ?? this.contractTime,
locationId: locationId ?? this.locationId,
locationCode: locationCode ?? this.locationCode,
location: location ?? this.location,
warehouseId: warehouseId ?? this.warehouseId,
warehouseCode: warehouseCode ?? this.warehouseCode,
warehouse: warehouse ?? this.warehouse,
dealId: dealId ?? this.dealId,
deal: deal ?? this.deal,
departmentId: departmentId ?? this.departmentId,
department: department ?? this.department,
quikInOneOrderPerContract:
quikInOneOrderPerContract ?? this.quikInOneOrderPerContract,
hasAssigned: hasAssigned ?? this.hasAssigned,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
translation: translation ?? this.translation);
}