|
|
@ -1,10 +1,12 @@ |
|
|
|
using Microsoft.AspNetCore.Authorization; |
|
|
|
using Microsoft.AspNetCore.Http; |
|
|
|
using Microsoft.AspNetCore.Mvc; |
|
|
|
using NPOI.Util; |
|
|
|
using SettleAccount.Domain.BQ; |
|
|
|
using Shouldly; |
|
|
|
using System; |
|
|
|
using System.Collections.Generic; |
|
|
|
using System.Linq; |
|
|
|
using System.Threading.Tasks; |
|
|
|
using Volo.Abp.Application.Dtos; |
|
|
|
using Volo.Abp.Caching; |
|
|
@ -23,37 +25,69 @@ namespace Win.Sfs.SettleAccount.Entities.BQ |
|
|
|
/// </summary>
|
|
|
|
[AllowAnonymous] |
|
|
|
[Route("api/settleaccount/[controller]/[action]")]
|
|
|
|
public class PUB_SA_SERVICE : SettleAccountApplicationBase<TB_RePartsRelationship> |
|
|
|
public class PUB_SA_SERVICE : SettleAccountApplicationBase<PUB_SA> |
|
|
|
{ |
|
|
|
/// <summary>
|
|
|
|
/// PUB结算仓储
|
|
|
|
/// </summary>
|
|
|
|
private readonly INormalEfCoreRepository<PUB_SA, Guid> _repository; |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// PUB结算明细仓储
|
|
|
|
/// </summary>
|
|
|
|
private readonly INormalEfCoreRepository<PUB_SA_DETAIL, Guid> _pubSaDetailRepository; |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 构造
|
|
|
|
/// </summary>
|
|
|
|
public PUB_SA_SERVICE(INormalEfCoreRepository<PUB_SA, Guid> repository, |
|
|
|
IDistributedCache<TB_RePartsRelationship> cache, |
|
|
|
INormalEfCoreRepository<PUB_SA_DETAIL, Guid> pubSaDetailRepository, |
|
|
|
IDistributedCache<PUB_SA> cache, |
|
|
|
IExcelImportAppService excelImportService, |
|
|
|
ISnowflakeIdGenerator snowflakeIdGenerator, |
|
|
|
ICommonManager commonManager |
|
|
|
) : base(cache, excelImportService, snowflakeIdGenerator, commonManager) |
|
|
|
{ |
|
|
|
_repository = repository; |
|
|
|
_pubSaDetailRepository = pubSaDetailRepository; |
|
|
|
} |
|
|
|
|
|
|
|
#region 直供件
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region 导入、导出
|
|
|
|
/// <summary>
|
|
|
|
/// 导入
|
|
|
|
/// </summary>
|
|
|
|
[HttpPost] |
|
|
|
public async Task<string> ImportAsync([FromForm] IFormFileCollection files) |
|
|
|
public async Task<string> ZGJImportAsync([FromForm] IFormFileCollection files) |
|
|
|
{ |
|
|
|
ExportImporter _exportImporter = new ExportImporter(); |
|
|
|
var result = await _exportImporter.UploadExcelImport<PUB_SA_IMPORT_DTO>(files, _excelImportService); |
|
|
|
var _ls = ObjectMapper.Map<List<PUB_SA_IMPORT_DTO>, List<PUB_SA>>(result); |
|
|
|
await _repository.InsertManyAsync(_ls); |
|
|
|
var result = await _exportImporter.UploadExcelImport<ZGJ_PUB_SA_DETAIL_IMPORT_DTO>(files, _excelImportService); |
|
|
|
var _ls = ObjectMapper.Map<List<ZGJ_PUB_SA_DETAIL_IMPORT_DTO>, List<PUB_SA_DETAIL>>(result); |
|
|
|
|
|
|
|
var billNum = GuidGenerator.Create().ToString(); |
|
|
|
var pubSa = new PUB_SA() |
|
|
|
{ |
|
|
|
BillNum = billNum, |
|
|
|
State = "1" |
|
|
|
}; |
|
|
|
|
|
|
|
_ls.ForEach(s => |
|
|
|
{ |
|
|
|
string[] luArr = s.LU.Split(" "); |
|
|
|
var lus = luArr.Reverse(); |
|
|
|
var result = lus.Aggregate(" ", (current, index) => current + index); |
|
|
|
|
|
|
|
//s.LU = s.LU.Replace(" ", "").Replace(" ", " ");
|
|
|
|
s.BillNum = billNum; |
|
|
|
s.Site = "直供件"; |
|
|
|
s.KeyCode = s.LU + s.PN; |
|
|
|
}); |
|
|
|
|
|
|
|
//await _repository.InsertAsync(pubSa);
|
|
|
|
//await _pubSaDetailRepository.InsertManyAsync(_ls);
|
|
|
|
return ApplicationConsts.SuccessStr; |
|
|
|
} |
|
|
|
|
|
|
|