From 82577be5d4ba9713f2b951173969166e9560cccc Mon Sep 17 00:00:00 2001 From: zhaoxinyu Date: Fri, 22 Dec 2023 16:33:40 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../SettleAccount.Application/Entities/BQ/INVOICE_SERVICE.cs | 5 +++++ .../SettleAccount.Application/Entities/BQ/VmiAppService.cs | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/INVOICE_SERVICE.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/INVOICE_SERVICE.cs index f1fb7c62..8daef035 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/INVOICE_SERVICE.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/INVOICE_SERVICE.cs @@ -158,6 +158,7 @@ namespace Win.Sfs.SettleAccount.Entities.BQ Site = "BJ02", CreateTime = DateTime.Now, UpdateTime = DateTime.Now, + Remark=string.IsNullOrEmpty(invoiceGrp.FileName)?string.Empty:invoiceGrp.FileName }; List invdetials = new List(); @@ -274,6 +275,8 @@ namespace Win.Sfs.SettleAccount.Entities.BQ Site = "BJ02", CreateTime = DateTime.Now, UpdateTime = DateTime.Now, + Remark = string.IsNullOrEmpty(invoiceGrp.FileName) ? string.Empty : invoiceGrp.FileName + }; for (var i = 0; i < invoiceGrpDetails.Count; i++) { @@ -380,6 +383,7 @@ namespace Win.Sfs.SettleAccount.Entities.BQ Site = "BJ02", CreateTime = DateTime.Now, UpdateTime = DateTime.Now, + Remark = string.IsNullOrEmpty(invoiceGrp.FileName) ? string.Empty : invoiceGrp.FileName }; List invdetials = new List(); @@ -485,6 +489,7 @@ namespace Win.Sfs.SettleAccount.Entities.BQ Site = "BJ02", CreateTime = DateTime.Now, UpdateTime = DateTime.Now, + Remark = string.IsNullOrEmpty(invoiceGrp.FileName) ? string.Empty : invoiceGrp.FileName }; for (var i = 0; i < invoiceGrpDetails.Count; i++) { diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/VmiAppService.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/VmiAppService.cs index 5ffe4b96..462b2da1 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/VmiAppService.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/VmiAppService.cs @@ -1224,7 +1224,7 @@ namespace Win.Sfs.SettleAccount.Entities.BQ { [Display(Name = "生产码")] public string VinCode { set; get; } - [Display(Name = "零件号")] + [Display(Name = "厂内零件号")] public string RealPartCode { set; get; } [Display(Name = "库位")] public string ErpToLoc { set; get; }