copyWith method
WebApiModulesHomeControlsContractItemDetailContractItemDetail
copyWith({
- String? contractId,
- String? contractNumber,
- String? contractType,
- String? orderId,
- String? orderItemId,
- String? orderNumber,
- String? orderDescription,
- String? iCode,
- String? iCodeDisplay,
- String? iCodeColor,
- String? description,
- String? descriptionColor,
- double? quantity,
- String? barCode,
- String? itemId,
- String? manufacturerPartNumber,
- String? trackedBy,
- String? categoryId,
- String? vendorId,
- String? vendor,
- String? vendorColor,
- String? inventoryId,
- String? warehouseId,
- String? warehouseCode,
- String? warehouse,
- String? primaryOrderItemId,
- String? itemClass,
- String? itemOrder,
- String? orderBy,
- String? notes,
- String? orderType,
- String? recType,
- String? recTypeDisplay,
- String? optionColor,
- String? usersId,
- String? userName,
- String? transactionDateTime,
- String? parentId,
- double? accessoryRatio,
- String? nestedOrderItemId,
- String? containerItemId,
- String? containerBarCode,
- bool? isConsignment,
- String? consignorId,
- String? consignor,
- String? consignorAgreementId,
- String? consignorAgreementNumber,
- bool? isVoid,
- int? nestingLevel,
- String? vendorConsignorId,
- String? vendorConsignor,
- String? exception,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesHomeControlsContractItemDetailContractItemDetail copyWith(
{String? contractId,
String? contractNumber,
String? contractType,
String? orderId,
String? orderItemId,
String? orderNumber,
String? orderDescription,
String? iCode,
String? iCodeDisplay,
String? iCodeColor,
String? description,
String? descriptionColor,
double? quantity,
String? barCode,
String? itemId,
String? manufacturerPartNumber,
String? trackedBy,
String? categoryId,
String? vendorId,
String? vendor,
String? vendorColor,
String? inventoryId,
String? warehouseId,
String? warehouseCode,
String? warehouse,
String? primaryOrderItemId,
String? itemClass,
String? itemOrder,
String? orderBy,
String? notes,
String? orderType,
String? recType,
String? recTypeDisplay,
String? optionColor,
String? usersId,
String? userName,
String? transactionDateTime,
String? parentId,
double? accessoryRatio,
String? nestedOrderItemId,
String? containerItemId,
String? containerBarCode,
bool? isConsignment,
String? consignorId,
String? consignor,
String? consignorAgreementId,
String? consignorAgreementNumber,
bool? isVoid,
int? nestingLevel,
String? vendorConsignorId,
String? vendorConsignor,
String? exception,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesHomeControlsContractItemDetailContractItemDetail(
contractId: contractId ?? this.contractId,
contractNumber: contractNumber ?? this.contractNumber,
contractType: contractType ?? this.contractType,
orderId: orderId ?? this.orderId,
orderItemId: orderItemId ?? this.orderItemId,
orderNumber: orderNumber ?? this.orderNumber,
orderDescription: orderDescription ?? this.orderDescription,
iCode: iCode ?? this.iCode,
iCodeDisplay: iCodeDisplay ?? this.iCodeDisplay,
iCodeColor: iCodeColor ?? this.iCodeColor,
description: description ?? this.description,
descriptionColor: descriptionColor ?? this.descriptionColor,
quantity: quantity ?? this.quantity,
barCode: barCode ?? this.barCode,
itemId: itemId ?? this.itemId,
manufacturerPartNumber:
manufacturerPartNumber ?? this.manufacturerPartNumber,
trackedBy: trackedBy ?? this.trackedBy,
categoryId: categoryId ?? this.categoryId,
vendorId: vendorId ?? this.vendorId,
vendor: vendor ?? this.vendor,
vendorColor: vendorColor ?? this.vendorColor,
inventoryId: inventoryId ?? this.inventoryId,
warehouseId: warehouseId ?? this.warehouseId,
warehouseCode: warehouseCode ?? this.warehouseCode,
warehouse: warehouse ?? this.warehouse,
primaryOrderItemId: primaryOrderItemId ?? this.primaryOrderItemId,
itemClass: itemClass ?? this.itemClass,
itemOrder: itemOrder ?? this.itemOrder,
orderBy: orderBy ?? this.orderBy,
notes: notes ?? this.notes,
orderType: orderType ?? this.orderType,
recType: recType ?? this.recType,
recTypeDisplay: recTypeDisplay ?? this.recTypeDisplay,
optionColor: optionColor ?? this.optionColor,
usersId: usersId ?? this.usersId,
userName: userName ?? this.userName,
transactionDateTime: transactionDateTime ?? this.transactionDateTime,
parentId: parentId ?? this.parentId,
accessoryRatio: accessoryRatio ?? this.accessoryRatio,
nestedOrderItemId: nestedOrderItemId ?? this.nestedOrderItemId,
containerItemId: containerItemId ?? this.containerItemId,
containerBarCode: containerBarCode ?? this.containerBarCode,
isConsignment: isConsignment ?? this.isConsignment,
consignorId: consignorId ?? this.consignorId,
consignor: consignor ?? this.consignor,
consignorAgreementId: consignorAgreementId ?? this.consignorAgreementId,
consignorAgreementNumber:
consignorAgreementNumber ?? this.consignorAgreementNumber,
isVoid: isVoid ?? this.isVoid,
nestingLevel: nestingLevel ?? this.nestingLevel,
vendorConsignorId: vendorConsignorId ?? this.vendorConsignorId,
vendorConsignor: vendorConsignor ?? this.vendorConsignor,
exception: exception ?? this.exception,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
translation: translation ?? this.translation);
}