|
@ -35,9 +35,7 @@ namespace Win.Sfs.SettleAccount.Entities.BQ |
|
|
BBAC_NOT_SA_DETAIL_REQ_DTO, |
|
|
BBAC_NOT_SA_DETAIL_REQ_DTO, |
|
|
BBAC_NOT_SA_DETAIL_EXP_DTO> |
|
|
BBAC_NOT_SA_DETAIL_EXP_DTO> |
|
|
{ |
|
|
{ |
|
|
|
|
|
|
|
|
private readonly BBAC_NOT_SA_MNG _bbacNotMng; |
|
|
private readonly BBAC_NOT_SA_MNG _bbacNotMng; |
|
|
|
|
|
|
|
|
public BBAC_NOT_SA_SERVICE(IExcelImportAppService excelImportService, |
|
|
public BBAC_NOT_SA_SERVICE(IExcelImportAppService excelImportService, |
|
|
ISnowflakeIdGenerator snowflakeIdGenerator, |
|
|
ISnowflakeIdGenerator snowflakeIdGenerator, |
|
|
ICommonManager commonManager, INormalEfCoreRepository<BBAC_NOT_SA_DETAIL, Guid> detailRepository, BBAC_NOT_SA_MNG bbacNotMng) : |
|
|
ICommonManager commonManager, INormalEfCoreRepository<BBAC_NOT_SA_DETAIL, Guid> detailRepository, BBAC_NOT_SA_MNG bbacNotMng) : |
|
@ -45,32 +43,25 @@ namespace Win.Sfs.SettleAccount.Entities.BQ |
|
|
{ |
|
|
{ |
|
|
_bbacNotMng = bbacNotMng; |
|
|
_bbacNotMng = bbacNotMng; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
[HttpPost] |
|
|
[HttpPost] |
|
|
public override async Task<IActionResult> GenerateSettlementOrder(BBAC_NOT_SA_DETAIL_REQ_DTO input) |
|
|
public override async Task<IActionResult> GenerateSettlementOrder(BBAC_NOT_SA_DETAIL_REQ_DTO input) |
|
|
{ |
|
|
{ |
|
|
List<ERR_EXP_DTO> errorlist = new List<ERR_EXP_DTO>(); |
|
|
List<ERR_EXP_DTO> errorlist = new List<ERR_EXP_DTO>(); |
|
|
var entitys = await _detailRepository.GetListByFilterAsync(input.Filters, input.Sorting, int.MaxValue, input.SkipCount); |
|
|
var entitys = await _detailRepository.GetListByFilterAsync(input.Filters, input.Sorting, int.MaxValue, input.SkipCount); |
|
|
|
|
|
|
|
|
if (entitys == null ) |
|
|
if (entitys == null ) |
|
|
{ |
|
|
{ |
|
|
errorlist.Add(new ERR_EXP_DTO() { Message = "查询条件无记录" }); |
|
|
errorlist.Add(new ERR_EXP_DTO() { Message = "查询条件无记录" }); |
|
|
} |
|
|
} |
|
|
else |
|
|
else |
|
|
{ |
|
|
{ |
|
|
|
|
|
|
|
|
var errors = await _bbacNotMng.GenerateSettlementOrder(entitys); |
|
|
var errors = await _bbacNotMng.GenerateSettlementOrder(entitys); |
|
|
if (errors.Count > 0) |
|
|
if (errors.Count > 0) |
|
|
{ |
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
foreach (var itm in errors) |
|
|
foreach (var itm in errors) |
|
|
{ |
|
|
{ |
|
|
errorlist.Add(new ERR_EXP_DTO() { Message = itm }); |
|
|
errorlist.Add(new ERR_EXP_DTO() { Message = itm }); |
|
|
} |
|
|
} |
|
|
return new JsonResult(new { Code = ApplicationConsts.ImportFailCode, fileName = await ExportErrorReportAsync(errorlist) }); |
|
|
return new JsonResult(new { Code = ApplicationConsts.ImportFailCode, fileName = await ExportErrorReportAsync(errorlist) }); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
return new JsonResult(new { Code = 200, Message = "生成成功" }); |
|
|
return new JsonResult(new { Code = 200, Message = "生成成功" }); |
|
|