copyWith method
WebApiModulesReportsOrderReportsOrderConflictReportOrderConflictReportRequest
copyWith({
- DateTime? fromDate,
- DateTime? toDate,
- String? availableFor,
- String? conflictType,
- String? warehouseId,
- String? departmentId,
- String? dealId,
- String? orderId,
- String? inventoryTypeId,
- String? categoryId,
- String? subCategoryId,
- String? inventoryId,
- List<
FwStandardModelsSelectedCheckBoxListItem> ? classifications, - List<
FwStandardModelsSelectedCheckBoxListItem> ? ranks, - List<
FwStandardModelsSelectedCheckBoxListItem> ? trackedBys, - String? userDepartmentId,
- String? userLocationId,
- String? userWarehouseId,
- String? customReportLayoutId,
- bool? isSummary,
- bool? includeSubHeadingsAndSubTotals,
- bool? includeIdColumns,
- String? locale,
- List<
FwStandardModelsCheckBoxListItem> ? excelfields, - String? reportName,
- bool? useEmailTemplate,
Implementation
WebApiModulesReportsOrderReportsOrderConflictReportOrderConflictReportRequest
copyWith(
{DateTime? fromDate,
DateTime? toDate,
String? availableFor,
String? conflictType,
String? warehouseId,
String? departmentId,
String? dealId,
String? orderId,
String? inventoryTypeId,
String? categoryId,
String? subCategoryId,
String? inventoryId,
List<FwStandardModelsSelectedCheckBoxListItem>? classifications,
List<FwStandardModelsSelectedCheckBoxListItem>? ranks,
List<FwStandardModelsSelectedCheckBoxListItem>? trackedBys,
String? userDepartmentId,
String? userLocationId,
String? userWarehouseId,
String? customReportLayoutId,
bool? isSummary,
bool? includeSubHeadingsAndSubTotals,
bool? includeIdColumns,
String? locale,
List<FwStandardModelsCheckBoxListItem>? excelfields,
String? reportName,
bool? useEmailTemplate}) {
return WebApiModulesReportsOrderReportsOrderConflictReportOrderConflictReportRequest(
fromDate: fromDate ?? this.fromDate,
toDate: toDate ?? this.toDate,
availableFor: availableFor ?? this.availableFor,
conflictType: conflictType ?? this.conflictType,
warehouseId: warehouseId ?? this.warehouseId,
departmentId: departmentId ?? this.departmentId,
dealId: dealId ?? this.dealId,
orderId: orderId ?? this.orderId,
inventoryTypeId: inventoryTypeId ?? this.inventoryTypeId,
categoryId: categoryId ?? this.categoryId,
subCategoryId: subCategoryId ?? this.subCategoryId,
inventoryId: inventoryId ?? this.inventoryId,
classifications: classifications ?? this.classifications,
ranks: ranks ?? this.ranks,
trackedBys: trackedBys ?? this.trackedBys,
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);
}