copyWith method
WebApiModulesReportsOrderValueSheetReportOrderValueSheetReportRequest
copyWith({
- String? orderId,
- String? quoteId,
- String? projectId,
- String? transferId,
- String? rentalValue,
- bool? weightInCase,
- bool? excludeZeroValueItems,
- String? filterBy,
- bool? groupByShippingCase,
- String? outContractId,
- String? manifestId,
- String? orderType,
- String? recType,
- String? userDepartmentId,
- String? userLocationId,
- String? userWarehouseId,
- String? customReportLayoutId,
- bool? isSummary,
- bool? includeSubHeadingsAndSubTotals,
- bool? includeIdColumns,
- String? locale,
- List<
FwStandardModelsCheckBoxListItem> ? excelfields, - String? reportName,
- bool? useEmailTemplate,
Implementation
WebApiModulesReportsOrderValueSheetReportOrderValueSheetReportRequest
copyWith({
String? orderId,
String? quoteId,
String? projectId,
String? transferId,
String? rentalValue,
bool? weightInCase,
bool? excludeZeroValueItems,
String? filterBy,
bool? groupByShippingCase,
String? outContractId,
String? manifestId,
String? orderType,
String? recType,
String? userDepartmentId,
String? userLocationId,
String? userWarehouseId,
String? customReportLayoutId,
bool? isSummary,
bool? includeSubHeadingsAndSubTotals,
bool? includeIdColumns,
String? locale,
List<FwStandardModelsCheckBoxListItem>? excelfields,
String? reportName,
bool? useEmailTemplate,
}) {
return WebApiModulesReportsOrderValueSheetReportOrderValueSheetReportRequest(
orderId: orderId ?? this.orderId,
quoteId: quoteId ?? this.quoteId,
projectId: projectId ?? this.projectId,
transferId: transferId ?? this.transferId,
rentalValue: rentalValue ?? this.rentalValue,
weightInCase: weightInCase ?? this.weightInCase,
excludeZeroValueItems:
excludeZeroValueItems ?? this.excludeZeroValueItems,
filterBy: filterBy ?? this.filterBy,
groupByShippingCase: groupByShippingCase ?? this.groupByShippingCase,
outContractId: outContractId ?? this.outContractId,
manifestId: manifestId ?? this.manifestId,
orderType: orderType ?? this.orderType,
recType: recType ?? this.recType,
userDepartmentId: userDepartmentId ?? this.userDepartmentId,
userLocationId: userLocationId ?? this.userLocationId,
userWarehouseId: userWarehouseId ?? this.userWarehouseId,
customReportLayoutId: customReportLayoutId ?? this.customReportLayoutId,
isSummary: isSummary ?? this.isSummary,
includeSubHeadingsAndSubTotals:
includeSubHeadingsAndSubTotals ?? this.includeSubHeadingsAndSubTotals,
includeIdColumns: includeIdColumns ?? this.includeIdColumns,
locale: locale ?? this.locale,
excelfields: excelfields ?? this.excelfields,
reportName: reportName ?? this.reportName,
useEmailTemplate: useEmailTemplate ?? this.useEmailTemplate,
);
}