diff --git a/DataBase/版本日志/SGGLDB_V2023-02-28.sql b/DataBase/版本日志/SGGLDB_V2023-02-28.sql
new file mode 100644
index 00000000..d10bdb6d
--- /dev/null
+++ b/DataBase/版本日志/SGGLDB_V2023-02-28.sql
@@ -0,0 +1,12 @@
+alter table [PHTGL_ActionPlanReview] add DepartId varchar(50)
+alter table PHTGL_BidApproveUserReview add DepartId varchar(50)
+alter table PHTGL_BidDocumentsReview add DepartId varchar(50)
+alter table PHTGL_SetSubReview add DepartId varchar(50)
+alter table PHTGL_ContractReview add DepartId varchar(50)
+
+update [PHTGL_ActionPlanReview] set DepartId =(select DepartId from Base_Depart where DepartName ='ʩ' )
+update PHTGL_BidApproveUserReview set DepartId =(select DepartId from Base_Depart where DepartName ='ʩ' )
+update PHTGL_BidDocumentsReview set DepartId =(select DepartId from Base_Depart where DepartName ='ʩ' )
+update PHTGL_SetSubReview set DepartId =(select DepartId from Base_Depart where DepartName ='ʩ' )
+update PHTGL_ContractReview set DepartId =(select DepartId from Base_Depart where DepartName ='ʩ' )
+
\ No newline at end of file
diff --git a/SGGL/BLL/API/HTGL/APIHTGLPersonService.cs b/SGGL/BLL/API/HTGL/APIHTGLPersonService.cs
index 69ae292d..e90de5b6 100644
--- a/SGGL/BLL/API/HTGL/APIHTGLPersonService.cs
+++ b/SGGL/BLL/API/HTGL/APIHTGLPersonService.cs
@@ -102,7 +102,7 @@ namespace BLL
}
// db.SubmitChanges();
- Person_PersonsService.UpdatePerson(getPerson);
+ Person_PersonsService.UpdatePerson_Persons(getPerson);
}
else
{
diff --git a/SGGL/BLL/PHTGL/BiddingManagement/ActionPlanReviewService.cs b/SGGL/BLL/PHTGL/BiddingManagement/ActionPlanReviewService.cs
index d3c046c6..1e3b9951 100644
--- a/SGGL/BLL/PHTGL/BiddingManagement/ActionPlanReviewService.cs
+++ b/SGGL/BLL/PHTGL/BiddingManagement/ActionPlanReviewService.cs
@@ -36,6 +36,7 @@ namespace BLL
table.PreliminaryMan = newtable.PreliminaryMan;
table.ProjectManager = newtable.ProjectManager;
table.DeputyGeneralManager = newtable.DeputyGeneralManager;
+ table.DepartId = newtable.DepartId;
Funs.DB.PHTGL_ActionPlanReview.InsertOnSubmit(table);
Funs.DB.SubmitChanges();
}
@@ -57,6 +58,8 @@ namespace BLL
table.PreliminaryMan = newtable.PreliminaryMan;
table.ProjectManager = newtable.ProjectManager;
table.DeputyGeneralManager = newtable.DeputyGeneralManager;
+ table.DepartId = newtable.DepartId;
+
Funs.DB.SubmitChanges();
}
diff --git a/SGGL/BLL/PHTGL/BiddingManagement/BidApproveUserReviewService.cs b/SGGL/BLL/PHTGL/BiddingManagement/BidApproveUserReviewService.cs
index cc2b0e26..4f02c3a8 100644
--- a/SGGL/BLL/PHTGL/BiddingManagement/BidApproveUserReviewService.cs
+++ b/SGGL/BLL/PHTGL/BiddingManagement/BidApproveUserReviewService.cs
@@ -28,6 +28,8 @@ namespace BLL
table.ProjectManager = newtable.ProjectManager;
table.Approval_Construction = newtable.Approval_Construction;
table.DeputyGeneralManager = newtable.DeputyGeneralManager;
+ table.DepartId = newtable.DepartId;
+
Funs.DB.PHTGL_BidApproveUserReview.InsertOnSubmit(table);
Funs.DB.SubmitChanges();
}
@@ -50,6 +52,8 @@ namespace BLL
table.ProjectManager = newtable.ProjectManager;
table.Approval_Construction = newtable.Approval_Construction;
table.DeputyGeneralManager = newtable.DeputyGeneralManager;
+ table.DepartId = newtable.DepartId;
+
Funs.DB.SubmitChanges();
}
diff --git a/SGGL/BLL/PHTGL/BiddingManagement/BidDocumentsReviewService.cs b/SGGL/BLL/PHTGL/BiddingManagement/BidDocumentsReviewService.cs
index 72296aac..5c828adc 100644
--- a/SGGL/BLL/PHTGL/BiddingManagement/BidDocumentsReviewService.cs
+++ b/SGGL/BLL/PHTGL/BiddingManagement/BidDocumentsReviewService.cs
@@ -35,6 +35,8 @@ namespace BLL
table.BidDocumentsName = newtable.BidDocumentsName;
table.BidDocumentsCode = newtable.BidDocumentsCode;
table.Bidding_SendTime = newtable.Bidding_SendTime;
+ table.DepartId = newtable.DepartId;
+
Funs.DB.PHTGL_BidDocumentsReview.InsertOnSubmit(table);
Funs.DB.SubmitChanges();
}
@@ -65,6 +67,8 @@ namespace BLL
table.BidDocumentsName = newtable.BidDocumentsName;
table.BidDocumentsCode = newtable.BidDocumentsCode;
table.Bidding_SendTime = newtable.Bidding_SendTime;
+ table.DepartId = newtable.DepartId;
+
Funs.DB.SubmitChanges();
}
diff --git a/SGGL/BLL/PHTGL/BiddingManagement/SetSubReviewService.cs b/SGGL/BLL/PHTGL/BiddingManagement/SetSubReviewService.cs
index 1a71e076..1c931c37 100644
--- a/SGGL/BLL/PHTGL/BiddingManagement/SetSubReviewService.cs
+++ b/SGGL/BLL/PHTGL/BiddingManagement/SetSubReviewService.cs
@@ -60,6 +60,8 @@ namespace BLL
table.ProjectManager = newtable.ProjectManager;
table.Approval_Construction = newtable.Approval_Construction;
table.IsOwenerApprove = newtable.IsOwenerApprove;
+ table.DepartId = newtable.DepartId;
+
Funs.DB.PHTGL_SetSubReview.InsertOnSubmit(table);
Funs.DB.SubmitChanges();
}
@@ -84,6 +86,8 @@ namespace BLL
table.ProjectManager = newtable.ProjectManager;
table.Approval_Construction = newtable.Approval_Construction;
table.IsOwenerApprove = newtable.IsOwenerApprove;
+ table.DepartId = newtable.DepartId;
+
Funs.DB.SubmitChanges();
}
diff --git a/SGGL/BLL/PHTGL/ContractCompile/ContractReviewService.cs b/SGGL/BLL/PHTGL/ContractCompile/ContractReviewService.cs
index 74222c2c..f7be72f6 100644
--- a/SGGL/BLL/PHTGL/ContractCompile/ContractReviewService.cs
+++ b/SGGL/BLL/PHTGL/ContractCompile/ContractReviewService.cs
@@ -151,6 +151,7 @@ namespace BLL
table.Countersign_Law2 = newtable.Countersign_Law2;
table.Idea = newtable.Idea;
table.Approval_GeneralLaw = newtable.Approval_GeneralLaw;
+ table.DepartId = newtable.DepartId;
Funs.DB.PHTGL_ContractReview.InsertOnSubmit(table);
Funs.DB.SubmitChanges();
}
@@ -186,6 +187,7 @@ namespace BLL
table.Countersign_Law2 = newtable.Countersign_Law2;
table.Idea = newtable.Idea;
table.Approval_GeneralLaw = newtable.Approval_GeneralLaw;
+ table.DepartId = newtable.DepartId;
Funs.DB.SubmitChanges();
}
diff --git a/SGGL/BLL/Person/Person_PersonsService.cs b/SGGL/BLL/Person/Person_PersonsService.cs
index db55b90a..41947113 100644
--- a/SGGL/BLL/Person/Person_PersonsService.cs
+++ b/SGGL/BLL/Person/Person_PersonsService.cs
@@ -1,5 +1,6 @@
using FineUIPro;
using Microsoft.Office.Interop.Excel;
+using Microsoft.Office.Interop.Word;
using Model;
using System;
using System.Collections;
@@ -45,7 +46,7 @@ namespace BLL
/// 人员类型
///
///
- public static IEnumerable getListData(string unitId, string departId, string projetcId, string name, string idCard, string isPost, string personType, Grid Grid1)
+ public static IEnumerable getListData(string unitId, string departId, string projetcId, string name, string idCard, string isPost, string personType,string account, Grid Grid1)
{
IQueryable getDataList = getDataLists.OrderBy(x => x.UnitId).ThenBy(x => x.DepartId);
if (!string.IsNullOrEmpty(unitId) && unitId != Const._Null)
@@ -72,6 +73,10 @@ namespace BLL
{
getDataList = getDataList.Where(e => e.PersonName.Contains(name));
}
+ if (!string.IsNullOrEmpty(account))
+ {
+ getDataList = getDataList.Where(e => e.Account.Contains(account));
+ }
if (!string.IsNullOrEmpty(idCard))
{
getDataList = getDataList.Where(e => e.IdentityCard.Contains(idCard));
@@ -812,6 +817,98 @@ namespace BLL
}
}
+ public static void UpdatePerson_Persons(Model.Person_Persons newtable)
+ {
+ using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString))
+ {
+ Model.Person_Persons table = db.Person_Persons.FirstOrDefault(x => x.PersonId == newtable.PersonId);
+ if (table != null)
+ {
+ table.PersonId = newtable.PersonId;
+ table.UnitId = newtable.UnitId;
+ table.DepartId = newtable.DepartId;
+ table.WorkPostId = newtable.WorkPostId;
+ table.JobNum = newtable.JobNum;
+ table.PersonName = newtable.PersonName;
+ table.Account = newtable.Account;
+ table.Password = newtable.Password;
+ table.IsOffice = newtable.IsOffice;
+ table.RoleIds = newtable.RoleIds;
+ table.IdentityCard = newtable.IdentityCard;
+ table.IdcardType = newtable.IdcardType;
+ table.IdcardStartDate = newtable.IdcardStartDate;
+ table.IdcardEndDate = newtable.IdcardEndDate;
+ table.IdcardForever = newtable.IdcardForever;
+ table.IdcardAddress = newtable.IdcardAddress;
+ table.Telephone = newtable.Telephone;
+ table.Sex = newtable.Sex;
+ table.Birthday = newtable.Birthday;
+ table.Address = newtable.Address;
+ table.PhotoUrl = newtable.PhotoUrl;
+ table.HeadImage = newtable.HeadImage;
+ table.QRCodeAttachUrl = newtable.QRCodeAttachUrl;
+ table.IDCardUrl = newtable.IDCardUrl;
+ table.IDCardBackUrl = newtable.IDCardBackUrl;
+ table.SignatureUrl = newtable.SignatureUrl;
+ table.IsForeign = newtable.IsForeign;
+ table.MaritalStatus = newtable.MaritalStatus;
+ table.PoliticsStatus = newtable.PoliticsStatus;
+ table.PostTitleId = newtable.PostTitleId;
+ table.PostTitleDate = newtable.PostTitleDate;
+ table.PositionId = newtable.PositionId;
+ table.Nation = newtable.Nation;
+ table.EduLevel = newtable.EduLevel;
+ table.ForeignLanguage = newtable.ForeignLanguage;
+ table.CountryCode = newtable.CountryCode;
+ table.ProvinceCode = newtable.ProvinceCode;
+ table.IsPost = newtable.IsPost;
+ table.Graduate = newtable.Graduate;
+ table.Major = newtable.Major;
+ table.IntoDate = newtable.IntoDate;
+ table.WorkDate = newtable.WorkDate;
+ table.RetirementDate = newtable.RetirementDate;
+ table.ValidityDate = newtable.ValidityDate;
+ table.OpenId = newtable.OpenId;
+ table.CurrentProjectId = newtable.CurrentProjectId;
+ table.CurrentProjectRoleId = newtable.CurrentProjectRoleId;
+ table.CurrentProjectWorkPostId = newtable.CurrentProjectWorkPostId;
+ table.LoginProjectId = newtable.LoginProjectId;
+ table.LastMenuType = newtable.LastMenuType;
+ table.LastIsOffice = newtable.LastIsOffice;
+ table.LastProjectId = newtable.LastProjectId;
+ table.DataFrom = newtable.DataFrom;
+ table.OldDataId = newtable.OldDataId;
+ table.IsCardNoOK = newtable.IsCardNoOK;
+ table.RelativeName = newtable.RelativeName;
+ table.RelativeTel = newtable.RelativeTel;
+ table.Email = newtable.Email;
+ table.CertificateId = newtable.CertificateId;
+ table.PersonType = newtable.PersonType;
+ table.MultiProject = newtable.MultiProject;
+ table.HomePageType = newtable.HomePageType;
+ if (string.IsNullOrEmpty(newtable.QRCodeAttachUrl))
+ {
+ ///生成二维码
+ table.QRCodeAttachUrl = BLL.CreateQRCodeService.CreateCode_Simple("person$" + newtable.IdentityCard);
+ }
+ db.SubmitChanges();
+ }
+ }
+
+
+
+ }
+ public static void DeletePerson_PersonsById(string PersonId)
+ {
+
+ Model.Person_Persons table = db.Person_Persons.FirstOrDefault(x => x.PersonId == PersonId);
+ if (table != null)
+ {
+ db.Person_Persons.DeleteOnSubmit(table);
+ db.SubmitChanges();
+ }
+
+ }
///
/// 更新项目人员单位
///
diff --git a/SGGL/BLL/ZHGL/RealName/SynchroSetService.cs b/SGGL/BLL/ZHGL/RealName/SynchroSetService.cs
index 686d588d..e61322ac 100644
--- a/SGGL/BLL/ZHGL/RealName/SynchroSetService.cs
+++ b/SGGL/BLL/ZHGL/RealName/SynchroSetService.cs
@@ -890,6 +890,7 @@ namespace BLL
var getCollTeam = (from x in Funs.DB.ProjectData_TeamGroup
join y in Funs.DB.Base_Project on x.ProjectId equals y.ProjectId
join z in Funs.DB.RealName_Project on y.ContractNo equals z.ProCode
+ join p in Funs.DB.Project_ProjectUnit on new { x.UnitId, x.ProjectId } equals new { p.UnitId, p.ProjectId }
join u in Funs.DB.Base_Unit on x.UnitId equals u.UnitId
join s in Funs.DB.SitePerson_Person on x.GroupLeaderId equals s.PersonId into jonPerson
from s in jonPerson.DefaultIfEmpty()
@@ -897,6 +898,7 @@ namespace BLL
&& (proCode == null || y.ContractNo == proCode)
&& u.CollCropCode != null && u.CollCropCode != ""
&& z.JTproCode != null
+ && p.UnitType != Const.ProjectUnitType_3 && p.UnitType != Const.ProjectUnitType_4
select new
{
proCode = z.JTproCode,
diff --git a/SGGL/FineUIPro.Web/ErrLog.txt b/SGGL/FineUIPro.Web/ErrLog.txt
index f49adb02..e69de29b 100644
--- a/SGGL/FineUIPro.Web/ErrLog.txt
+++ b/SGGL/FineUIPro.Web/ErrLog.txt
@@ -1,3665 +0,0 @@
-
-错误信息开始=====>
-错误类型: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/File/Word/PHTGL/合同评审、审批表.docx b/SGGL/FineUIPro.Web/File/Word/PHTGL/合同评审、审批表.docx
index 0f53c39a..44f99e54 100644
Binary files a/SGGL/FineUIPro.Web/File/Word/PHTGL/合同评审、审批表.docx and b/SGGL/FineUIPro.Web/File/Word/PHTGL/合同评审、审批表.docx differ
diff --git a/SGGL/FineUIPro.Web/File/Word/PHTGL/招标文件审批表.docx b/SGGL/FineUIPro.Web/File/Word/PHTGL/招标文件审批表.docx
index dfa12282..e03fac8c 100644
Binary files a/SGGL/FineUIPro.Web/File/Word/PHTGL/招标文件审批表.docx and b/SGGL/FineUIPro.Web/File/Word/PHTGL/招标文件审批表.docx differ
diff --git a/SGGL/FineUIPro.Web/File/Word/PHTGL/施工招标实施计划审批表.docx b/SGGL/FineUIPro.Web/File/Word/PHTGL/施工招标实施计划审批表.docx
index 94845d18..a20abf44 100644
Binary files a/SGGL/FineUIPro.Web/File/Word/PHTGL/施工招标实施计划审批表.docx and b/SGGL/FineUIPro.Web/File/Word/PHTGL/施工招标实施计划审批表.docx differ
diff --git a/SGGL/FineUIPro.Web/File/Word/PHTGL/施工招标评标小组名单审批表.docx b/SGGL/FineUIPro.Web/File/Word/PHTGL/施工招标评标小组名单审批表.docx
index 5c920265..d06c9896 100644
Binary files a/SGGL/FineUIPro.Web/File/Word/PHTGL/施工招标评标小组名单审批表.docx and b/SGGL/FineUIPro.Web/File/Word/PHTGL/施工招标评标小组名单审批表.docx differ
diff --git a/SGGL/FineUIPro.Web/File/Word/PHTGL/确定分包商审批表(用于经评审的最低投标报价法).docx b/SGGL/FineUIPro.Web/File/Word/PHTGL/确定分包商审批表(用于经评审的最低投标报价法).docx
index 67ba81b1..ede0fd0c 100644
Binary files a/SGGL/FineUIPro.Web/File/Word/PHTGL/确定分包商审批表(用于经评审的最低投标报价法).docx and b/SGGL/FineUIPro.Web/File/Word/PHTGL/确定分包商审批表(用于经评审的最低投标报价法).docx differ
diff --git a/SGGL/FineUIPro.Web/File/Word/PHTGL/确定分包商审批表(用于综合评估法).docx b/SGGL/FineUIPro.Web/File/Word/PHTGL/确定分包商审批表(用于综合评估法).docx
index 03754db4..dc9a91e6 100644
Binary files a/SGGL/FineUIPro.Web/File/Word/PHTGL/确定分包商审批表(用于综合评估法).docx and b/SGGL/FineUIPro.Web/File/Word/PHTGL/确定分包商审批表(用于综合评估法).docx differ
diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj
index 091c8ffe..4569499c 100644
--- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj
+++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj
@@ -12820,7 +12820,7 @@
True
0
/
- http://localhost:8899/
+ http://localhost:1783/
False
False
diff --git a/SGGL/FineUIPro.Web/HJGL/PreDesign/PipelingDivide.aspx b/SGGL/FineUIPro.Web/HJGL/PreDesign/PipelingDivide.aspx
index 16548c89..eb2631ee 100644
--- a/SGGL/FineUIPro.Web/HJGL/PreDesign/PipelingDivide.aspx
+++ b/SGGL/FineUIPro.Web/HJGL/PreDesign/PipelingDivide.aspx
@@ -7,6 +7,12 @@
管线信息
+