From e66b513a0b99f3bbab35bfbca852217b68cfcf27 Mon Sep 17 00:00:00 2001 From: mahao Date: Fri, 14 Jul 2023 08:46:17 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E5=88=9B=E5=BB=BAPUBSA=20Dto?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Entities/BQ/Dtos/PUB_SA_DTO.cs | 68 +++++++++++++++++-- .../Entities/BQ/PUB_SA_SERVICE.cs | 46 +++++++++++-- ...ttleAccountApplicationAutoMapperProfile.cs | 2 + 3 files changed, 103 insertions(+), 13 deletions(-) diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/Dtos/PUB_SA_DTO.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/Dtos/PUB_SA_DTO.cs index f076ebf8..59ddc9f1 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/Dtos/PUB_SA_DTO.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/Dtos/PUB_SA_DTO.cs @@ -1,9 +1,6 @@ -using System; -using System.Collections.Generic; +using Magicodes.ExporterAndImporter.Core; +using System; using System.ComponentModel.DataAnnotations; -using System.Linq; -using System.Text; -using System.Threading.Tasks; using Volo.Abp.Application.Dtos; namespace Win.Sfs.SettleAccount.Entities.BQ.Dtos @@ -35,9 +32,66 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Dtos /// /// 导入 /// - public class PUB_SA_IMPORT_DTO + public class ZGJ_PUB_SA_DETAIL_IMPORT_DTO { - + ///// + ///// 期间 + ///// + //public int Version { set; get; } + + ///// + ///// 单价 + ///// + //public decimal Price { set; get; } + + ///// + ///// 结算单 + ///// + //public string BillNum { set; get; } + + /// + /// 结算日期 + /// + [ImporterHeader(Name = "Pstng Date")] + public DateTime SettleDate { set; get; } + + /// + /// 零件号 + /// + [ImporterHeader(Name = "Material")] + public string LU { get; set; } + + /// + /// 生产号 + /// + [ImporterHeader(Name = "External Delivery ID")] + public string PN { get; set; } + + ///// + ///// 组合键值(LU+PN) + ///// + //public string KeyCode + //{ + // get => LU + PN; + //} + + ///// + /// 数量 + /// + [ImporterHeader(Name = "Quantity")] + public decimal Qty { get; set; } + + /// + /// 结算分组号 + /// + [ImporterHeader(Name = "Delivery")] + public string GroupNum { get; set; } + + /////// + /////// 工厂地点 + /////// + ////[Display(Name = "工厂地点")] + ////public string Site { get; set; } } /// diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_SA_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_SA_SERVICE.cs index ec5c25f1..238b4ed8 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_SA_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/PUB_SA_SERVICE.cs @@ -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 /// [AllowAnonymous] [Route("api/settleaccount/[controller]/[action]")] - public class PUB_SA_SERVICE : SettleAccountApplicationBase + public class PUB_SA_SERVICE : SettleAccountApplicationBase { /// /// PUB结算仓储 /// private readonly INormalEfCoreRepository _repository; + /// + /// PUB结算明细仓储 + /// + private readonly INormalEfCoreRepository _pubSaDetailRepository; + /// /// 构造 /// public PUB_SA_SERVICE(INormalEfCoreRepository repository, - IDistributedCache cache, + INormalEfCoreRepository pubSaDetailRepository, + IDistributedCache cache, IExcelImportAppService excelImportService, ISnowflakeIdGenerator snowflakeIdGenerator, ICommonManager commonManager ) : base(cache, excelImportService, snowflakeIdGenerator, commonManager) { _repository = repository; + _pubSaDetailRepository = pubSaDetailRepository; } + #region 直供件 + + #endregion + #region 导入、导出 /// /// 导入 /// [HttpPost] - public async Task ImportAsync([FromForm] IFormFileCollection files) + public async Task ZGJImportAsync([FromForm] IFormFileCollection files) { ExportImporter _exportImporter = new ExportImporter(); - var result = await _exportImporter.UploadExcelImport(files, _excelImportService); - var _ls = ObjectMapper.Map, List>(result); - await _repository.InsertManyAsync(_ls); + var result = await _exportImporter.UploadExcelImport(files, _excelImportService); + var _ls = ObjectMapper.Map, List>(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; } diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/SettleAccountApplicationAutoMapperProfile.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/SettleAccountApplicationAutoMapperProfile.cs index 25c97c58..d80ca761 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application/SettleAccountApplicationAutoMapperProfile.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/SettleAccountApplicationAutoMapperProfile.cs @@ -819,6 +819,8 @@ namespace Win.Sfs.SettleAccount private void CreateMapPUB_SA() { CreateMap(); + + CreateMap(); } } From 88ce2985a2ac09b7f59a8197870d85caf5524452 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A7=9C=E6=97=AD=E4=B9=8B?= <12930972+jiang-xuzhi@user.noreply.gitee.com> Date: Fri, 14 Jul 2023 08:57:04 +0800 Subject: [PATCH 2/2] update --- .../src/WTA.Application/Identity/Data/IdentityDbSeed.cs | 7 ------- .../Identity/Entities/SystemManagement/BOM.cs | 2 +- .../Entities/SystemManagement/CentralizedControl.cs | 2 +- .../Identity/Entities/SystemManagement/PURCHASE_PRICE.cs | 2 +- .../Identity/Entities/SystemManagement/TB_PRICE_LIST.cs | 2 +- 5 files changed, 4 insertions(+), 11 deletions(-) diff --git a/docs/demo/src/WTA.Application/Identity/Data/IdentityDbSeed.cs b/docs/demo/src/WTA.Application/Identity/Data/IdentityDbSeed.cs index 214a9e21..09ed0584 100644 --- a/docs/demo/src/WTA.Application/Identity/Data/IdentityDbSeed.cs +++ b/docs/demo/src/WTA.Application/Identity/Data/IdentityDbSeed.cs @@ -176,16 +176,9 @@ public class IdentityDbSeed : IDbSeed context.Set().Add(new PUB_SA { Version = "测试数据", State = "测试数据", BillNum = "1号测试数据" }); context.Set().Add(new PUB_SA { Version = "测试数据", State = "测试数据", BillNum = "2号测试数据" }); context.Set().Add(new PUB_SA { Version = "测试数据", State = "测试数据", BillNum = "3号测试数据" }); - context.Set().Add(new PUB_SA { Version = "测试数据", State = "测试数据", BillNum = "一号测试数据" }); - context.Set().Add(new PUB_SA { Version = "测试数据", State = "测试数据", BillNum = "二号测试数据" }); - context.Set().Add(new PUB_SA { Version = "测试数据", State = "测试数据", BillNum = "三号测试数据" }); context.Set().Add(new PUB_SA_DETAIL { KeyCode = "测试数据", Version = "测试数据", BillNum = "1号测试数据", LU = "测试数据", PN = "测试数据", Site = "测试数据", InvGroupNum = "测试数据", SettleDate = new DateTime(), Extend1 = "测试数据", Extend2 = "测试数据", Extend3 = "测试数据", GroupNum = "测试数据" }); context.Set().Add(new PUB_SA_DETAIL { KeyCode = "测试数据", Version = "测试数据", BillNum = "2号测试数据", LU = "测试数据", PN = "测试数据", Site = "测试数据", InvGroupNum = "测试数据", SettleDate = new DateTime(), Extend1 = "测试数据", Extend2 = "测试数据", Extend3 = "测试数据", GroupNum = "测试数据" }); context.Set().Add(new PUB_SA_DETAIL { KeyCode = "测试数据", Version = "测试数据", BillNum = "3号测试数据", LU = "测试数据", PN = "测试数据", Site = "测试数据", InvGroupNum = "测试数据", SettleDate = new DateTime(), Extend1 = "测试数据", Extend2 = "测试数据", Extend3 = "测试数据", GroupNum = "测试数据" }); - context.Set().Add(new PUB_SA_DETAIL { KeyCode = "测试数据", Version = "测试数据", BillNum = "一号测试数据", LU = "测试数据", PN = "测试数据", Site = "测试数据", InvGroupNum = "测试数据", SettleDate = new DateTime(), Extend1 = "测试数据", Extend2 = "测试数据", Extend3 = "测试数据", GroupNum = "测试数据" }); - context.Set().Add(new PUB_SA_DETAIL { KeyCode = "测试数据", Version = "测试数据", BillNum = "二号测试数据", LU = "测试数据", PN = "测试数据", Site = "测试数据", InvGroupNum = "测试数据", SettleDate = new DateTime(), Extend1 = "测试数据", Extend2 = "测试数据", Extend3 = "测试数据", GroupNum = "测试数据" }); - context.Set().Add(new PUB_SA_DETAIL { KeyCode = "测试数据", Version = "测试数据", BillNum = "三号测试数据", LU = "测试数据", PN = "测试数据", Site = "测试数据", InvGroupNum = "测试数据", SettleDate = new DateTime(), Extend1 = "测试数据", Extend2 = "测试数据", Extend3 = "测试数据", GroupNum = "测试数据" }); - } private static void InitDictionaries(DbContext context) diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BOM.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BOM.cs index dac3f358..9ed9609f 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BOM.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/BOM.cs @@ -6,7 +6,7 @@ namespace WTA.Application.Identity.Entities.SystemManagement; [SystemManagement] [Display(Name = "BOM结构")] -[Order(9)] +[Order(11)] public class BOM : BaseEntity { } diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/CentralizedControl.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/CentralizedControl.cs index 305f9654..87fc5ca6 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/CentralizedControl.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/CentralizedControl.cs @@ -4,7 +4,7 @@ using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; -[Order(11)] +[Order(9)] [SystemManagement] [Display(Name = "期间设置")] public class CentralizedControl : BaseEntity diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/PURCHASE_PRICE.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/PURCHASE_PRICE.cs index 46cde40d..a2342629 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/PURCHASE_PRICE.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/PURCHASE_PRICE.cs @@ -5,7 +5,7 @@ using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; [SystemManagement] [Display(Name = "采购价格单")] -[Order(14)] +[Order(12)] public class PURCHASE_PRICE : BaseEntity { } diff --git a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/TB_PRICE_LIST.cs b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/TB_PRICE_LIST.cs index 2937a76b..8902a1c1 100644 --- a/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/TB_PRICE_LIST.cs +++ b/docs/demo/src/WTA.Application/Identity/Entities/SystemManagement/TB_PRICE_LIST.cs @@ -4,7 +4,7 @@ using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; -[Order(12)] +[Order(14)] [SystemManagement] [Display(Name = "销售价格单")] public class TB_PRICE_LIST : BaseEntity