From 6b0db8cd74215c0fd3aff6025460f3cc8b70fe0b Mon Sep 17 00:00:00 2001 From: fly-l <1420031550@qq.com> Date: Tue, 11 Oct 2022 17:12:13 +0800 Subject: [PATCH] =?UTF-8?q?2022-10-11=20=E7=84=8A=E6=8E=A5=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E5=8F=8A=E6=8E=A5=E5=8F=A3=E6=96=B0=E5=A2=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BLL/API/HJGL/APIPackagingManageService.cs | 14 +- .../API/HJGL/APIPipelineComponentService.cs | 67 +- .../WeldingManage/PipelineComponentService.cs | 2 + SGGL/BLL/Person/Person_PersonsService.cs | 26 + SGGL/FineUIPro.Web/ErrLog.txt | 972 ++++++++++++++++++ .../HJGL/DataImport/MaterialInformation.aspx | 22 +- .../DataImport/MaterialInformation.aspx.cs | 11 + .../HJGL/WeldingManage/PipelineMatIn.aspx | 2 +- .../HJGL/WeldingManage/PipelineMatIn.aspx.cs | 5 +- .../{ => APIItem}/HJGL/PackagingManageItem.cs | 4 +- .../APIItem/HJGL/PipelineComponentItem.cs | 25 + SGGL/Model/Model.csproj | 3 +- .../HJGL/PackagingManageController.cs | 12 +- .../HJGL/PipelineComponentController.cs | 70 ++ SGGL/WebAPI/WebAPI.csproj | 1 + 15 files changed, 1209 insertions(+), 27 deletions(-) rename SGGL/Model/{ => APIItem}/HJGL/PackagingManageItem.cs (91%) create mode 100644 SGGL/Model/APIItem/HJGL/PipelineComponentItem.cs create mode 100644 SGGL/WebAPI/Controllers/HJGL/PipelineComponentController.cs diff --git a/SGGL/BLL/API/HJGL/APIPackagingManageService.cs b/SGGL/BLL/API/HJGL/APIPackagingManageService.cs index 6d2edd1b..adc56ee2 100644 --- a/SGGL/BLL/API/HJGL/APIPackagingManageService.cs +++ b/SGGL/BLL/API/HJGL/APIPackagingManageService.cs @@ -10,14 +10,11 @@ namespace BLL { public class APIPackagingManageService { - public static List GetPackagingManageList(string projectId,int pagesize,int pageindex) + public static List GetPackagingManageList(string projectId) { using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString)) { var q = (from x in db.HJGL_PackagingManage - //join y in db.HJGL_Pipeline_Component on x.PipelineComponentId equals y.PipelineComponentId - // join z in db.HJGL_Pipeline on tt.PipelineId equals z.PipelineId - //join m in db.WBS_UnitWork on z.UnitWorkId equals m.UnitId join n in db.Base_Project on x.ProjectId equals n.ProjectId where x.ProjectId == projectId select new PackagingManageDetailItem @@ -30,24 +27,25 @@ namespace BLL StackingPosition = x.StackingPosition, State= x.State, }).Distinct(); - return q.Take(pagesize*pageindex).Skip(pageindex).ToList(); + return q.ToList(); } } - public static Model.PackagingManageItem GetPackagingInformationById(string projectId, string packagingManageId) + public static Model.PackagingManageItem GetPackagingInformationById(string projectId,string personId, string packagingManageId) { using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString)) { PackagingManageItem packagingManageItem = new PackagingManageItem(); var q = (from x in db.HJGL_PackagingManage join n in db.Base_Project on x.ProjectId equals n.ProjectId - where x.ProjectId == projectId && x.PackagingManageId == packagingManageId + where x.PackagingManageId == packagingManageId select new PackagingManageDetailItem { PackagingManageId = x.PackagingManageId, PackagingCode = x.PackagingCode, ProjectName = n.ProjectName, + ProjectId = x.ProjectId, ContactName = x.ContactName, ContactPhone = x.ContactPhone, StackingPosition = x.StackingPosition, @@ -67,8 +65,10 @@ namespace BLL PlanStartDate=y.PlanStartDate }).ToList(); + bool isPower = Person_PersonsService.IsGeneralUnitByPersonId(personId, projectId); packagingManageItem.packagingManageDetailItem = q; packagingManageItem.packagingPrepipeItems = packagingPrepipeItem; + packagingManageItem.isPower = isPower; return packagingManageItem; } diff --git a/SGGL/BLL/API/HJGL/APIPipelineComponentService.cs b/SGGL/BLL/API/HJGL/APIPipelineComponentService.cs index d66aa67d..4688b099 100644 --- a/SGGL/BLL/API/HJGL/APIPipelineComponentService.cs +++ b/SGGL/BLL/API/HJGL/APIPipelineComponentService.cs @@ -1,12 +1,77 @@ -using System; +using NPOI.OpenXmlFormats.Shared; +using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; +using Model; namespace BLL { public class APIPipelineComponentService { + public static List GetPackagingManageList(string projectid) + { + using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString)) + { + + var q = (from x in db.HJGL_Pipeline_Component + join y in db.HJGL_Pipeline on x.PipelineId equals y.PipelineId + join z in db.Base_Unit on x.PreUnit equals z.UnitId into tt + from t in tt.DefaultIfEmpty() + where y.ProjectId == projectid + select new PipelineComponentItem + { + PipelineComponentId = x.PipelineComponentId, + PipelineComponentCode = x.PipelineComponentCode, + PreUnit = t.UnitName, + DrawingName = x.DrawingName, + BoxNumber = x.BoxNumber, + State = x.State, + PlanStartDate = y.PlanStartDate, + QRCode = x.QRCode, + }).Distinct(); + return q.ToList(); + + } + } + public static PipelineComponentDetail GetPipelineComponentById(string projectId, string personId, string PipelineComponentId) + { + using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString)) + { + PipelineComponentDetail pipelineComponentDetail = new PipelineComponentDetail(); + + var q = (from x in db.HJGL_Pipeline_Component + join y in db.HJGL_Pipeline on x.PipelineId equals y.PipelineId + join z in db.Base_Unit on x.PreUnit equals z.UnitId into tt + from t in tt.DefaultIfEmpty() + where x.PipelineComponentId== PipelineComponentId + select new PipelineComponentItem + { + PipelineComponentId = x.PipelineComponentId, + PipelineComponentCode = x.PipelineComponentCode, + PreUnit = t.UnitName, + DrawingName = x.DrawingName, + BoxNumber = x.BoxNumber, + State = x.State, + PlanStartDate = y.PlanStartDate, + QRCode = x.QRCode, + }).FirstOrDefault(); + bool isPower = Person_PersonsService.IsGeneralUnitByPersonId(personId, projectId); + pipelineComponentDetail.pipelineComponentItem = q; + pipelineComponentDetail.isPower=isPower; + return pipelineComponentDetail; + + } + } + public static void GetComponentConfirmArrival(string PipelineComponentId) + { + var q = BLL.HJGL_PipelineComponentService.GetPipelineComponentById(PipelineComponentId); + if (q != null) + { + q.State = HJGL_PipelineComponentService.state_1; + HJGL_PipelineComponentService.UpdatePipelineComponent(q); + } + } } } diff --git a/SGGL/BLL/HJGL/WeldingManage/PipelineComponentService.cs b/SGGL/BLL/HJGL/WeldingManage/PipelineComponentService.cs index 9a3bf529..2f6de2a1 100644 --- a/SGGL/BLL/HJGL/WeldingManage/PipelineComponentService.cs +++ b/SGGL/BLL/HJGL/WeldingManage/PipelineComponentService.cs @@ -93,6 +93,7 @@ namespace BLL { model.PipelineId = PipelineId; model.PipelineComponentCode = model_mat.PrefabricatedComponents; + model.DrawingName = model_mat.PrefabricatedComponents.Substring(0, model_mat.PrefabricatedComponents.LastIndexOf('-')); model.State = state_0; UpdatePipelineComponent(model); } @@ -102,6 +103,7 @@ namespace BLL model.PipelineComponentId = SQLHelper.GetNewID(); model.PipelineId = PipelineId; model.PipelineComponentCode = model_mat.PrefabricatedComponents; + model.DrawingName = model_mat.PrefabricatedComponents.Substring(0, model_mat.PrefabricatedComponents.LastIndexOf('-')); model.State = state_0; AddPipelineComponent(model); } diff --git a/SGGL/BLL/Person/Person_PersonsService.cs b/SGGL/BLL/Person/Person_PersonsService.cs index 5d1e45ca..9345bcef 100644 --- a/SGGL/BLL/Person/Person_PersonsService.cs +++ b/SGGL/BLL/Person/Person_PersonsService.cs @@ -192,6 +192,32 @@ namespace BLL } #endregion + /// + /// 根据主键,项目id判断当前人单位是否是总包单位 + /// + /// + /// + /// + public static bool IsGeneralUnitByPersonId(string PersonId,string ProjectId) + { + bool result = false; + var PersonEntity = GetPerson_PersonsById(PersonId); + if (PersonEntity!=null) + { + var pUnit = Funs.DB.Project_ProjectUnit.FirstOrDefault(e => e.ProjectId == ProjectId && e.UnitId == PersonEntity.UnitId); + if (pUnit != null) + { + if (pUnit.UnitType == Const.ProjectUnitType_1 ) + { + result = true; + } + } + } + return result; + + + } + #region 根据身份证号码获取人员信息 /// /// 根据身份证号码获取人员信息 diff --git a/SGGL/FineUIPro.Web/ErrLog.txt b/SGGL/FineUIPro.Web/ErrLog.txt index e69de29b..417c470c 100644 --- a/SGGL/FineUIPro.Web/ErrLog.txt +++ b/SGGL/FineUIPro.Web/ErrLog.txt @@ -0,0 +1,972 @@ + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:03 +出错时间:10/10/2022 14:51:03 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:03 +出错时间:10/10/2022 14:51:03 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:03 +出错时间:10/10/2022 14:51:03 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:03 +出错时间:10/10/2022 14:51:03 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:03 +出错时间:10/10/2022 14:51:03 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:03 +出错时间:10/10/2022 14:51:03 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:03 +出错时间:10/10/2022 14:51:03 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:03 +出错时间:10/10/2022 14:51:03 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:04 +出错时间:10/10/2022 14:51:04 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:04 +出错时间:10/10/2022 14:51:04 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:04 +出错时间:10/10/2022 14:51:04 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:04 +出错时间:10/10/2022 14:51:04 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:04 +出错时间:10/10/2022 14:51:04 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:04 +出错时间:10/10/2022 14:51:04 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:04 +出错时间:10/10/2022 14:51:04 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:04 +出错时间:10/10/2022 14:51:04 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:04 +出错时间:10/10/2022 14:51:04 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:04 +出错时间:10/10/2022 14:51:04 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:04 +出错时间:10/10/2022 14:51:04 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:04 +出错时间:10/10/2022 14:51:04 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:04 +出错时间:10/10/2022 14:51:04 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:04 +出错时间:10/10/2022 14:51:04 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:04 +出错时间:10/10/2022 14:51:04 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:04 +出错时间:10/10/2022 14:51:04 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:04 +出错时间:10/10/2022 14:51:04 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:04 +出错时间:10/10/2022 14:51:04 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:51:04 +出错时间:10/10/2022 14:51:04 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:42 +出错时间:10/10/2022 14:56:42 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:48 +出错时间:10/10/2022 14:56:48 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:48 +出错时间:10/10/2022 14:56:48 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:48 +出错时间:10/10/2022 14:56:48 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:48 +出错时间:10/10/2022 14:56:48 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:48 +出错时间:10/10/2022 14:56:48 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:48 +出错时间:10/10/2022 14:56:48 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:48 +出错时间:10/10/2022 14:56:48 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:48 +出错时间:10/10/2022 14:56:48 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:49 +出错时间:10/10/2022 14:56:49 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:49 +出错时间:10/10/2022 14:56:49 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:49 +出错时间:10/10/2022 14:56:49 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:49 +出错时间:10/10/2022 14:56:49 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:49 +出错时间:10/10/2022 14:56:49 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:49 +出错时间:10/10/2022 14:56:49 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:49 +出错时间:10/10/2022 14:56:49 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:49 +出错时间:10/10/2022 14:56:49 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:49 +出错时间:10/10/2022 14:56:49 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:49 +出错时间:10/10/2022 14:56:49 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:49 +出错时间:10/10/2022 14:56:49 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:49 +出错时间:10/10/2022 14:56:49 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:49 +出错时间:10/10/2022 14:56:49 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:49 +出错时间:10/10/2022 14:56:49 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:49 +出错时间:10/10/2022 14:56:50 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:50 +出错时间:10/10/2022 14:56:50 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:50 +出错时间:10/10/2022 14:56:50 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:50 +出错时间:10/10/2022 14:56:50 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseDecimal(String value, NumberStyles options, NumberFormatInfo numfmt) + 在 System.Decimal.Parse(String s) + 在 BLL.Funs.GetNewDecimal(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\BLL\Common\Funs.cs:行号 423 +出错时间:10/10/2022 14:56:50 +出错时间:10/10/2022 14:56:50 + diff --git a/SGGL/FineUIPro.Web/HJGL/DataImport/MaterialInformation.aspx b/SGGL/FineUIPro.Web/HJGL/DataImport/MaterialInformation.aspx index afd641fa..9874c64c 100644 --- a/SGGL/FineUIPro.Web/HJGL/DataImport/MaterialInformation.aspx +++ b/SGGL/FineUIPro.Web/HJGL/DataImport/MaterialInformation.aspx @@ -95,7 +95,7 @@ - - + TextAlign="Left" Width="100px"> --%> - @@ -128,12 +128,12 @@ FieldType="String" HeaderText="数量" HeaderTextAlign="Center" TextAlign="Left"> - - @@ -146,7 +146,7 @@ - --%> - @@ -174,11 +174,11 @@ FieldType="String" HeaderText="数量" HeaderTextAlign="Center" TextAlign="Left"> - - diff --git a/SGGL/FineUIPro.Web/HJGL/DataImport/MaterialInformation.aspx.cs b/SGGL/FineUIPro.Web/HJGL/DataImport/MaterialInformation.aspx.cs index 10ac6643..1bce8272 100644 --- a/SGGL/FineUIPro.Web/HJGL/DataImport/MaterialInformation.aspx.cs +++ b/SGGL/FineUIPro.Web/HJGL/DataImport/MaterialInformation.aspx.cs @@ -225,8 +225,19 @@ namespace FineUIPro.Web.HJGL.DataImport if (pipeline != null) { this.hdUnitWorkId.Text = this.tvControlItem.SelectedNode.ParentNode.NodeID; + this.BindGrid1(this.tvControlItem.SelectedNodeID, this.hdUnitWorkId.Text); this.BindGrid2(this.tvControlItem.SelectedNodeID, this.hdUnitWorkId.Text); + if (pipeline.PipeArea == PipelineService.PipeArea_SHOP) + { + TabStrip1.ActiveTabIndex = 0; + + } + else + { + TabStrip1.ActiveTabIndex = 1; + + } } } diff --git a/SGGL/FineUIPro.Web/HJGL/WeldingManage/PipelineMatIn.aspx b/SGGL/FineUIPro.Web/HJGL/WeldingManage/PipelineMatIn.aspx index 59be30e6..3d5a3fb2 100644 --- a/SGGL/FineUIPro.Web/HJGL/WeldingManage/PipelineMatIn.aspx +++ b/SGGL/FineUIPro.Web/HJGL/WeldingManage/PipelineMatIn.aspx @@ -51,7 +51,7 @@ - "; + errorInfos += (i + 2) + "Line,"+ dv[i]["管线号"].ToString() + " [管线号] 不存在
"; } } @@ -240,7 +240,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage } else { - errorInfos += (i + 2) + "Line, [材料编码] 不存在
"; + errorInfos += (i + 2) + "Line," + dv[i]["材料编码"].ToString() + " [材料编码] 不存在
"; } } @@ -367,6 +367,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage string fileName = rootPath + initPath + this.hdFileName.Text; //读取Excel DataSet ds = NPOIHelper.ExcelToDataSet(fileName, out errorInfos, true); + //验证Excel读取是否有误 if (!string.IsNullOrEmpty(errorInfos)) { diff --git a/SGGL/Model/HJGL/PackagingManageItem.cs b/SGGL/Model/APIItem/HJGL/PackagingManageItem.cs similarity index 91% rename from SGGL/Model/HJGL/PackagingManageItem.cs rename to SGGL/Model/APIItem/HJGL/PackagingManageItem.cs index aff7930a..ce0dd2dc 100644 --- a/SGGL/Model/HJGL/PackagingManageItem.cs +++ b/SGGL/Model/APIItem/HJGL/PackagingManageItem.cs @@ -10,11 +10,11 @@ namespace Model { public string PackagingManageId { get; set; } public string PackagingCode { get; set; } + public string ProjectId { get; set; } public string ProjectName { get; set; } public string ContactName { get; set; } public string ContactPhone { get; set; } public string StackingPosition { get; set; } - public int? State { get; set; } } @@ -30,6 +30,8 @@ namespace Model { public PackagingManageDetailItem packagingManageDetailItem { get; set; } public List packagingPrepipeItems { get; set; } + public bool isPower { get; set; } + } } diff --git a/SGGL/Model/APIItem/HJGL/PipelineComponentItem.cs b/SGGL/Model/APIItem/HJGL/PipelineComponentItem.cs new file mode 100644 index 00000000..51971da6 --- /dev/null +++ b/SGGL/Model/APIItem/HJGL/PipelineComponentItem.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Model +{ + public class PipelineComponentItem + { + public string PipelineComponentId { get; set; } + public string PipelineComponentCode { get; set; } + public string PreUnit { get; set; } + public string DrawingName { get; set; } + public string BoxNumber { get; set; } + public int? State { get; set; } + public DateTime? PlanStartDate { get; set; } + public string QRCode { get; set; } + } + public class PipelineComponentDetail + { + public PipelineComponentItem pipelineComponentItem { get; set; } + public bool isPower { get; set; } + } +} diff --git a/SGGL/Model/Model.csproj b/SGGL/Model/Model.csproj index 7920e6e0..16d701e5 100644 --- a/SGGL/Model/Model.csproj +++ b/SGGL/Model/Model.csproj @@ -67,6 +67,7 @@ + @@ -163,7 +164,7 @@ - + diff --git a/SGGL/WebAPI/Controllers/HJGL/PackagingManageController.cs b/SGGL/WebAPI/Controllers/HJGL/PackagingManageController.cs index 35ef68e5..a289ab92 100644 --- a/SGGL/WebAPI/Controllers/HJGL/PackagingManageController.cs +++ b/SGGL/WebAPI/Controllers/HJGL/PackagingManageController.cs @@ -18,7 +18,13 @@ namespace WebAPI.Controllers var responeData = new Model.ResponeData(); try { - responeData.data = BLL.APIPackagingManageService.GetPackagingManageList(projectid, pagesize,pageindex); + var getDataList = BLL.APIPackagingManageService.GetPackagingManageList(projectid); + int pageCount = getDataList.Count(); + if ( pageCount > 0 && pageindex > 0) + { + getDataList = getDataList.Skip(pagesize * (pageindex - 1)).Take(pagesize).ToList(); + } + responeData.data = new { pageCount, getDataList }; } catch (Exception ex) { @@ -29,12 +35,12 @@ namespace WebAPI.Controllers return responeData; } - public Model.ResponeData GetPackagingInformationById(string projectId, string packagingManageId) + public Model.ResponeData GetPackagingInformationById(string projectId,string personId, string packagingManageId) { var responeData = new Model.ResponeData(); try { - responeData.data = BLL.APIPackagingManageService.GetPackagingInformationById(projectId, packagingManageId); + responeData.data = BLL.APIPackagingManageService.GetPackagingInformationById(projectId, personId, packagingManageId); } catch (Exception ex) { diff --git a/SGGL/WebAPI/Controllers/HJGL/PipelineComponentController.cs b/SGGL/WebAPI/Controllers/HJGL/PipelineComponentController.cs new file mode 100644 index 00000000..ab14e7f6 --- /dev/null +++ b/SGGL/WebAPI/Controllers/HJGL/PipelineComponentController.cs @@ -0,0 +1,70 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net; +using System.Net.Http; +using System.Web.Http; + +namespace WebAPI.Controllers +{ + public class PipelineComponentController : ApiController + { + public Model.ResponeData GetPipelineComponentList(string projectid, int pagesize, int pageindex, int? state) + { + var responeData = new Model.ResponeData(); + try + { + var getDataList = BLL.APIPipelineComponentService.GetPackagingManageList(projectid); + if (state != null) + { + getDataList = getDataList.Where(x => x.State == state).ToList(); + } + int pageCount = getDataList.Count(); + if (pageCount > 0 && pageindex > 0&& pagesize>0) + { + getDataList = getDataList.Skip(pagesize * (pageindex - 1)).Take(pagesize).ToList(); + } + responeData.data = new { pageCount, getDataList }; + } + catch (Exception ex) + { + responeData.code = 0; + responeData.message = ex.Message; + } + + return responeData; + } + + public Model.ResponeData GetPipelineComponentById(string projectId, string personId, string PipelineComponentId) + { + var responeData = new Model.ResponeData(); + try + { + responeData.data = BLL.APIPipelineComponentService.GetPipelineComponentById(projectId, personId, PipelineComponentId); + } + catch (Exception ex) + { + responeData.code = 0; + responeData.message = ex.Message; + } + + return responeData; + } + public Model.ResponeData GetComponentConfirmArrival(string PipelineComponentId) + { + var responeData = new Model.ResponeData(); + try + { + BLL.APIPipelineComponentService.GetComponentConfirmArrival(PipelineComponentId); + } + catch (Exception ex) + { + responeData.code = 0; + responeData.message = ex.Message; + } + + return responeData; + } + + } +} \ No newline at end of file diff --git a/SGGL/WebAPI/WebAPI.csproj b/SGGL/WebAPI/WebAPI.csproj index 6379af06..b8b6feab 100644 --- a/SGGL/WebAPI/WebAPI.csproj +++ b/SGGL/WebAPI/WebAPI.csproj @@ -171,6 +171,7 @@ +