|
@ -76,12 +76,12 @@ public class PriceListAppServiceBJ : SettleAccountApplicationBase<PriceListBJ> |
|
|
var repeat = query.Distinct().ToList(); |
|
|
var repeat = query.Distinct().ToList(); |
|
|
foreach (var item in repeat) |
|
|
foreach (var item in repeat) |
|
|
{ |
|
|
{ |
|
|
checkList.Add(new ErrorExportDto(string.Empty, string.Empty, string.Empty, string.Empty, string.Empty, string.Empty, $"导入文件中物料号:{item.LU},合同签订时间:{item.Date},时间区间存在交集", string.Empty)); |
|
|
checkList.Add(new ErrorExportDto(string.Empty, string.Empty, string.Empty, string.Empty, item.LU, string.Empty, $"合同号:{item.ContractNo},合同签订时间:{item.Date:yyyy-MM-dd},时间区间存在交集", string.Empty)); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
foreach (var item in CheckPriceListContinuity(newPrice)) |
|
|
foreach (var item in CheckPriceListContinuity(newPrice)) |
|
|
{ |
|
|
{ |
|
|
checkList.Add(new ErrorExportDto(string.Empty, string.Empty, string.Empty, string.Empty, string.Empty, string.Empty, $"导入文件中物料号:{item.LU},合同签订时间:{item.Date},时间区间【{item.BeginDate}至{item.EndDate}】不连续", string.Empty)); |
|
|
checkList.Add(new ErrorExportDto(string.Empty, string.Empty, string.Empty, string.Empty, item.LU, string.Empty, $"合同号:{item.ContractNo},合同签订时间:{item.Date:yyyy-MM-dd},时间区间【{item.BeginDate:yyyy-MM-dd}至{item.EndDate:yyyy-MM-dd}】不连续", string.Empty)); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
if (checkList.Count > 0) |
|
|
if (checkList.Count > 0) |
|
|