diff --git a/SGGL/BLL/HJGL/WeldingManage/PipelineService.cs b/SGGL/BLL/HJGL/WeldingManage/PipelineService.cs index b46ce107..8e4e7715 100644 --- a/SGGL/BLL/HJGL/WeldingManage/PipelineService.cs +++ b/SGGL/BLL/HJGL/WeldingManage/PipelineService.cs @@ -10,6 +10,7 @@ using System.IO; using System.Linq; using System.Web.UI.DataVisualization.Charting; using System.Web.UI.WebControls; +using System.Windows.Media.Animation; using static BLL.PipelineService; namespace BLL @@ -221,6 +222,7 @@ namespace BLL } if (joint_Field_count == TaskJoints_Field.Count && joint_Field_count > 0) { + model_pipeline.IsFinished = true; ActDateEnd_FIELD = TaskJoints_Field.OrderByDescending(x => x.TaskDate).First().TaskDate.Value; } model_pipeline.ActStartDate = ActDateStart_FIELD; @@ -246,7 +248,7 @@ namespace BLL /// /// /// - public static List GetView_HJGL_Pipelines(HJGL_Pipeline model) + public static List GetHJGL_PipelineList(HJGL_Pipeline model) { var db = Funs.DB; var pipelineList =( from x in Funs.DB.HJGL_Pipeline @@ -273,6 +275,33 @@ namespace BLL } return pipelineList; } + public static List GetView_HJGL_Pipelines(View_HJGL_Pipeline model) + { + var db = Funs.DB; + var pipelineList = (from x in Funs.DB.View_HJGL_Pipeline + where + (string.IsNullOrEmpty(model.ProjectId) || x.ProjectId.Contains(model.ProjectId)) + && (string.IsNullOrEmpty(model.UnitWorkId) || x.UnitWorkId.Contains(model.UnitWorkId)) + && (string.IsNullOrEmpty(model.PipelineCode) || x.PipelineCode.Contains(model.PipelineCode)) + && (string.IsNullOrEmpty(model.SingleName) || x.SingleName.Contains(model.SingleName)) + && (string.IsNullOrEmpty(model.DesignPress) || x.DesignPress.Contains(model.DesignPress)) + /* && (string.IsNullOrEmpty(model.MaterialCode) || x.MaterialCode.Contains(model.MaterialCode))*/ + select x).ToList(); + if (model.IsFinished != null) + { + if (model.IsFinished == true) + { + pipelineList = pipelineList.Where(x => x.IsFinished == true).ToList(); + } + else + { + pipelineList = pipelineList.Where(x => x.IsFinished == false || x.IsFinished == null).ToList(); + + } + + } + return pipelineList; + } /// /// 根据unitworkId获取所有管线 /// @@ -761,6 +790,135 @@ namespace BLL } } } + /// + /// 根据组件材料编码查询管线 + /// + /// + /// + /// + /// + /// + public static void BindTreeNodes(FineUIPro.TreeNode node, string pipecode,string MaterialCode, string ProjectId, int pageSize) + { + //var pipeline = (from x in Funs.DB.HJGL_Pipeline + // where x.ProjectId == ProjectId && x.UnitWorkId == node.NodeID + // && x.PipelineCode.Contains(pipecode) + // orderby x.PipelineCode + // select x).ToList(); + var pipeline = (from x in Funs.DB.HJGL_Pipeline + join y in Funs.DB.HJGL_PipeLineMat.Where(m => m.MaterialCode.Contains(MaterialCode)) on x.PipelineId equals y.PipelineId + where x.ProjectId == ProjectId && x.UnitWorkId == node.NodeID && x.PipelineCode.Contains(pipecode) + select x).Distinct().ToList(); + var hJGL_WeldJoints = (from x in Funs.DB.HJGL_WeldJoint where x.ProjectId == ProjectId select x).ToList(); + int pageindex = int.Parse(node.CommandName.Split('|')[0]); + int pageCount = int.Parse(node.CommandName.Split('|')[1]); + if (pageindex <= pageCount) + { + pipeline = pipeline.Skip(pageSize * (pageindex - 1)).Take(pageSize).ToList(); + foreach (var item in pipeline) + { + var jotCount = (from x in hJGL_WeldJoints where x.PipelineId == item.PipelineId /*&& x.IsTwoJoint == null*/ select x).Count(); + FineUIPro.TreeNode newNode = new FineUIPro.TreeNode(); + newNode.Text = item.PipelineCode + "【" + jotCount.ToString() + " " + "焊口" + "】"; + newNode.NodeID = item.PipelineId; + newNode.CommandName = "管线"; + newNode.EnableClickEvent = true; + node.Nodes.Add(newNode); + } + if (pageindex < pageCount) + { + FineUIPro.TreeNode newNode = new FineUIPro.TreeNode(); + newNode.Text = "加载"; + newNode.NodeID = SQLHelper.GetNewID(); + newNode.CommandName = "加载"; + newNode.Icon = FineUIPro.Icon.ArrowDown; + newNode.EnableClickEvent = true; + node.Nodes.Add(newNode); + } + } + } + public static void BindTreeNodes(FineUIPro.TreeNode node,bool isExitWPQId, string pipecode, string ProjectId, int pageSize) + { + if (isExitWPQId) + { + string strSql = "SELECT distinct PipelineId, PipelineCode FROM View_HJGL_WeldJoint WHERE IsTwoJoint IS NULL AND UnitWorkId =@UnitWorkId AND WPQId IS NULL"; + List listStr = new List(); + listStr.Add(new SqlParameter("@UnitWorkId", node.NodeID)); + if (!string .IsNullOrEmpty(pipecode)) + { + strSql += " and PipelineCode=@PipelineCode "; + listStr.Add(new SqlParameter("@PipelineCode", ""+ pipecode + "")); + } + SqlParameter[] parameter = listStr.ToArray(); + System.Data.DataTable dt = SQLHelper.GetDataTableRunText(strSql, parameter); + var pipeline = Funs.TableToEntity(dt); + + var hJGL_WeldJoints = (from x in Funs.DB.HJGL_WeldJoint where x.ProjectId == ProjectId select x).ToList(); + int pageindex = int.Parse(node.CommandName.Split('|')[0]); + int pageCount = int.Parse(node.CommandName.Split('|')[1]); + + if (pageindex <= pageCount) + { + pipeline = pipeline.Skip(pageSize * (pageindex - 1)).Take(pageSize).ToList(); + foreach (var item in pipeline) + { + var jotCount = (from x in hJGL_WeldJoints where x.PipelineId == item.PipelineId /*&& x.IsTwoJoint == null*/ select x).Count(); + FineUIPro.TreeNode newNode = new FineUIPro.TreeNode(); + newNode.Text = item.PipelineCode + "【" + jotCount.ToString() + " " + "焊口" + "】"; + newNode.NodeID = item.PipelineId; + newNode.CommandName = "管线"; + newNode.EnableClickEvent = true; + node.Nodes.Add(newNode); + } + if (pageindex < pageCount) + { + FineUIPro.TreeNode newNode = new FineUIPro.TreeNode(); + newNode.Text = "加载"; + newNode.NodeID = SQLHelper.GetNewID(); + newNode.CommandName = "加载"; + newNode.Icon = FineUIPro.Icon.ArrowDown; + newNode.EnableClickEvent = true; + node.Nodes.Add(newNode); + } + } + } + else + { + var pipeline = (from x in Funs.DB.HJGL_Pipeline + where x.ProjectId == ProjectId && x.UnitWorkId == node.NodeID + && x.PipelineCode.Contains(pipecode) + orderby x.PipelineCode + select x).ToList(); + var hJGL_WeldJoints = (from x in Funs.DB.HJGL_WeldJoint where x.ProjectId == ProjectId select x).ToList(); + int pageindex = int.Parse(node.CommandName.Split('|')[0]); + int pageCount = int.Parse(node.CommandName.Split('|')[1]); + if (pageindex <= pageCount) + { + pipeline = pipeline.Skip(pageSize * (pageindex - 1)).Take(pageSize).ToList(); + foreach (var item in pipeline) + { + var jotCount = (from x in hJGL_WeldJoints where x.PipelineId == item.PipelineId /*&& x.IsTwoJoint == null*/ select x).Count(); + FineUIPro.TreeNode newNode = new FineUIPro.TreeNode(); + newNode.Text = item.PipelineCode + "【" + jotCount.ToString() + " " + "焊口" + "】"; + newNode.NodeID = item.PipelineId; + newNode.CommandName = "管线"; + newNode.EnableClickEvent = true; + node.Nodes.Add(newNode); + } + if (pageindex < pageCount) + { + FineUIPro.TreeNode newNode = new FineUIPro.TreeNode(); + newNode.Text = "加载"; + newNode.NodeID = SQLHelper.GetNewID(); + newNode.CommandName = "加载"; + newNode.Icon = FineUIPro.Icon.ArrowDown; + newNode.EnableClickEvent = true; + node.Nodes.Add(newNode); + } + } + + } + } } } diff --git a/SGGL/FineUIPro.Web/ErrLog.txt b/SGGL/FineUIPro.Web/ErrLog.txt index e69de29b..f49adb02 100644 --- a/SGGL/FineUIPro.Web/ErrLog.txt +++ b/SGGL/FineUIPro.Web/ErrLog.txt @@ -0,0 +1,3665 @@ + +错误信息开始=====> +错误类型:ArgumentException +错误信息:列“Capacity”不属于表 。 +错误堆栈: + 在 System.Data.DataRow.GetDataColumn(String columnName) + 在 System.Data.DataRow.get_Item(String columnName) + 在 BLL.Funs.TableToEntity[T](DataTable dt) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 1074 + 在 FineUIPro.Web.HJGL.DataImport.MaterialInformation.InitTreeMenu() 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\FineUIPro.Web\HJGL\DataImport\MaterialInformation.aspx.cs:行号 164 + 在 FineUIPro.Web.HJGL.DataImport.MaterialInformation.Page_Load(Object sender, EventArgs e) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\FineUIPro.Web\HJGL\DataImport\MaterialInformation.aspx.cs:行号 24 + 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 在 System.EventHandler.Invoke(Object sender, EventArgs e) + 在 System.Web.UI.Control.OnLoad(EventArgs e) + 在 System.Web.UI.Control.LoadRecursive() + 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +出错时间:02/20/2023 16:24:35 +出错文件:http://localhost:8899/HJGL/DataImport/MaterialInformation.aspx +IP地址:::1 +操作人员:JT + +出错时间:02/20/2023 16:24:35 + + +错误信息开始=====> +错误类型:ArgumentException +错误信息:列“Capacity”不属于表 。 +错误堆栈: + 在 System.Data.DataRow.GetDataColumn(String columnName) + 在 System.Data.DataRow.get_Item(String columnName) + 在 BLL.Funs.TableToEntity[T](DataTable dt) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 1074 + 在 FineUIPro.Web.HJGL.DataImport.MaterialInformation.InitTreeMenu() 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\FineUIPro.Web\HJGL\DataImport\MaterialInformation.aspx.cs:行号 164 + 在 FineUIPro.Web.HJGL.DataImport.MaterialInformation.Page_Load(Object sender, EventArgs e) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\FineUIPro.Web\HJGL\DataImport\MaterialInformation.aspx.cs:行号 24 + 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 在 System.EventHandler.Invoke(Object sender, EventArgs e) + 在 System.Web.UI.Control.OnLoad(EventArgs e) + 在 System.Web.UI.Control.LoadRecursive() + 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +出错时间:02/20/2023 16:26:15 +出错文件:http://localhost:8899/HJGL/DataImport/MaterialInformation.aspx +IP地址:::1 +操作人员:JT + +出错时间:02/20/2023 16:26:15 + + +错误信息开始=====> +错误类型:ArgumentException +错误信息:列“Capacity”不属于表 。 +错误堆栈: + 在 System.Data.DataRow.GetDataColumn(String columnName) + 在 System.Data.DataRow.get_Item(String columnName) + 在 BLL.Funs.TableToEntity[T](DataTable dt) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 1074 + 在 FineUIPro.Web.HJGL.DataImport.MaterialInformation.InitTreeMenu() 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\FineUIPro.Web\HJGL\DataImport\MaterialInformation.aspx.cs:行号 164 + 在 FineUIPro.Web.HJGL.DataImport.MaterialInformation.Page_Load(Object sender, EventArgs e) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\FineUIPro.Web\HJGL\DataImport\MaterialInformation.aspx.cs:行号 24 + 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 在 System.EventHandler.Invoke(Object sender, EventArgs e) + 在 System.Web.UI.Control.OnLoad(EventArgs e) + 在 System.Web.UI.Control.LoadRecursive() + 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +出错时间:02/20/2023 16:29:36 +出错文件:http://localhost:8899/HJGL/DataImport/MaterialInformation.aspx +IP地址:::1 +操作人员:JT + +出错时间:02/20/2023 16:29:36 + + +错误信息开始=====> +错误类型:ArgumentException +错误信息:列“PipelineCode”不属于表 。 +错误堆栈: + 在 System.Data.DataRow.GetDataColumn(String columnName) + 在 System.Data.DataRow.get_Item(String columnName) + 在 BLL.Funs.TableToEntity[T](DataTable dt) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 1074 + 在 FineUIPro.Web.HJGL.DataImport.MaterialInformation.InitTreeMenu() 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\FineUIPro.Web\HJGL\DataImport\MaterialInformation.aspx.cs:行号 164 + 在 FineUIPro.Web.HJGL.DataImport.MaterialInformation.Page_Load(Object sender, EventArgs e) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\FineUIPro.Web\HJGL\DataImport\MaterialInformation.aspx.cs:行号 24 + 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 在 System.EventHandler.Invoke(Object sender, EventArgs e) + 在 System.Web.UI.Control.OnLoad(EventArgs e) + 在 System.Web.UI.Control.LoadRecursive() + 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +出错时间:02/20/2023 16:31:50 +出错文件:http://localhost:8899/HJGL/DataImport/MaterialInformation.aspx +IP地址:::1 +操作人员:JT + +出错时间:02/20/2023 16:31:50 + + +错误信息开始=====> +错误类型:HttpParseException +错误信息:类型“FineUIPro.Grid”不具有名为“ExpandOnDblClick”的公共属性。 +错误堆栈: + 在 System.Web.UI.TemplateParser.ProcessException(Exception ex) + 在 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) + 在 System.Web.UI.TemplateParser.ParseString(String text, VirtualPath virtualPath, Encoding fileEncoding) +----错误类型:HttpException +----错误信息: +----类型“FineUIPro.Grid”不具有名为“ExpandOnDblClick”的公共属性。 +----错误堆栈: + 在 System.Web.UI.ControlBuilder.AddProperty(String filter, String name, String value, Boolean mainDirectiveMode) + 在 System.Web.UI.ControlBuilder.PreprocessAttribute(String filter, String attribname, String attribvalue, Boolean mainDirectiveMode, Int32 line, Int32 column) + 在 System.Web.UI.ControlBuilder.PreprocessAttributes(ParsedAttributeCollection attribs) + 在 System.Web.UI.ControlBuilder.Init(TemplateParser parser, ControlBuilder parentBuilder, Type type, String tagName, String id, IDictionary attribs) + 在 System.Web.UI.ControlBuilder.CreateBuilderFromType(TemplateParser parser, ControlBuilder parentBuilder, Type type, String tagName, String id, IDictionary attribs, Int32 line, String sourceFileName) + 在 System.Web.UI.ControlBuilder.CreateChildBuilder(String filter, String tagName, IDictionary attribs, TemplateParser parser, ControlBuilder parentBuilder, String id, Int32 line, VirtualPath virtualPath, Type& childType, Boolean defaultProperty) + 在 System.Web.UI.TemplateParser.ProcessBeginTag(Match match, String inputText) + 在 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) +出错时间:02/20/2023 17:04:07 +出错文件:http://localhost:8899/HJGL/WeldingManage/WeldingConDate.aspx +IP地址:::1 + +出错时间:02/20/2023 17:04:07 + + +错误信息开始=====> +错误类型:HttpParseException +错误信息:类型“FineUIPro.Grid”不具有名为“EnableSingleClickExpand”的公共属性。 +错误堆栈: + 在 System.Web.UI.TemplateParser.ProcessException(Exception ex) + 在 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) + 在 System.Web.UI.TemplateParser.ParseString(String text, VirtualPath virtualPath, Encoding fileEncoding) +----错误类型:HttpException +----错误信息: +----类型“FineUIPro.Grid”不具有名为“EnableSingleClickExpand”的公共属性。 +----错误堆栈: + 在 System.Web.UI.ControlBuilder.AddProperty(String filter, String name, String value, Boolean mainDirectiveMode) + 在 System.Web.UI.ControlBuilder.PreprocessAttribute(String filter, String attribname, String attribvalue, Boolean mainDirectiveMode, Int32 line, Int32 column) + 在 System.Web.UI.ControlBuilder.PreprocessAttributes(ParsedAttributeCollection attribs) + 在 System.Web.UI.ControlBuilder.Init(TemplateParser parser, ControlBuilder parentBuilder, Type type, String tagName, String id, IDictionary attribs) + 在 System.Web.UI.ControlBuilder.CreateBuilderFromType(TemplateParser parser, ControlBuilder parentBuilder, Type type, String tagName, String id, IDictionary attribs, Int32 line, String sourceFileName) + 在 System.Web.UI.ControlBuilder.CreateChildBuilder(String filter, String tagName, IDictionary attribs, TemplateParser parser, ControlBuilder parentBuilder, String id, Int32 line, VirtualPath virtualPath, Type& childType, Boolean defaultProperty) + 在 System.Web.UI.TemplateParser.ProcessBeginTag(Match match, String inputText) + 在 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) +出错时间:02/20/2023 17:05:22 +出错文件:http://localhost:8899/HJGL/WeldingManage/WeldingConDate.aspx +IP地址:::1 + +出错时间:02/20/2023 17:05:22 + + +错误信息开始=====> +错误类型:ArgumentException +错误信息:列“Comparer”不属于表 。 +错误堆栈: + 在 System.Data.DataRow.GetDataColumn(String columnName) + 在 System.Data.DataRow.get_Item(String columnName) + 在 BLL.Funs.TableToEntity[T](DataTable dt) + 在 BLL.PipelineService.BindTreeNodes(TreeNode node, Boolean isExitWPQId, String pipecode, String ProjectId, Int32 pageSize) + 在 FineUIPro.Web.HJGL.WeldingManage.WeldingConDate.BindNodes(TreeNode node) + 在 FineUIPro.Web.HJGL.WeldingManage.WeldingConDate.tvControlItem_TreeNodeExpanded(Object sender, TreeNodeEventArgs e) + 在 FineUIPro.Tree.OnNodeExpand(TreeNodeEventArgs e) + 在 (Tree , TreeNodeEventArgs ) + 在 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +出错时间:02/20/2023 19:39:57 +出错文件:http://localhost:8899/HJGL/WeldingManage/WeldingConDate.aspx +IP地址:::1 +操作人员:JT + +出错时间:02/20/2023 19:39:57 + + +错误信息开始=====> +错误类型:HttpCompileException +错误信息:d:\诺必达\赛鼎\SGGL_SeDin\SGGL\FineUIPro.Web\HJGL\InfoQuery\PipelineQuery.aspx(25): error CS1061: “ASP.hjgl_infoquery_pipelinequery_aspx”不包含“btnrefresh_Click”的定义,并且找不到可接受类型为“ASP.hjgl_infoquery_pipelinequery_aspx”的第一个参数的扩展方法“btnrefresh_Click”(是否缺少 using 指令或程序集引用?) +错误堆栈: + 在 System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath) + 在 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 在 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 在 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 在 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 在 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 在 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 在 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:02/20/2023 19:57:35 +出错文件:http://localhost:8899/HJGL/InfoQuery/PipelineQuery.aspx +IP地址:::1 + +出错时间:02/20/2023 19:57:35 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:29 +出错时间:02/20/2023 20:06:29 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:29 +出错时间:02/20/2023 20:06:29 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:29 +出错时间:02/20/2023 20:06:29 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:29 +出错时间:02/20/2023 20:06:29 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:29 +出错时间:02/20/2023 20:06:29 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:29 +出错时间:02/20/2023 20:06:29 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:29 +出错时间:02/20/2023 20:06:29 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:29 +出错时间:02/20/2023 20:06:29 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:29 +出错时间:02/20/2023 20:06:29 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:29 +出错时间:02/20/2023 20:06:29 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:29 +出错时间:02/20/2023 20:06:29 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:29 +出错时间:02/20/2023 20:06:29 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:29 +出错时间:02/20/2023 20:06:29 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:29 +出错时间:02/20/2023 20:06:29 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:29 +出错时间:02/20/2023 20:06:29 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:29 +出错时间:02/20/2023 20:06:29 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:29 +出错时间:02/20/2023 20:06:29 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:06:30 +出错时间:02/20/2023 20:06:30 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:40 +出错时间:02/20/2023 20:10:40 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:40 +出错时间:02/20/2023 20:10:40 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:40 +出错时间:02/20/2023 20:10:40 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:40 +出错时间:02/20/2023 20:10:40 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:40 +出错时间:02/20/2023 20:10:40 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:41 +出错时间:02/20/2023 20:10:41 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:46 +出错时间:02/20/2023 20:10:46 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:47 +出错时间:02/20/2023 20:10:47 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:51 +出错时间:02/20/2023 20:10:51 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:52 +出错时间:02/20/2023 20:10:52 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:54 +出错时间:02/20/2023 20:10:54 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:54 +出错时间:02/20/2023 20:10:54 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:54 +出错时间:02/20/2023 20:10:54 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:54 +出错时间:02/20/2023 20:10:54 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:54 +出错时间:02/20/2023 20:10:54 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:54 +出错时间:02/20/2023 20:10:54 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:54 +出错时间:02/20/2023 20:10:54 + + +错误信息开始=====> +错误类型:FormatException +错误信息:输入字符串的格式不正确。 +错误堆栈: + 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) + 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) + 在 System.Int32.Parse(String s) + 在 BLL.Funs.GetNewInt(String value) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\Common\Funs.cs:行号 507 +出错时间:02/20/2023 20:10:54 +出错时间:02/20/2023 20:10:54 + +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 +System.InvalidOperationException: 可为空的对象必须具有一个值。 + 在 System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource) + 在 System.Nullable`1.get_Value() + 在 BLL.HJGL_MaterialService.isInStockByPipeline(String pipelineid, String projectid) 位置 D:\诺必达\赛鼎\SGGL_SeDin\SGGL\BLL\HJGL\PreDesign\HJGL_MaterialService.cs:行号 353 diff --git a/SGGL/FineUIPro.Web/HJGL/DataImport/MaterialInformation.aspx b/SGGL/FineUIPro.Web/HJGL/DataImport/MaterialInformation.aspx index 2e0c91bb..8f3de89e 100644 --- a/SGGL/FineUIPro.Web/HJGL/DataImport/MaterialInformation.aspx +++ b/SGGL/FineUIPro.Web/HJGL/DataImport/MaterialInformation.aspx @@ -22,10 +22,21 @@ + EmptyText="输入查询条件" Width="180px" LabelWidth="70px"> + - + + + + + + + @@ -61,10 +72,7 @@ EmptyText="输入查询条件" AutoPostBack="true" OnTextChanged="txtWeldJointCode_TextChanged" Width="240px" LabelWidth="80px" LabelAlign="Right"> --%> - - + <%----%> - 0) { foreach (var q in unitWork1) { - int a = (from x in Funs.DB.HJGL_Pipeline where x.ProjectId == this.CurrUser.LoginProjectId && x.UnitWorkId == q.UnitWorkId select x).Count(); + string strSql = " SELECT DISTINCT [t0].[PipelineId] FROM [dbo].[HJGL_Pipeline] AS [t0]\r\nleft JOIN [dbo].[HJGL_PipeLineMat] AS [t1] ON [t0].[PipelineId] = [t1].[PipelineId]"; + strSql += "where [t0].[UnitWorkId] =@UnitWorkId "; + List listStr = new List(); + listStr.Add(new SqlParameter("@UnitWorkId", q.UnitWorkId)); + + if (!string.IsNullOrEmpty(txtMaterialCode.Text.Trim())) + { + strSql += " and [t1].[MaterialCode] like @MaterialCode"; + listStr.Add(new SqlParameter("@MaterialCode", "%" + txtMaterialCode.Text.Trim() + "%")); + + } + if (!string.IsNullOrEmpty(tvPipeCode.Text.Trim())) + { + strSql += " and [t0].[PipelineCode] like @PipelineCode"; + listStr.Add(new SqlParameter("@PipelineCode", "%" + tvPipeCode.Text.Trim() + "%")); + + } + SqlParameter[] parameter = listStr.ToArray(); + DataTable dt = SQLHelper.GetDataTableRunText(strSql, parameter); + var a = dt.Rows.Count; + + //int a = (from x in DBpipeline + // join y in dbpipeLineMat on x.PipelineId equals y.PipelineId + // where x.PipelineCode.Contains(tvPipeCode.Text.Trim()) && x.UnitWorkId == q.UnitWorkId + // && y.MaterialCode.Contains(txtMaterialCode.Text.Trim()) + // select x.PipelineId).Distinct().Count(); var u = BLL.UnitService.GetUnitByUnitId(q.UnitId); TreeNode tn1 = new TreeNode(); tn1.NodeID = q.UnitWorkId; @@ -112,9 +139,45 @@ namespace FineUIPro.Web.HJGL.DataImport } if (unitWork2.Count() > 0) { + foreach (var q in unitWork2) { - int a = (from x in Funs.DB.HJGL_Pipeline where x.ProjectId == this.CurrUser.LoginProjectId && x.UnitWorkId == q.UnitWorkId select x).Count(); + string strSql = " SELECT DISTINCT [t0].[PipelineId] FROM [dbo].[HJGL_Pipeline] AS [t0]\r\nleft JOIN [dbo].[HJGL_PipeLineMat] AS [t1] ON [t0].[PipelineId] = [t1].[PipelineId]"; + strSql += "where [t0].[UnitWorkId] =@UnitWorkId "; + List listStr = new List(); + listStr.Add(new SqlParameter("@UnitWorkId", q.UnitWorkId)); + + if (!string.IsNullOrEmpty(txtMaterialCode.Text.Trim())) + { + strSql += " and [t1].[MaterialCode] like @MaterialCode"; + listStr.Add(new SqlParameter("@MaterialCode", "%" + txtMaterialCode.Text.Trim() + "%")); + + } + if (!string.IsNullOrEmpty(tvPipeCode.Text.Trim())) + { + strSql += " and [t0].[PipelineCode] like @PipelineCode"; + listStr.Add(new SqlParameter("@PipelineCode", "%" + tvPipeCode.Text.Trim() + "%")); + + } + SqlParameter[] parameter = listStr.ToArray(); + DataTable dt = SQLHelper.GetDataTableRunText(strSql, parameter); + + var a =dt.Rows.Count; + + //var b = (from x in Funs.DB.HJGL_Pipeline + // join y in Funs.DB.HJGL_PipeLineMat on x.PipelineId equals y.PipelineId + // where x.ProjectId == this.CurrUser.LoginProjectId && x.UnitWorkId == q.UnitWorkId && y.MaterialCode.Contains(txtMaterialCode.Text.Trim()) + // select x).Distinct(); + //var b = (from x in DBpipeline + // join y in dbpipeLineMat on x.PipelineId equals y.PipelineId + // where x.PipelineCode.Contains(tvPipeCode.Text.Trim()) && x.UnitWorkId == q.UnitWorkId + // && y.MaterialCode.Contains(txtMaterialCode.Text.Trim()) + // select x.PipelineId).Distinct(); + //int a = (from x in DBpipeline + // join y in dbpipeLineMat on x.PipelineId equals y.PipelineId + // where x.PipelineCode.Contains(tvPipeCode.Text.Trim()) && x.UnitWorkId == q.UnitWorkId + // && y.MaterialCode.Contains(txtMaterialCode.Text.Trim()) + // select x.PipelineId).Distinct().Count(); var u = BLL.UnitService.GetUnitByUnitId(q.UnitId); TreeNode tn2 = new TreeNode(); tn2.NodeID = q.UnitWorkId; @@ -145,7 +208,7 @@ namespace FineUIPro.Web.HJGL.DataImport #region 暂不有 private void BindNodes(TreeNode node) { - BLL.PipelineService.BindTreeNodes(node, this.tvPipeCode.Text.Trim(), this.CurrUser.LoginProjectId, pageSize); + BLL.PipelineService.BindTreeNodes(node, this.tvPipeCode.Text.Trim(),txtMaterialCode.Text.Trim(), this.CurrUser.LoginProjectId, pageSize); } #endregion @@ -223,11 +286,11 @@ namespace FineUIPro.Web.HJGL.DataImport LEFT JOIN HJGL_Pipeline line ON pipe.PipelineId=line.PipelineId WHERE line.UnitWorkId=@UnitWorkId and line.PipeArea='1' "; List listStr = new List(); - if (!string.IsNullOrEmpty(txtMaterialCode.Text.Trim())) - { - strSql += " and lib.MaterialCode like @MaterialCode "; - listStr.Add(new SqlParameter("@MaterialCode", "%" + txtMaterialCode.Text.Trim() + "%")); - } + //if (!string.IsNullOrEmpty(txtMaterialCode.Text.Trim())) + //{ + // strSql += " and lib.MaterialCode like @MaterialCode "; + // listStr.Add(new SqlParameter("@MaterialCode", "%" + txtMaterialCode.Text.Trim() + "%")); + //} if (!string.IsNullOrEmpty(pipelineId)) { strSql += " and pipe.PipelineId=@PipelineId order by PrefabricatedComponents "; @@ -258,11 +321,11 @@ namespace FineUIPro.Web.HJGL.DataImport listStr.Add(new SqlParameter("@PipelineId", pipelineId)); } - if (!string.IsNullOrEmpty(txtMaterialCode.Text.Trim())) - { - strSql += " and lib.MaterialCode like @MaterialCode "; - listStr.Add(new SqlParameter("@MaterialCode", "%"+txtMaterialCode.Text.Trim() + "%")); - } + //if (!string.IsNullOrEmpty(txtMaterialCode.Text.Trim())) + //{ + // strSql += " and lib.MaterialCode like @MaterialCode "; + // listStr.Add(new SqlParameter("@MaterialCode", "%"+txtMaterialCode.Text.Trim() + "%")); + //} listStr.Add(new SqlParameter("@UnitWorkId", unitworkid)); SqlParameter[] parameter = listStr.ToArray(); DataTable dt = SQLHelper.GetDataTableRunText(strSql, parameter); diff --git a/SGGL/FineUIPro.Web/HJGL/DataImport/MaterialInformation.aspx.designer.cs b/SGGL/FineUIPro.Web/HJGL/DataImport/MaterialInformation.aspx.designer.cs index 58c5a512..1b351906 100644 --- a/SGGL/FineUIPro.Web/HJGL/DataImport/MaterialInformation.aspx.designer.cs +++ b/SGGL/FineUIPro.Web/HJGL/DataImport/MaterialInformation.aspx.designer.cs @@ -77,6 +77,24 @@ namespace FineUIPro.Web.HJGL.DataImport /// protected global::FineUIPro.HiddenField hdUnitWorkId; + /// + /// Toolbar2 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar Toolbar2; + + /// + /// txtMaterialCode 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtMaterialCode; + /// /// btnTreeFind 控件。 /// @@ -122,15 +140,6 @@ namespace FineUIPro.Web.HJGL.DataImport /// protected global::FineUIPro.Toolbar Toolbar3; - /// - /// txtMaterialCode 控件。 - /// - /// - /// 自动生成的字段。 - /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 - /// - protected global::FineUIPro.TextBox txtMaterialCode; - /// /// ToolbarFill1 控件。 /// diff --git a/SGGL/FineUIPro.Web/HJGL/InfoQuery/JointQuery.aspx b/SGGL/FineUIPro.Web/HJGL/InfoQuery/JointQuery.aspx index 9a669f87..28398273 100644 --- a/SGGL/FineUIPro.Web/HJGL/InfoQuery/JointQuery.aspx +++ b/SGGL/FineUIPro.Web/HJGL/InfoQuery/JointQuery.aspx @@ -24,7 +24,12 @@ - + + + + protected global::FineUIPro.TextBox tvPipeCode; + /// + /// Toolbar3 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar Toolbar3; + /// /// btnTreeFind 控件。 /// diff --git a/SGGL/FineUIPro.Web/HJGL/InfoQuery/PipelineQuery.aspx b/SGGL/FineUIPro.Web/HJGL/InfoQuery/PipelineQuery.aspx index 5812540e..4d66c513 100644 --- a/SGGL/FineUIPro.Web/HJGL/InfoQuery/PipelineQuery.aspx +++ b/SGGL/FineUIPro.Web/HJGL/InfoQuery/PipelineQuery.aspx @@ -19,9 +19,12 @@ - + --%> + + diff --git a/SGGL/FineUIPro.Web/HJGL/InfoQuery/PipelineQuery.aspx.cs b/SGGL/FineUIPro.Web/HJGL/InfoQuery/PipelineQuery.aspx.cs index 921472f9..eb6d3121 100644 --- a/SGGL/FineUIPro.Web/HJGL/InfoQuery/PipelineQuery.aspx.cs +++ b/SGGL/FineUIPro.Web/HJGL/InfoQuery/PipelineQuery.aspx.cs @@ -1,9 +1,11 @@ using BLL; +using MiniExcelLibs; using Model; using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; +using System.IO; using System.Linq; namespace FineUIPro.Web.HJGL.InfoQuery @@ -21,6 +23,7 @@ namespace FineUIPro.Web.HJGL.InfoQuery ViewState["Completed_pipeline"] = value; } } + public static List View_HJGL_Pipeline=new List(); //public string Incomplete_pipeline //{ // get @@ -134,21 +137,7 @@ namespace FineUIPro.Web.HJGL.InfoQuery protected void tvControlItem_NodeCommand(object sender, TreeCommandEventArgs e) { this.BindGrid(); - Model.Parameter3D parameter3D = new Model.Parameter3D(); - Model.ColorModel colorModel = new Model.ColorModel(); - colorModel = BLL.Project_SysSetService.GetColorModel(this.CurrUser.LoginProjectId); - parameter3D.ColorModel = colorModel; - parameter3D.TagNum = Line_No; - parameter3D.ButtonType = "2"; - parameter3D.ModelName = HJGL_DataImportService.Getlatest3DModelNameByUnitWorkId(tvControlItem.SelectedNodeID); - // parameter3D.Line_No = Line_No; - parameter3D.Transparency = colorModel.PipelineComplete; - parameter3D.Finished_color = colorModel.JointCompleteColor; - parameter3D.Incomplete_color = colorModel.JointNOCompleteColor; - - ctlAuditFlow.Url_item = BLL.Project_SysSetService.GetAvevaNetUrl_Item(this.CurrUser.LoginProjectId) + parameter3D.ModelName; - ctlAuditFlow.data = parameter3D; - ctlAuditFlow.BindData(); + } #endregion @@ -187,7 +176,7 @@ namespace FineUIPro.Web.HJGL.InfoQuery // SqlParameter[] parameter = listStr.ToArray(); // DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter); - Model.HJGL_Pipeline view_HJGL_Pipeline = new Model.HJGL_Pipeline(); + Model.View_HJGL_Pipeline view_HJGL_Pipeline = new Model.View_HJGL_Pipeline(); view_HJGL_Pipeline.ProjectId = this.CurrUser.LoginProjectId; view_HJGL_Pipeline.UnitWorkId = this.tvControlItem.SelectedNodeID; view_HJGL_Pipeline.PipelineCode = this.txtPipelineCode.Text.Trim(); @@ -201,6 +190,7 @@ namespace FineUIPro.Web.HJGL.InfoQuery view_HJGL_Pipeline.IsFinished = false; } var list = BLL.PipelineService.GetView_HJGL_Pipelines(view_HJGL_Pipeline); + View_HJGL_Pipeline = list; get3DParmeter_pipeline(list); // 2.获取当前分页数据 //var table = this.GetPagedDataTable(Grid1, tb1); @@ -212,7 +202,7 @@ namespace FineUIPro.Web.HJGL.InfoQuery } #endregion - private void get3DParmeter_pipeline(List view_HJGL_Pipelines ) + private void get3DParmeter_pipeline(List view_HJGL_Pipelines ) { if (view_HJGL_Pipelines.Any()) { @@ -284,7 +274,6 @@ namespace FineUIPro.Web.HJGL.InfoQuery #endregion #endregion - #region 查询页面 /// @@ -308,6 +297,7 @@ namespace FineUIPro.Web.HJGL.InfoQuery this.BindGrid(); } #endregion + #region 导出按钮 /// 导出按钮 /// @@ -315,15 +305,60 @@ namespace FineUIPro.Web.HJGL.InfoQuery /// protected void btnOut_Click(object sender, EventArgs e) { - Response.ClearContent(); - string filename = Funs.GetNewFileName(); - Response.AddHeader("content-disposition", "attachment; filename=" + System.Web.HttpUtility.UrlEncode("管线信息总览" + filename, System.Text.Encoding.UTF8) + ".xls"); - Response.ContentType = "application/excel"; - Response.ContentEncoding = System.Text.Encoding.UTF8; - //this.Grid1.PageSize = this.; - BindGrid(); - Response.Write(GetGridTableHtml(Grid1)); - Response.End(); + string path = Funs.RootPath + @"File\Excel\Temp\pipelineQuery.xlsx"; + path = path.Replace(".xlsx", string.Format("{0:yyyy-MM-dd-HH-mm}", DateTime.Now) + ".xlsx"); + var q = (from x in View_HJGL_Pipeline + select new + { + 管线号 = x.PipelineCode, + 是否完成=x. IsFinished, + 完成日期=x.FinishedDate, + 完成达因=x.FinishSize, + 总达因数=x.TotalDin, + 总焊口量=x.JointCount, + 单位名称=x.UnitName, + 探伤比例=x.DetectionRateCode, + 介质名称=x.MediumName, + 管道等级=x.PipingClassCode, + 图纸名称=x.SingleName, + 单线图号=x.SingleNumber, + 设计压力=x.DesignPress, + 设计温度=x.DesignTemperature, + 压力试验介质=x.TestMediumCode, + 压力试验压力=x.TestPressure, + 压力管道级别=x.PressurePipingClassCode, + 管线长度= x.PipeLenth, + 泄露试验介质= x.LeakMediumName, + 泄露试验压力=x.LeakPressure, + 吹洗要求=x.PCMediumName, + 真空试验压力=x.VacuumPressure, + 材质=x.MaterialCode, + 备注=x.Remark + }).ToList(); + MiniExcel.SaveAs(path, q); + + string fileName = "管线信息总览.xlsx"; + FileInfo info = new FileInfo(path); + long fileSize = info.Length; + System.Web.HttpContext.Current.Response.Clear(); + System.Web.HttpContext.Current.Response.ContentType = "application/x-zip-compressed"; + System.Web.HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment;filename=" + System.Web.HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8)); + System.Web.HttpContext.Current.Response.AddHeader("Content-Length", fileSize.ToString()); + System.Web.HttpContext.Current.Response.TransmitFile(path, 0, fileSize); + System.Web.HttpContext.Current.Response.Flush(); + System.Web.HttpContext.Current.Response.Close(); + File.Delete(path); + + + //Response.ClearContent(); + //string filename = Funs.GetNewFileName(); + //Response.AddHeader("content-disposition", "attachment; filename=" + System.Web.HttpUtility.UrlEncode("管线信息总览" + filename, System.Text.Encoding.UTF8) + ".xls"); + //Response.ContentType = "application/excel"; + //Response.ContentEncoding = System.Text.Encoding.UTF8; + ////this.Grid1.PageSize = this.; + //BindGrid(); + //Response.Write(GetGridTableHtml(Grid1)); + //Response.End(); } //#pragma warning disable CS0108 // “PersonList.GetGridTableHtml(Grid)”隐藏继承的成员“PageBase.GetGridTableHtml(Grid)”。如果是有意隐藏,请使用关键字 new。 @@ -411,7 +446,15 @@ namespace FineUIPro.Web.HJGL.InfoQuery protected void btnGetChart_Click(object sender, EventArgs e) { decimal PipelineComplete = 0; - decimal PipelineNoComplete = 0; + decimal PipelineNoComplete=0; + if (!string.IsNullOrEmpty(tvControlItem.SelectedNodeID)) + { + var allline = (from x in Funs.DB.HJGL_Pipeline where x.UnitWorkId == tvControlItem.SelectedNodeID select x).ToList().Count(); + var Completeline = (from x in Funs.DB.HJGL_Pipeline where x.UnitWorkId == tvControlItem.SelectedNodeID && x.IsFinished == true select x).ToList().Count(); + int NoCompleteline = allline - Completeline; + PipelineComplete = Completeline; + PipelineNoComplete = NoCompleteline; + } PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("PipelineQueryChart.aspx?PipelineComplete={0}&&PipelineNOComplete={1}", PipelineComplete, PipelineNoComplete, "编辑 - "))); } @@ -487,5 +530,24 @@ namespace FineUIPro.Web.HJGL.InfoQuery } } + + protected void btnrefresh_Click(object sender, EventArgs e) + { + Model.Parameter3D parameter3D = new Model.Parameter3D(); + Model.ColorModel colorModel = new Model.ColorModel(); + colorModel = BLL.Project_SysSetService.GetColorModel(this.CurrUser.LoginProjectId); + parameter3D.ColorModel = colorModel; + parameter3D.TagNum = Line_No; + parameter3D.ButtonType = "2"; + parameter3D.ModelName = HJGL_DataImportService.Getlatest3DModelNameByUnitWorkId(tvControlItem.SelectedNodeID); + // parameter3D.Line_No = Line_No; + parameter3D.Transparency = colorModel.PipelineComplete; + parameter3D.Finished_color = colorModel.JointCompleteColor; + parameter3D.Incomplete_color = colorModel.JointNOCompleteColor; + + ctlAuditFlow.Url_item = BLL.Project_SysSetService.GetAvevaNetUrl_Item(this.CurrUser.LoginProjectId) + parameter3D.ModelName; + ctlAuditFlow.data = parameter3D; + ctlAuditFlow.BindData(); + } } } \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/HJGL/InfoQuery/PipelineQuery.aspx.designer.cs b/SGGL/FineUIPro.Web/HJGL/InfoQuery/PipelineQuery.aspx.designer.cs index c2871ce5..ca42b21b 100644 --- a/SGGL/FineUIPro.Web/HJGL/InfoQuery/PipelineQuery.aspx.designer.cs +++ b/SGGL/FineUIPro.Web/HJGL/InfoQuery/PipelineQuery.aspx.designer.cs @@ -60,13 +60,13 @@ namespace FineUIPro.Web.HJGL.InfoQuery protected global::FineUIPro.Toolbar Toolbar1; /// - /// txtWorkArea 控件。 + /// btnrefresh 控件。 /// /// /// 自动生成的字段。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// - protected global::FineUIPro.TextBox txtWorkArea; + protected global::FineUIPro.Button btnrefresh; /// /// tvControlItem 控件。 diff --git a/SGGL/FineUIPro.Web/HJGL/PersonManage/CheckerManage.aspx b/SGGL/FineUIPro.Web/HJGL/PersonManage/CheckerManage.aspx index 142edaa6..6bc9c4c6 100644 --- a/SGGL/FineUIPro.Web/HJGL/PersonManage/CheckerManage.aspx +++ b/SGGL/FineUIPro.Web/HJGL/PersonManage/CheckerManage.aspx @@ -17,6 +17,19 @@ EnableCollapse="true" Width="300px" Title="单位名称" ShowBorder="true" Layout="VBox" ShowHeader="true" AutoScroll="true" BodyPadding="5px" IconFont="ArrowCircleLeft"> + + + + + + + + + + /// 获取按钮权限 diff --git a/SGGL/FineUIPro.Web/HJGL/PersonManage/CheckerManage.aspx.designer.cs b/SGGL/FineUIPro.Web/HJGL/PersonManage/CheckerManage.aspx.designer.cs index 5d616ac1..5e12e2fc 100644 --- a/SGGL/FineUIPro.Web/HJGL/PersonManage/CheckerManage.aspx.designer.cs +++ b/SGGL/FineUIPro.Web/HJGL/PersonManage/CheckerManage.aspx.designer.cs @@ -7,11 +7,13 @@ // //------------------------------------------------------------------------------ -namespace FineUIPro.Web.HJGL.PersonManage { - - - public partial class CheckerManage { - +namespace FineUIPro.Web.HJGL.PersonManage +{ + + + public partial class CheckerManage + { + /// /// form1 控件。 /// @@ -20,7 +22,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::System.Web.UI.HtmlControls.HtmlForm form1; - + /// /// PageManager1 控件。 /// @@ -29,7 +31,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.PageManager PageManager1; - + /// /// Panel1 控件。 /// @@ -38,7 +40,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel1; - + /// /// panelLeftRegion 控件。 /// @@ -47,7 +49,34 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel panelLeftRegion; - + + /// + /// Toolbar3 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar Toolbar3; + + /// + /// txtQueryWelderCode 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtQueryWelderCode; + + /// + /// btnQuery 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnQuery; + /// /// tvControlItem 控件。 /// @@ -56,7 +85,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Tree tvControlItem; - + /// /// panelCenterRegion 控件。 /// @@ -65,7 +94,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel panelCenterRegion; - + /// /// Toolbar1 控件。 /// @@ -74,7 +103,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Toolbar Toolbar1; - + /// /// ToolbarFill2 控件。 /// @@ -83,7 +112,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ToolbarFill ToolbarFill2; - + /// /// btnEdit 控件。 /// @@ -92,7 +121,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnEdit; - + /// /// btnDelete 控件。 /// @@ -101,7 +130,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnDelete; - + /// /// SimpleForm1 控件。 /// @@ -110,7 +139,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form SimpleForm1; - + /// /// drpUnitId 控件。 /// @@ -119,7 +148,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label drpUnitId; - + /// /// txtCheckerCode 控件。 /// @@ -128,7 +157,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label txtCheckerCode; - + /// /// txtCheckerName 控件。 /// @@ -137,7 +166,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label txtCheckerName; - + /// /// txtSex 控件。 /// @@ -146,7 +175,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label txtSex; - + /// /// txtBirthday 控件。 /// @@ -155,7 +184,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label txtBirthday; - + /// /// txtIdentityCard 控件。 /// @@ -164,7 +193,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label txtIdentityCard; - + /// /// txtCertificateCode 控件。 /// @@ -173,7 +202,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label txtCertificateCode; - + /// /// cbIsOnDuty 控件。 /// @@ -182,7 +211,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.CheckBox cbIsOnDuty; - + /// /// Grid1 控件。 /// @@ -191,7 +220,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid Grid1; - + /// /// Toolbar2 控件。 /// @@ -200,7 +229,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Toolbar Toolbar2; - + /// /// txtQualificationItem 控件。 /// @@ -209,7 +238,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtQualificationItem; - + /// /// ToolbarFill1 控件。 /// @@ -218,7 +247,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ToolbarFill ToolbarFill1; - + /// /// btnNew 控件。 /// @@ -227,7 +256,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnNew; - + /// /// ToolbarSeparator2 控件。 /// @@ -236,7 +265,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ToolbarSeparator ToolbarSeparator2; - + /// /// ToolbarText2 控件。 /// @@ -245,7 +274,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ToolbarText ToolbarText2; - + /// /// ddlPageSize 控件。 /// @@ -254,7 +283,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList ddlPageSize; - + /// /// Window1 控件。 /// @@ -263,7 +292,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Window Window1; - + /// /// Window2 控件。 /// @@ -272,7 +301,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Window Window2; - + /// /// Menu1 控件。 /// @@ -281,7 +310,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Menu Menu1; - + /// /// btnMenuEdit1 控件。 /// @@ -290,7 +319,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.MenuButton btnMenuEdit1; - + /// /// btnMenuDelete1 控件。 /// @@ -299,7 +328,7 @@ namespace FineUIPro.Web.HJGL.PersonManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.MenuButton btnMenuDelete1; - + /// /// btnView 控件。 /// diff --git a/SGGL/FineUIPro.Web/HJGL/PreDesign/PipelingDivide.aspx b/SGGL/FineUIPro.Web/HJGL/PreDesign/PipelingDivide.aspx index f68c4ece..16548c89 100644 --- a/SGGL/FineUIPro.Web/HJGL/PreDesign/PipelingDivide.aspx +++ b/SGGL/FineUIPro.Web/HJGL/PreDesign/PipelingDivide.aspx @@ -75,10 +75,7 @@ EmptyText="输入查询条件" Hidden="true" Width="180px" LabelWidth="80px" LabelAlign="Right"> - - + diff --git a/SGGL/FineUIPro.Web/HJGL/PreDesign/PipelingDivide.aspx.cs b/SGGL/FineUIPro.Web/HJGL/PreDesign/PipelingDivide.aspx.cs index 1f4368c3..726264bc 100644 --- a/SGGL/FineUIPro.Web/HJGL/PreDesign/PipelingDivide.aspx.cs +++ b/SGGL/FineUIPro.Web/HJGL/PreDesign/PipelingDivide.aspx.cs @@ -191,9 +191,15 @@ namespace FineUIPro.Web.HJGL.PreDesign view_HJGL_Pipeline.UnitWorkId = this.tvControlItem.SelectedNodeID; view_HJGL_Pipeline.PipelineCode = this.txtPipelineCode.Text.Trim(); view_HJGL_Pipeline.SingleName = this.txtSingleName.Text.Trim(); - view_HJGL_Pipeline.DesignPress=this.txtDesignPress.Text.Trim(); - // view_HJGL_Pipeline.MaterialCode=this.txtMaterialCode.Text.Trim(); - var list = BLL.PipelineService.GetView_HJGL_Pipelines(view_HJGL_Pipeline); + // view_HJGL_Pipeline.MaterialCode=this.txtMaterialCode.Text.Trim(); + var list = BLL.PipelineService.GetHJGL_PipelineList(view_HJGL_Pipeline); + if (!string .IsNullOrEmpty(this.txtMaterialCode.Text.Trim())) + { + list = (from x in list + join y in Funs.DB.HJGL_PipeLineMat on x.PipelineId equals y.PipelineId + where y.MaterialCode.Contains(txtMaterialCode.Text.Trim()) + select x).Distinct().ToList(); + } view_HJGL_Pipelines = list; // 2.获取当前分页数据 Grid1.RecordCount = list.Count(); @@ -364,8 +370,7 @@ namespace FineUIPro.Web.HJGL.PreDesign { txtPipelineCode.Text = String.Empty; txtSingleName.Text = String.Empty; - txtDesignPress.Text = String.Empty; - txtMaterialCode.Text = String.Empty; + txtMaterialCode.Text = String.Empty; BindGrid(); } diff --git a/SGGL/FineUIPro.Web/HJGL/PreDesign/PipelingDivide.aspx.designer.cs b/SGGL/FineUIPro.Web/HJGL/PreDesign/PipelingDivide.aspx.designer.cs index a0c9d2bc..f5c5add5 100644 --- a/SGGL/FineUIPro.Web/HJGL/PreDesign/PipelingDivide.aspx.designer.cs +++ b/SGGL/FineUIPro.Web/HJGL/PreDesign/PipelingDivide.aspx.designer.cs @@ -185,15 +185,6 @@ namespace FineUIPro.Web.HJGL.PreDesign /// protected global::FineUIPro.TextBox txtSingleName; - /// - /// txtDesignPress 控件。 - /// - /// - /// 自动生成的字段。 - /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 - /// - protected global::FineUIPro.TextBox txtDesignPress; - /// /// txtMaterialCode 控件。 /// diff --git a/SGGL/FineUIPro.Web/HJGL/WeldingManage/WeldMatMatch.aspx b/SGGL/FineUIPro.Web/HJGL/WeldingManage/WeldMatMatch.aspx index b71b8fbd..9b248fb7 100644 --- a/SGGL/FineUIPro.Web/HJGL/WeldingManage/WeldMatMatch.aspx +++ b/SGGL/FineUIPro.Web/HJGL/WeldingManage/WeldMatMatch.aspx @@ -38,8 +38,12 @@ - - + + + + + @@ -130,9 +134,11 @@ -