diff --git a/.gitignore b/.gitignore index 6dc12731..d097c705 100644 --- a/.gitignore +++ b/.gitignore @@ -42,3 +42,10 @@ /SGGL/FineUIPro.Web/ErrLog.txt /SGGL/FineUIPro.Web/Web.config /CreateModel2017.bat +/SGGL/FineUIPro.Web/ErrLog.txt +/.gitignore +/.gitignore +/SGGL/FineUIPro.Web/Properties/PublishProfiles/FolderProfile.pubxml +/SGGL/FineUIPro.Web/Properties/PublishProfiles/FolderProfile1.pubxml + +/SGGL/FineUIPro.Web/FileUpload/Transfer/PunchlistFrom/2024-11 diff --git a/.vs/CNCEC_SUBQHSE_WUHUAN/v17/.wsuo b/.vs/CNCEC_SUBQHSE_WUHUAN/v17/.wsuo index 8d33331d..15c953af 100644 Binary files a/.vs/CNCEC_SUBQHSE_WUHUAN/v17/.wsuo and b/.vs/CNCEC_SUBQHSE_WUHUAN/v17/.wsuo differ diff --git a/.vs/SGGL_CWCEC/v17/.wsuo b/.vs/SGGL_CWCEC/v17/.wsuo deleted file mode 100644 index 9a0da635..00000000 Binary files a/.vs/SGGL_CWCEC/v17/.wsuo and /dev/null differ diff --git a/.vs/VSWorkspaceState.json b/.vs/VSWorkspaceState.json deleted file mode 100644 index 75b31f26..00000000 --- a/.vs/VSWorkspaceState.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "ExpandedNodes": [ - "" - ], - "SelectedNode": "\\SGGL.sln", - "PreviewInSolutionExplorer": false -} \ No newline at end of file diff --git a/.vs/五环/v17/.wsuo b/.vs/五环/v17/.wsuo deleted file mode 100644 index 5792a9fe..00000000 Binary files a/.vs/五环/v17/.wsuo and /dev/null differ diff --git a/.vs/五环/v17/DocumentLayout.json b/.vs/五环/v17/DocumentLayout.json deleted file mode 100644 index 4b03ac15..00000000 --- a/.vs/五环/v17/DocumentLayout.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "Version": 1, - "WorkspaceRootPath": "D:\\\u8BFA\u5FC5\u8FBE\\\u4E94\u73AF\\", - "Documents": [], - "DocumentGroupContainers": [ - { - "Orientation": 0, - "VerticalTabListWidth": 256, - "DocumentGroups": [ - { - "DockedWidth": 200, - "SelectedChildIndex": -1, - "Children": [ - { - "$type": "Bookmark", - "Name": "ST:0:0:{cce594b6-0c39-4442-ba28-10c64ac7e89f}" - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/DataBase/版本日志/SUBQHSE_V2024-11-15-xiaj.sql b/DataBase/版本日志/SUBQHSE_V2024-11-15-xiaj.sql new file mode 100644 index 00000000..6390a1e8 --- /dev/null +++ b/DataBase/版本日志/SUBQHSE_V2024-11-15-xiaj.sql @@ -0,0 +1,24 @@ + + +--1޸Ĺֶܵ +ALTER TABLE Transfer_Piping ALTER COLUMN TotalFactor decimal(10, 2); +ALTER TABLE Transfer_Piping ALTER COLUMN CompleteFactor decimal(10, 2); +update Transfer_Piping set CompleteProportion='0'where CompleteProportion='' or CompleteProportion is null; +go +ALTER TABLE Transfer_Piping ALTER COLUMN CompleteProportion decimal(10, 2); +go + + + +--3ƽͳƱȺͱ +IF NOT EXISTS(select * from sys.columns where name='Insulation' and [object_id]=object_id(N'Transfer_SystemControl')) +BEGIN + -- + ALTER TABLE Transfer_SystemControl ADD ElectricHeatTracing nvarchar(50) NULL; + --/ + ALTER TABLE Transfer_SystemControl ADD Insulation nvarchar(50) NULL; +END +go + + + diff --git a/DataBase/版本日志/SUBQHSE_V2024-11-22-xiaj.sql b/DataBase/版本日志/SUBQHSE_V2024-11-22-xiaj.sql new file mode 100644 index 00000000..547482e5 --- /dev/null +++ b/DataBase/版本日志/SUBQHSE_V2024-11-22-xiaj.sql @@ -0,0 +1,13 @@ + +--ʷβ޸ +update Transfer_PunchlistFrom set IsMatI='Y2' where IsMatI='Y'; +update Transfer_PunchlistFrom set Punch_Type='JWD' where Punch_Type='FWD'; +go + + +update Transfer_PunchlistFrom set Sub_Sys_No='LHC1-CVL05-01-01' where Sub_Sys_No='CVL05-01'; +update Transfer_PunchlistFrom set Sub_Sys_No='LHC1-EL01-00-01' where Sub_Sys_No='EL01-01'; + +go + + diff --git a/SGGL/BLL/Common/Funs.cs b/SGGL/BLL/Common/Funs.cs index d9cfa096..4df1e5b8 100644 --- a/SGGL/BLL/Common/Funs.cs +++ b/SGGL/BLL/Common/Funs.cs @@ -10,6 +10,7 @@ namespace BLL using System.Linq; using System.Net; using System.Reflection; + using System.Security.Cryptography; using System.Text; /// @@ -1281,6 +1282,25 @@ namespace BLL IRestResponse response = client.Execute(request); return response.Content; } + public static string GetMD5(string str) + { + using (MD5 md5 = MD5.Create()) + { + // ַתΪֽ鲢ϣֵ + byte[] inputBytes = Encoding.ASCII.GetBytes(str); + byte[] hashBytes = md5.ComputeHash(inputBytes); + + // ֽתΪʮַ + StringBuilder sb = new StringBuilder(); + for (int i = 0; i < hashBytes.Length; i++) + { + sb.Append(hashBytes[i].ToString("X2")); + } + + return sb.ToString(); + } + + } } } diff --git a/SGGL/FineUIPro.Web/AttachFile/OnlineEditing.aspx b/SGGL/FineUIPro.Web/AttachFile/OnlineEditing.aspx index a8827aaf..d3a3b96f 100644 --- a/SGGL/FineUIPro.Web/AttachFile/OnlineEditing.aspx +++ b/SGGL/FineUIPro.Web/AttachFile/OnlineEditing.aspx @@ -201,7 +201,7 @@ fileInfo: { name: '', ext: '', - primary: '', + primary: urlString, creator: '', createTime: new Date('20210505') }, diff --git a/SGGL/FineUIPro.Web/AttachFile/OnlineEditingPrivate.aspx b/SGGL/FineUIPro.Web/AttachFile/OnlineEditingPrivate.aspx index ee43104d..f2e33906 100644 --- a/SGGL/FineUIPro.Web/AttachFile/OnlineEditingPrivate.aspx +++ b/SGGL/FineUIPro.Web/AttachFile/OnlineEditingPrivate.aspx @@ -1,4 +1,5 @@ <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="OnlineEditingPrivate.aspx.cs" Inherits="FineUIPro.Web.AttachFile.OnlineEditingPrivate" %> +<%@ Import Namespace="BLL" %> @@ -102,7 +103,7 @@ xhr.open(method, url, true); if (method === "POST") xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); - xhr.setRequestHeader("token", "<%=this.CurrUser.UserId%>"); + xhr.setRequestHeader("token", "<%=this.CurrUser.UserId%>"); xhr.send(queryString); xhr.onreadystatechange = function () { if (xhr.readyState === 4) { @@ -158,8 +159,9 @@ type = "mobile"; } }; - // var urlString = "https://cloud.e-iceblue.cn/demo/sample.docx"; - var urlString = "<%=BLL.Funs.SGGLUrl%>" + "<%=PCUrl%>"; + // var urlString = "https://cloud.e-iceblue.cn/demo/sample.docx"; + <%-- //var urlString = "<%=BLL.Funs.SGGLUrl%>" + "<%=PCUrl%>";--%> + var urlString = "<%=urlString%>"; var arrfn = urlString.split("."); var strp = arrfn[arrfn.length - 1]; @@ -197,77 +199,77 @@ } docEditor = new SpireCloudEditor.OpenApi("iframeEditor", { - fileAttrs: { - fileInfo: { - name: '', - ext: '', - primary: '', - creator: '', - createTime: new Date('20210505') - }, - sourceUrl: urlString, - createUrl: '', - callbackUrl: '', ////This item can be empty, but only if the 'onSave' callback function must be defined in events. If the callback function is undefined and this item is empty, Cloud Editor will not provide save function. - verification: null, //用户文件系统下载文件时若需要验证类似token的数据可以写在这里 - canEdit: true + fileAttrs: { + fileInfo: { + name: '', + ext: '', + primary: '<%=urlStringMD5%>', + creator: '', + createTime: new Date('20210505') }, - templates:"", - whiteLabel:true, - user: { - primary: '', - name: '<%=this.CurrUser.UserName%>', - canSave: true, - customization: { - public: { - common: { - whiteLabel: true, - defaultZoom: 1, - openReviewChanges: false, - permGroups: ['everyone'], //限制编辑分组 - viewVersion: false, - header: { - hideTitle: false, - defaultView: 'full' - } - }, - word: null, //doc定制 - powerpoint: null, //ppt定制 - excel: null //xls定制 + sourceUrl: urlString, + createUrl: '', + callbackUrl: '', ////This item can be empty, but only if the 'onSave' callback function must be defined in events. If the callback function is undefined and this item is empty, Cloud Editor will not provide save function. + verification: null, //用户文件系统下载文件时若需要验证类似token的数据可以写在这里 + canEdit: true + }, + templates: "", + whiteLabel: true, + user: { + primary: '', + name: '<%=this.CurrUser.UserName%>', + canSave: true, + customization: { + public: { + common: { + whiteLabel: true, + defaultZoom: 1, + openReviewChanges: false, + permGroups: ['everyone'], //限制编辑分组 + viewVersion: false, + header: { + hideTitle: false, + defaultView: 'full' + } }, - "private": { - "token": null, - "appid": null, - "appkey": null - } - } - }, - editorAttrs: { //编辑器配置 - editorWidth: '100%', - editorHeight: '100%', - editorMode: '<%=editorMode%>', - editorType: 'document', //编辑器类型,可不配置,程序根据文件类型获取,结果为 document,presentation,spreadsheet - platform: 'windows', //编辑器平台类型,可选windows, mobile, embedded - viewLanguage: 'zh', //平台界面展示语言可选en/zh - canChat: true, //是否可聊天 - canComment: true, //是否可批注 - canReview: true, - canDownload: true, - canForcesave: true, - embedded: { - saveUrl: '', - embedUrl: '', - shareUrl: '' + word: null, //doc定制 + powerpoint: null, //ppt定制 + excel: null //xls定制 }, - events: { - 'onReady': onReady, - 'onDocumentStateChange': onDocumentStateChange, - 'onError': onError, - 'onRequestEditRights': onRequestEditRights, - 'onOutdatedVersion': onOutdatedVersion, - 'onSave': callbackfn + "private": { + "token": null, + "appid": null, + "appkey": null } } }, + editorAttrs: { //编辑器配置 + editorWidth: '100%', + editorHeight: '100%', + editorMode: '<%=editorMode%>', + editorType: 'document', //编辑器类型,可不配置,程序根据文件类型获取,结果为 document,presentation,spreadsheet + platform: 'windows', //编辑器平台类型,可选windows, mobile, embedded + viewLanguage: 'zh', //平台界面展示语言可选en/zh + canChat: true, //是否可聊天 + canComment: true, //是否可批注 + canReview: true, + canDownload: true, + canForcesave: true, + embedded: { + saveUrl: '', + embedUrl: '', + shareUrl: '' + }, + events: { + 'onReady': onReady, + 'onDocumentStateChange': onDocumentStateChange, + 'onError': onError, + 'onRequestEditRights': onRequestEditRights, + 'onOutdatedVersion': onOutdatedVersion, + 'onSave': callbackfn + } + } + }, appid, appkey ); diff --git a/SGGL/FineUIPro.Web/AttachFile/OnlineEditingPrivate.aspx.cs b/SGGL/FineUIPro.Web/AttachFile/OnlineEditingPrivate.aspx.cs index b37339d9..78b061e3 100644 --- a/SGGL/FineUIPro.Web/AttachFile/OnlineEditingPrivate.aspx.cs +++ b/SGGL/FineUIPro.Web/AttachFile/OnlineEditingPrivate.aspx.cs @@ -11,7 +11,7 @@ namespace FineUIPro.Web.AttachFile public partial class OnlineEditingPrivate : PageBase { #region 定义参数 - + public string CallBackUrl { get @@ -60,6 +60,8 @@ namespace FineUIPro.Web.AttachFile ViewState["editorMode"] = value; } } + public string urlString = String.Empty; + public string urlStringMD5 = String.Empty; #endregion protected void Page_Load(object sender, EventArgs e) @@ -72,7 +74,8 @@ namespace FineUIPro.Web.AttachFile PCUrl = Request.Params["fileUrl"]; editorMode = Request.Params["editorMode"]; - + urlString = Funs.SGGLUrl + PCUrl; + urlStringMD5 = Funs.GetMD5(urlString); } } } diff --git a/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionMachine.aspx b/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionMachine.aspx index 91601a21..838acfdf 100644 --- a/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionMachine.aspx +++ b/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionMachine.aspx @@ -59,7 +59,7 @@ - + diff --git a/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionMachineDataIn.aspx.cs b/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionMachineDataIn.aspx.cs index 2360fcd0..3edb1a77 100644 --- a/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionMachineDataIn.aspx.cs +++ b/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionMachineDataIn.aspx.cs @@ -490,7 +490,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive Ins.TestCycle = pds.Rows[i][7].ToString().Trim(); - Ins.IsOnSite = pds.Rows[i][8].ToString().Trim() == "是" ? true : false; + Ins.IsVerification = pds.Rows[i][8].ToString().Trim() == "是" ? true : false; if (!string.IsNullOrEmpty(pds.Rows[i][9].ToString().Trim())) { @@ -542,7 +542,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive oldViewInfo.TestCycle = pds.Rows[i][7].ToString().Trim(); - oldViewInfo.IsOnSite = pds.Rows[i][8].ToString().Trim() == "是" ? true : false; + oldViewInfo.IsVerification = pds.Rows[i][8].ToString().Trim() == "是" ? true : false; if (!string.IsNullOrEmpty(pds.Rows[i][9].ToString().Trim())) { diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReport/NCRStatisc.aspx.cs b/SGGL/FineUIPro.Web/CQMS/ManageReport/NCRStatisc.aspx.cs index 60ca2d1f..d91d6e0f 100644 --- a/SGGL/FineUIPro.Web/CQMS/ManageReport/NCRStatisc.aspx.cs +++ b/SGGL/FineUIPro.Web/CQMS/ManageReport/NCRStatisc.aspx.cs @@ -16,7 +16,8 @@ namespace FineUIPro.Web.CQMS.ManageReport protected void Page_Load(object sender, EventArgs e) { - if (!IsPostBack) { + if (!IsPostBack) + { Model.Base_Project project = BLL.ProjectService.GetProjectByProjectId(this.CurrUser.LoginProjectId); this.txtStartDate.Text = "2015-01-01"; this.txtEndDate.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now); @@ -104,8 +105,11 @@ namespace FineUIPro.Web.CQMS.ManageReport NCRStatisc.Num = i; NCRStatisc.WorkName = item.ProfessionalName; NCRStatisc.CheckNum = managementList.Count(); - NCRStatisc.OKNum = managementList.Count(x => x.Status == "3"); - NCRStatisc.NotOKNum = managementList.Count(x => x.Status != "3"); + //NCRStatisc.OKNum = managementList.Count(x => x.Status == "3"); + //NCRStatisc.NotOKNum = managementList.Count(x => x.Status != "3"); + int okNum = managementList.Where(x => x.ImplementationFrontState.Trim().Equals("已闭合")).Count(); + NCRStatisc.OKNum = okNum; + NCRStatisc.NotOKNum = managementList.Count() - okNum; NCRStatisc.Remark = ""; if (NCRStatisc.CheckNum != 0)//被除数不能为零 { diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReport/WeekReportEdit.aspx.cs b/SGGL/FineUIPro.Web/CQMS/ManageReport/WeekReportEdit.aspx.cs index 1b5f32b6..58c8016d 100644 --- a/SGGL/FineUIPro.Web/CQMS/ManageReport/WeekReportEdit.aspx.cs +++ b/SGGL/FineUIPro.Web/CQMS/ManageReport/WeekReportEdit.aspx.cs @@ -916,7 +916,8 @@ namespace FineUIPro.Web.CQMS.ManageReport u.UnitId, u.UnitName, c.IssuedDate, - c.Status + c.Status, + c.ImplementationFrontState, }; @@ -926,8 +927,10 @@ namespace FineUIPro.Web.CQMS.ManageReport Model.NCRReportStatisc NCRStatisc = new Model.NCRReportStatisc(); NCRStatisc.Num = i; NCRStatisc.WorkName = item.UnitName; - NCRStatisc.CurrentPeriodOkNum = unitNCRStatic.Count(x => x.Status == "3"); - NCRStatisc.OKNum = AllList.Count(x => x.Status == "3"); + //NCRStatisc.CurrentPeriodOkNum = unitNCRStatic.Count(x => x.Status == "3"); + //NCRStatisc.OKNum = AllList.Count(x => x.Status == "3"); + NCRStatisc.CurrentPeriodOkNum = unitNCRStatic.Where(x => x.ImplementationFrontState.Trim().Equals("已闭合")).Count(); + NCRStatisc.OKNum = AllList.Where(x => x.ImplementationFrontState.Trim().Equals("已闭合")).Count(); NCRStatisc.CheckNum = AllList.Count(); if (NCRStatisc.CheckNum != 0)//被除数不能为零 { diff --git a/SGGL/FineUIPro.Web/ErrLog.txt b/SGGL/FineUIPro.Web/ErrLog.txt deleted file mode 100644 index aed81f67..00000000 --- a/SGGL/FineUIPro.Web/ErrLog.txt +++ /dev/null @@ -1,1306 +0,0 @@ - -错误信息开始=====> -错误类型:ArgumentException -错误信息:提供的 URI 方案“http”无效,应为“https”。 -参数名: via -错误堆栈: - 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) - 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) - 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.ChannelFactory`1.CreateChannel() - 在 System.ServiceModel.ClientBase`1.CreateChannel() - 在 System.ServiceModel.ClientBase`1.CreateChannelInternal() - 在 System.ServiceModel.ClientBase`1.get_Channel() - 在 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 13827 - 在 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2207 -出错时间:10/26/2024 12:11:08 -出错时间:10/26/2024 12:11:08 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:提供的 URI 方案“http”无效,应为“https”。 -参数名: via -错误堆栈: - 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) - 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) - 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.ChannelFactory`1.CreateChannel() - 在 System.ServiceModel.ClientBase`1.CreateChannel() - 在 System.ServiceModel.ClientBase`1.CreateChannelInternal() - 在 System.ServiceModel.ClientBase`1.get_Channel() - 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 13851 - 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2072 -出错时间:10/26/2024 12:11:08 -出错时间:10/26/2024 12:11:08 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:提供的 URI 方案“http”无效,应为“https”。 -参数名: via -错误堆栈: - 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) - 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) - 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.ChannelFactory`1.CreateChannel() - 在 System.ServiceModel.ClientBase`1.CreateChannel() - 在 System.ServiceModel.ClientBase`1.CreateChannelInternal() - 在 System.ServiceModel.ClientBase`1.get_Channel() - 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 13843 - 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1968 -出错时间:10/26/2024 12:11:08 -出错时间:10/26/2024 12:11:08 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:提供的 URI 方案“http”无效,应为“https”。 -参数名: via -错误堆栈: - 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) - 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) - 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.ChannelFactory`1.CreateChannel() - 在 System.ServiceModel.ClientBase`1.CreateChannel() - 在 System.ServiceModel.ClientBase`1.CreateChannelInternal() - 在 System.ServiceModel.ClientBase`1.get_Channel() - 在 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 13643 - 在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1910 -出错时间:10/26/2024 12:11:08 -出错时间:10/26/2024 12:11:08 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:提供的 URI 方案“http”无效,应为“https”。 -参数名: via -错误堆栈: - 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) - 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) - 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.ChannelFactory`1.CreateChannel() - 在 System.ServiceModel.ClientBase`1.CreateChannel() - 在 System.ServiceModel.ClientBase`1.CreateChannelInternal() - 在 System.ServiceModel.ClientBase`1.get_Channel() - 在 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 13827 - 在 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2207 -出错时间:10/26/2024 14:11:08 -出错时间:10/26/2024 14:11:08 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:提供的 URI 方案“http”无效,应为“https”。 -参数名: via -错误堆栈: - 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) - 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) - 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.ChannelFactory`1.CreateChannel() - 在 System.ServiceModel.ClientBase`1.CreateChannel() - 在 System.ServiceModel.ClientBase`1.CreateChannelInternal() - 在 System.ServiceModel.ClientBase`1.get_Channel() - 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 13851 - 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2072 -出错时间:10/26/2024 14:11:08 -出错时间:10/26/2024 14:11:08 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:提供的 URI 方案“http”无效,应为“https”。 -参数名: via -错误堆栈: - 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) - 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) - 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.ChannelFactory`1.CreateChannel() - 在 System.ServiceModel.ClientBase`1.CreateChannel() - 在 System.ServiceModel.ClientBase`1.CreateChannelInternal() - 在 System.ServiceModel.ClientBase`1.get_Channel() - 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 13843 - 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1968 -出错时间:10/26/2024 14:11:08 -出错时间:10/26/2024 14:11:08 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:提供的 URI 方案“http”无效,应为“https”。 -参数名: via -错误堆栈: - 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) - 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) - 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) - 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) - 在 System.ServiceModel.ChannelFactory`1.CreateChannel() - 在 System.ServiceModel.ClientBase`1.CreateChannel() - 在 System.ServiceModel.ClientBase`1.CreateChannelInternal() - 在 System.ServiceModel.ClientBase`1.get_Channel() - 在 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 13643 - 在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1910 -出错时间:10/26/2024 14:11:08 -出错时间:10/26/2024 14:11:08 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:28:31 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:28:31 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:28:31 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:28:31 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:28:33 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:28:33 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:28:34 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:28:34 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:28:35 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:28:35 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:28:35 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:28:35 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:28:35 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:28:35 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:28:36 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:28:36 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:28:36 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:28:36 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:28:37 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:28:37 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:28:42 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:28:42 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:28:43 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:28:43 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:28:43 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:28:43 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:28:43 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:28:43 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:28:44 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:28:44 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:28:44 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:28:44 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:28:44 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:28:44 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:28:44 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:28:44 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:28:45 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:28:45 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:28:46 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:28:46 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:28:46 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:28:46 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:43:54 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:43:54 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:44:03 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:44:03 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:44:03 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:44:03 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:44:04 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:44:04 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:44:27 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:44:27 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:44:27 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:44:27 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:44:30 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:44:30 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:44:31 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:44:31 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:44:33 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:44:33 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:44:34 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:44:34 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:44:34 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:44:34 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:44:35 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:44:35 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:44:35 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:44:35 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:44:35 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:44:35 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:44:36 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:44:36 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:44:36 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:44:36 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:44:36 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:44:36 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:44:37 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:44:37 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:44:37 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:44:37 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:44:40 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:44:40 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:44:40 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:44:40 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:44:44 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:44:44 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:46:38 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:46:38 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:48:40 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:48:40 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:48:45 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:48:45 - - -错误信息开始=====> -错误类型:NullReferenceException -错误信息:未将对象引用设置到对象的实例。 -错误堆栈: - 在 (Object ) - 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 在 (GridRow ) - 在 FineUIPro.GridRow.InitTemplateContainers() - 在 (GridRow ) - 在 FineUIPro.Grid.LoadControlState(Object savedState) - 在 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) - 在 System.Web.UI.Page.LoadAllState() - 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -出错时间:10/26/2024 14:48:47 -出错文件:http://localhost:8579/ProjectData/Installation.aspx -IP地址:::1 -操作人员:JT - -出错时间:10/26/2024 14:48:47 - - -错误信息开始=====> -错误类型:HttpCompileException -错误信息:g:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\JDGL\Progress\WbsManager.aspx(73): error CS1061: “ASP.jdgl_progress_wbsmanager_aspx”不包含“btnAdd_Click”的定义,并且找不到可接受类型为“ASP.jdgl_progress_wbsmanager_aspx”的第一个参数的扩展方法“btnAdd_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) -出错时间:10/26/2024 15:47:15 -出错文件:http://localhost:8579/JDGL/Progress/WbsManager.aspx -IP地址:::1 - -出错时间:10/26/2024 15:47:15 - - -错误信息开始=====> -错误类型:HttpCompileException -错误信息:g:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\JDGL\Progress\WbsManager.aspx(143): error CS1061: “ASP.jdgl_progress_wbsmanager_aspx”不包含“Window1_Close”的定义,并且找不到可接受类型为“ASP.jdgl_progress_wbsmanager_aspx”的第一个参数的扩展方法“Window1_Close”(是否缺少 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) -出错时间:10/26/2024 15:49:59 -出错文件:http://localhost:8579/JDGL/Progress/WbsManager.aspx -IP地址:::1 - -出错时间:10/26/2024 15:49:59 - - -错误信息开始=====> -错误类型:HttpParseException -错误信息:未能加载文件或程序集“Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed”或它的某一个依赖项。找到的程序集清单定义与程序集引用不匹配。 (异常来自 HRESULT:0x80131040) -错误堆栈: - 在 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) -----错误类型:FileLoadException -----错误信息: -----未能加载文件或程序集“Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed”或它的某一个依赖项。找到的程序集清单定义与程序集引用不匹配。 (异常来自 HRESULT:0x80131040) -----错误堆栈: - 在 System.Signature.GetSignature(Void* pCorSig, Int32 cCorSig, RuntimeFieldHandleInternal fieldHandle, IRuntimeMethodInfo methodHandle, RuntimeType declaringType) - 在 System.Reflection.RuntimeMethodInfo.FetchNonReturnParameters() - 在 System.Reflection.RuntimeMethodInfo.GetParametersNoCopy() - 在 System.Reflection.RuntimePropertyInfo.GetIndexParametersNoCopy() - 在 System.Reflection.RuntimePropertyInfo.GetIndexParameters() - 在 System.ComponentModel.ReflectTypeDescriptionProvider.ReflectGetProperties(Type type) - 在 System.ComponentModel.ReflectTypeDescriptionProvider.ReflectedTypeData.GetProperties() - 在 System.ComponentModel.TypeDescriptor.TypeDescriptionNode.DefaultTypeDescriptor.System.ComponentModel.ICustomTypeDescriptor.GetProperties() - 在 System.ComponentModel.TypeDescriptor.GetProperties(Type componentType) - 在 System.Web.UI.TargetFrameworkUtil.GetPropertyDescriptorCollection(Type type) - 在 System.Web.UI.TargetFrameworkUtil.GetProperties(Type type) - 在 System.Web.UI.ControlBuilder.get_PropertyDescriptors() - 在 System.Web.UI.ControlBuilder.ValidatePersistable(PropertyInfo propInfo, Boolean usingSetAttribute, Boolean mainDirectiveMode, Boolean simplePropertyEntry, String filter) - 在 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) ---------错误类型:FileLoadException ---------错误信息: ---------未能加载文件或程序集“Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed”或它的某一个依赖项。找到的程序集清单定义与程序集引用不匹配。 (异常来自 HRESULT:0x80131040) ---------错误堆栈: - 出错时间:11/01/2024 10:24:33 -出错文件:http://localhost:8579/indexProject.aspx?projectId=9e7f3262-1cd2-45b6-852f-0276fef4529e -IP地址:::1 - -出错时间:11/01/2024 10:24:33 - - -错误信息开始=====> -错误类型:HttpParseException -错误信息:类型“FineUIPro.RenderField”不具有名为“mWidth”的公共属性。 -错误堆栈: - 在 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.RenderField”不具有名为“mWidth”的公共属性。 -----错误堆栈: - 在 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) -出错时间:11/01/2024 11:29:03 -出错文件:http://localhost:8579/Transfer/Electrical.aspx -IP地址:::1 - -出错时间:11/01/2024 11:29:03 - diff --git a/SGGL/FineUIPro.Web/File/Excel/DataIn/Instrumentation导入模板.xls b/SGGL/FineUIPro.Web/File/Excel/DataIn/Instrumentation导入模板.xls index b02bca19..f4490857 100644 Binary files a/SGGL/FineUIPro.Web/File/Excel/DataIn/Instrumentation导入模板.xls and b/SGGL/FineUIPro.Web/File/Excel/DataIn/Instrumentation导入模板.xls differ diff --git a/SGGL/FineUIPro.Web/File/Excel/DataIn/Instrumentation导入模板(旧).xls b/SGGL/FineUIPro.Web/File/Excel/DataIn/Instrumentation导入模板(旧).xls new file mode 100644 index 00000000..45cf4ca9 Binary files /dev/null and b/SGGL/FineUIPro.Web/File/Excel/DataIn/Instrumentation导入模板(旧).xls differ diff --git a/SGGL/FineUIPro.Web/File/Excel/DataIn/StaticEquipment导入模板.xls b/SGGL/FineUIPro.Web/File/Excel/DataIn/StaticEquipment导入模板.xls index 53bc3cda..50260a8f 100644 Binary files a/SGGL/FineUIPro.Web/File/Excel/DataIn/StaticEquipment导入模板.xls and b/SGGL/FineUIPro.Web/File/Excel/DataIn/StaticEquipment导入模板.xls differ diff --git a/SGGL/FineUIPro.Web/File/Excel/DataIn/机具报验导入模板.xls b/SGGL/FineUIPro.Web/File/Excel/DataIn/机具报验导入模板.xls index 3ba4c985..c61e5f4a 100644 Binary files a/SGGL/FineUIPro.Web/File/Excel/DataIn/机具报验导入模板.xls and b/SGGL/FineUIPro.Web/File/Excel/DataIn/机具报验导入模板.xls differ diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj index 734d0de1..11c97548 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj @@ -1395,7 +1395,6 @@ - @@ -2293,8 +2292,6 @@ - - @@ -2351,7 +2348,6 @@ - @@ -2407,7 +2403,6 @@ - @@ -3069,7 +3064,6 @@ - @@ -19266,9 +19260,6 @@ TestRunPerformanceStandardEdit.aspx - - - @@ -19276,6 +19267,7 @@ + @@ -19329,7 +19321,7 @@ - + - - - FileSystem - FileSystem - Release - Any CPU - - True - False - E:\Package\SGGL - True - True - True - False - DonotMerge - - \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Properties/PublishProfiles/FolderProfile1.pubxml b/SGGL/FineUIPro.Web/Properties/PublishProfiles/FolderProfile1.pubxml deleted file mode 100644 index a517c0e3..00000000 --- a/SGGL/FineUIPro.Web/Properties/PublishProfiles/FolderProfile1.pubxml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - FileSystem - FileSystem - Release - Any CPU - - True - False - E:\Package\SGGL\Web - True - - \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Transfer/Chart/PunchlistFromChartNew.aspx b/SGGL/FineUIPro.Web/Transfer/Chart/PunchlistFromChartNew.aspx index 897be673..d7f7e6e4 100644 --- a/SGGL/FineUIPro.Web/Transfer/Chart/PunchlistFromChartNew.aspx +++ b/SGGL/FineUIPro.Web/Transfer/Chart/PunchlistFromChartNew.aspx @@ -18,16 +18,16 @@ - + + OnSelectedIndexChanged="ddlDateType_SelectedIndexChanged" Width="120px" LabelWidth="100px"> + OnSelectedIndexChanged="drpChartType_SelectedIndexChanged" Width="120px" LabelWidth="100px"> <%-- @@ -219,13 +219,13 @@ TitleToolTip="图形"> - + diff --git a/SGGL/FineUIPro.Web/Transfer/Chart/PunchlistFromChartNew.aspx.cs b/SGGL/FineUIPro.Web/Transfer/Chart/PunchlistFromChartNew.aspx.cs index 80e69fda..8f67f4ca 100644 --- a/SGGL/FineUIPro.Web/Transfer/Chart/PunchlistFromChartNew.aspx.cs +++ b/SGGL/FineUIPro.Web/Transfer/Chart/PunchlistFromChartNew.aspx.cs @@ -18,17 +18,17 @@ namespace FineUIPro.Web.Transfer.Chart { if (!IsPostBack) { - ddlSystemNo.Hidden = true; + ddlSubSysNo.Hidden = true; ddlDateType.Hidden = true; drpChartType.Hidden = true; BtnAnalyse.Hidden = true; - var systemNos = Funs.DB.Transfer_PunchlistFrom.Where(x => x.ProjectId == this.CurrUser.LoginProjectId).GroupBy(p => new { p.System_No }).Select(p => new { System_No = p.Key.System_No }).ToList(); + var systemNos = Funs.DB.Transfer_PunchlistFrom.Where(x => x.ProjectId == this.CurrUser.LoginProjectId).GroupBy(p => new { p.Sub_Sys_No }).Select(p => new { SubSysNo = p.Key.Sub_Sys_No }).ToList(); int indexRow = 1; - ddlSystemNo.Items.Insert(0, new FineUIPro.ListItem("ALL", "")); + ddlSubSysNo.Items.Insert(0, new FineUIPro.ListItem("ALL", "")); foreach (var t in systemNos) { - ddlSystemNo.Items.Insert(indexRow, new FineUIPro.ListItem(t.System_No, t.System_No)); + ddlSubSysNo.Items.Insert(indexRow, new FineUIPro.ListItem(t.SubSysNo, t.SubSysNo)); indexRow++; } AnalyseData(); @@ -62,13 +62,13 @@ namespace FineUIPro.Web.Transfer.Chart /// private void AnalyseData() { - string _systemNo = ddlSystemNo.SelectedValue; + string _systemNo = ddlSubSysNo.SelectedValue; if (_systemNo == null) _systemNo = ""; _systemNo = _systemNo.Trim(); //_systemNo为空则查全部 var forms = from x in Funs.DB.Transfer_PunchlistFrom - where x.ProjectId == this.CurrUser.LoginProjectId && (x.System_No == _systemNo || _systemNo == "") + where x.ProjectId == this.CurrUser.LoginProjectId && (x.Sub_Sys_No == _systemNo || _systemNo == "") select x; string _dateType = ddlDateType.SelectedValue; @@ -239,7 +239,7 @@ namespace FineUIPro.Web.Transfer.Chart /// /// /// - protected void ddlSystemNo_SelectedIndexChanged(object sender, EventArgs e) + protected void ddlSubSysNo_SelectedIndexChanged(object sender, EventArgs e) { this.AnalyseData(); BindGrid1(); @@ -322,15 +322,15 @@ namespace FineUIPro.Web.Transfer.Chart { List listStr = new List(); string _systemNo = string.Empty; - _systemNo = ddlSystemNo.SelectedValue; + _systemNo = ddlSubSysNo.SelectedValue; StringBuilder strSql = new StringBuilder(""); strSql.AppendLine(" IF OBJECT_ID('tempdb..#AllPunchlistFromSortTemp1') IS NOT NULL drop table #AllPunchlistFromSortTemp1; "); strSql.AppendLine(" IF OBJECT_ID('tempdb..#PunchlistFromSortTemp1') IS NOT NULL drop table #PunchlistFromSortTemp1; "); strSql.AppendLine(" select * INTO #AllPunchlistFromSortTemp1 from Transfer_PunchlistFrom(NOLOCK) where ProjectId=@ProjectId "); if (!string.IsNullOrWhiteSpace(_systemNo)) { - strSql.AppendLine(" AND System_No=@System_No "); - listStr.Add(new SqlParameter("@System_No", _systemNo)); + strSql.AppendLine(" AND Sub_Sys_No=@SubSysNo "); + listStr.Add(new SqlParameter("@SubSysNo", _systemNo)); } strSql.AppendLine(@" select Disc, cast(0 as decimal(18, 2)) Cat_A_Count, @@ -465,15 +465,15 @@ namespace FineUIPro.Web.Transfer.Chart { List listStr = new List(); string _systemNo = string.Empty; - _systemNo = ddlSystemNo.SelectedValue; + _systemNo = ddlSubSysNo.SelectedValue; StringBuilder strSql = new StringBuilder(""); strSql.AppendLine(" IF OBJECT_ID('tempdb..#AllPunchlistFromSortTemp2') IS NOT NULL drop table #AllPunchlistFromSortTemp2; "); strSql.AppendLine(" IF OBJECT_ID('tempdb..#PunchlistFromSortTemp2') IS NOT NULL drop table #PunchlistFromSortTemp2; "); strSql.AppendLine(" select * INTO #AllPunchlistFromSortTemp2 from Transfer_PunchlistFrom(NOLOCK) where ProjectId=@ProjectId "); if (!string.IsNullOrWhiteSpace(_systemNo)) { - strSql.AppendLine(" AND System_No=@System_No "); - listStr.Add(new SqlParameter("@System_No", _systemNo)); + strSql.AppendLine(" AND Sub_Sys_No=@SubSysNo "); + listStr.Add(new SqlParameter("@SubSysNo", _systemNo)); } strSql.AppendLine(@" select Action_By, cast(0 as decimal(18, 2)) Cat_A_Count, @@ -606,7 +606,7 @@ namespace FineUIPro.Web.Transfer.Chart { if (TabStrip1.ActiveTabIndex == 0) { - ddlSystemNo.Hidden = true; + ddlSubSysNo.Hidden = true; ddlDateType.Hidden = true; drpChartType.Hidden = true; BtnAnalyse.Hidden = true; @@ -614,7 +614,7 @@ namespace FineUIPro.Web.Transfer.Chart } else if (TabStrip1.ActiveTabIndex == 2) { - ddlSystemNo.Hidden = false; + ddlSubSysNo.Hidden = false; ddlDateType.Hidden = true; drpChartType.Hidden = true; BtnAnalyse.Hidden = false; @@ -622,7 +622,7 @@ namespace FineUIPro.Web.Transfer.Chart } else if (TabStrip1.ActiveTabIndex == 3) { - ddlSystemNo.Hidden = false; + ddlSubSysNo.Hidden = false; ddlDateType.Hidden = true; drpChartType.Hidden = true; BtnAnalyse.Hidden = false; @@ -632,14 +632,14 @@ namespace FineUIPro.Web.Transfer.Chart { ddlDateType.Hidden = true; drpChartType.Hidden = true; - ddlSystemNo.Hidden = true; + ddlSubSysNo.Hidden = true; BtnAnalyse.Hidden = false; BindGrid3(); } else { this.AnalyseData(); - ddlSystemNo.Hidden = false; + ddlSubSysNo.Hidden = false; ddlDateType.Hidden = false; drpChartType.Hidden = false; BtnAnalyse.Hidden = false; @@ -658,15 +658,15 @@ namespace FineUIPro.Web.Transfer.Chart strSql.AppendLine("IF OBJECT_ID('tempdb..#PunchlistFromProgressTemp') IS NOT NULL drop table #PunchlistFromProgressTemp; "); strSql.AppendLine(" select * INTO #AllPunchlistFromProgressTemp from Transfer_PunchlistFrom(NOLOCK) where ProjectId=@ProjectId "); - //strSql.AppendLine(" select System_No,count(System_No) SystemNoCount,cast(0 as decimal(18,2)) ActualDateCount "); + //strSql.AppendLine(" select Sub_Sys_No,count(Sub_Sys_No) SystemNoCount,cast(0 as decimal(18,2)) ActualDateCount "); //strSql.AppendLine(" ,cast(0 as decimal(18,2)) ClearedByCount,cast(0 as decimal(18,2)) ConfirmedByCount,cast(0 as decimal(18,2)) VerifiedByCount "); - //strSql.AppendLine(" INTO #PunchlistFromProgressTemp from #AllPunchlistFromProgressTemp where ProjectId = @ProjectId group by System_No "); - //strSql.AppendLine(" update a set a.ActualDateCount=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND isnull(b.Actual_Date,'')<>'') "); - //strSql.AppendLine(" ,a.ClearedByCount=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND isnull(b.Cleared_By,'')<>'') "); - //strSql.AppendLine(" ,a.ConfirmedByCount=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND isnull(b.Confirmed_By,'')<>'') "); - //strSql.AppendLine(" ,a.VerifiedByCount=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND isnull(b.Verified_By,'')<>'') "); + //strSql.AppendLine(" INTO #PunchlistFromProgressTemp from #AllPunchlistFromProgressTemp where ProjectId = @ProjectId group by Sub_Sys_No "); + //strSql.AppendLine(" update a set a.ActualDateCount=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No AND isnull(b.Actual_Date,'')<>'') "); + //strSql.AppendLine(" ,a.ClearedByCount=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No AND isnull(b.Cleared_By,'')<>'') "); + //strSql.AppendLine(" ,a.ConfirmedByCount=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No AND isnull(b.Confirmed_By,'')<>'') "); + //strSql.AppendLine(" ,a.VerifiedByCount=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No AND isnull(b.Verified_By,'')<>'') "); - strSql.AppendLine(@" select System_No, + strSql.AppendLine(@" select Sub_Sys_No, cast(0 as decimal(18, 2)) Cat_A_Count, cast(0 as decimal(18, 2)) Cat_A_Countf,cast(0 as decimal(18, 2)) Cat_A_CountPercent, cast(0 as decimal(18, 2)) Cat_A_CountWUH, cast(0 as decimal(18, 2)) Cat_A_CountBASF, cast(0 as decimal(18, 2)) Cat_B_Count, @@ -677,36 +677,36 @@ namespace FineUIPro.Web.Transfer.Chart cast(0 as decimal(18, 2)) Cat_D_Countf,cast(0 as decimal(18, 2)) Cat_D_CountPercent, cast(0 as decimal(18, 2)) Cat_D_CountWUH, cast(0 as decimal(18, 2)) Cat_D_CountBASF, cast(0 as decimal(18, 2)) allCount,cast(0 as decimal(18, 2)) allfinshedCount,cast(0 as decimal(18, 2)) allCountPercent,cast(0 as decimal(18, 2)) allWUH, cast(0 as decimal(18, 2)) allBASF INTO #PunchlistFromProgressTemp - from #AllPunchlistFromProgressTemp Group by System_No; "); + from #AllPunchlistFromProgressTemp Group by Sub_Sys_No; "); strSql.AppendLine(@" update a set - allCount=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No), - allfinshedCount=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No and (b.Required_Date is not null or b.Required_Date!='')), - allWUH=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No and (b.Confirmed_Date is not null or b.Confirmed_Date!='')), - allBASF=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No and (b.Verified_Date is not null or b.Verified_Date!='')), + allCount=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No), + allfinshedCount=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No and (b.Required_Date is not null or b.Required_Date!='')), + allWUH=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No and (b.Confirmed_Date is not null or b.Confirmed_Date!='')), + allBASF=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No and (b.Verified_Date is not null or b.Verified_Date!='')), - a.Cat_A_Count=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND (isnull(b.Cat,'')='A' or isnull(b.Cat,'')='a')), + a.Cat_A_Count=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No AND (isnull(b.Cat,'')='A' or isnull(b.Cat,'')='a')), - a.Cat_A_Countf=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND (isnull(b.Cat,'')='A' or isnull(b.Cat,'')='a') and (b.Required_Date is not null or b.Required_Date!='')), - a.Cat_A_CountWUH=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND (isnull(b.Cat,'')='A' or isnull(b.Cat,'')='a') and (b.Confirmed_Date is not null or b.Confirmed_Date!='')), - a.Cat_A_CountBASF=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND (isnull(b.Cat,'')='A' or isnull(b.Cat,'')='a') and (b.Verified_Date is not null or b.Verified_Date!='')) + a.Cat_A_Countf=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No AND (isnull(b.Cat,'')='A' or isnull(b.Cat,'')='a') and (b.Required_Date is not null or b.Required_Date!='')), + a.Cat_A_CountWUH=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No AND (isnull(b.Cat,'')='A' or isnull(b.Cat,'')='a') and (b.Confirmed_Date is not null or b.Confirmed_Date!='')), + a.Cat_A_CountBASF=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No AND (isnull(b.Cat,'')='A' or isnull(b.Cat,'')='a') and (b.Verified_Date is not null or b.Verified_Date!='')) - ,a.Cat_B_Count=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND (isnull(b.Cat,'')='B' or isnull(b.Cat,'')='b')) , + ,a.Cat_B_Count=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No AND (isnull(b.Cat,'')='B' or isnull(b.Cat,'')='b')) , - a.Cat_B_Countf=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND (isnull(b.Cat,'')='B' or isnull(b.Cat,'')='b') and (b.Required_Date is not null or b.Required_Date!='')), - a.Cat_B_CountWUH=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND (isnull(b.Cat,'')='B' or isnull(b.Cat,'')='b') and (b.Confirmed_Date is not null or b.Confirmed_Date!='')), - a.Cat_B_CountBASF=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND (isnull(b.Cat,'')='B' or isnull(b.Cat,'')='b') and (b.Verified_Date is not null or b.Verified_Date!='')) + a.Cat_B_Countf=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No AND (isnull(b.Cat,'')='B' or isnull(b.Cat,'')='b') and (b.Required_Date is not null or b.Required_Date!='')), + a.Cat_B_CountWUH=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No AND (isnull(b.Cat,'')='B' or isnull(b.Cat,'')='b') and (b.Confirmed_Date is not null or b.Confirmed_Date!='')), + a.Cat_B_CountBASF=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No AND (isnull(b.Cat,'')='B' or isnull(b.Cat,'')='b') and (b.Verified_Date is not null or b.Verified_Date!='')) - ,a.Cat_C_Count=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND (isnull(b.Cat,'')='C' or isnull(b.Cat,'')='c')) , + ,a.Cat_C_Count=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No AND (isnull(b.Cat,'')='C' or isnull(b.Cat,'')='c')) , - a.Cat_C_Countf=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND (isnull(b.Cat,'')='C' or isnull(b.Cat,'')='c') and (b.Required_Date is not null or b.Required_Date!='')), - a.Cat_C_CountWUH=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND (isnull(b.Cat,'')='C' or isnull(b.Cat,'')='c') and (b.Confirmed_Date is not null or b.Confirmed_Date!='')), - a.Cat_C_CountBASF=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND (isnull(b.Cat,'')='C' or isnull(b.Cat,'')='c') and (b.Verified_Date is not null or b.Verified_Date!='')) + a.Cat_C_Countf=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No AND (isnull(b.Cat,'')='C' or isnull(b.Cat,'')='c') and (b.Required_Date is not null or b.Required_Date!='')), + a.Cat_C_CountWUH=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No AND (isnull(b.Cat,'')='C' or isnull(b.Cat,'')='c') and (b.Confirmed_Date is not null or b.Confirmed_Date!='')), + a.Cat_C_CountBASF=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No AND (isnull(b.Cat,'')='C' or isnull(b.Cat,'')='c') and (b.Verified_Date is not null or b.Verified_Date!='')) - ,a.Cat_D_Count=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND (isnull(b.Cat,'')='D' or isnull(b.Cat,'')='d')) , - a.Cat_D_Countf=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND (isnull(b.Cat,'')='D' or isnull(b.Cat,'')='d') and (b.Required_Date is not null or b.Required_Date!='')), - a.Cat_D_CountWUH=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND (isnull(b.Cat,'')='D' or isnull(b.Cat,'')='d') and (b.Confirmed_Date is not null or b.Confirmed_Date!='')), - a.Cat_D_CountBASF=(select count(1) from #AllPunchlistFromProgressTemp b where a.System_No=b.System_No AND (isnull(b.Cat,'')='D' or isnull(b.Cat,'')='d') and (b.Verified_Date is not null or b.Verified_Date!='')) + ,a.Cat_D_Count=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No AND (isnull(b.Cat,'')='D' or isnull(b.Cat,'')='d')) , + a.Cat_D_Countf=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No AND (isnull(b.Cat,'')='D' or isnull(b.Cat,'')='d') and (b.Required_Date is not null or b.Required_Date!='')), + a.Cat_D_CountWUH=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No AND (isnull(b.Cat,'')='D' or isnull(b.Cat,'')='d') and (b.Confirmed_Date is not null or b.Confirmed_Date!='')), + a.Cat_D_CountBASF=(select count(1) from #AllPunchlistFromProgressTemp b where a.Sub_Sys_No=b.Sub_Sys_No AND (isnull(b.Cat,'')='D' or isnull(b.Cat,'')='d') and (b.Verified_Date is not null or b.Verified_Date!='')) from #PunchlistFromProgressTemp a;"); @@ -723,7 +723,7 @@ namespace FineUIPro.Web.Transfer.Chart List listStr = new List(); listStr.Add(new SqlParameter("@ProjectId", this.CurrUser.LoginProjectId)); - strSql.AppendLine(" order by System_No "); + strSql.AppendLine(" order by Sub_Sys_No "); SqlParameter[] parameter = listStr.ToArray(); DataTable tb = SQLHelper.GetDataTableRunText(strSql.ToString(), parameter); Grid3.RecordCount = tb.Rows.Count; @@ -772,14 +772,20 @@ namespace FineUIPro.Web.Transfer.Chart allBASF += Convert.ToInt32(row["allBASF"]); } - var Cat_A_CountPercent = 100 * ((float)Cat_A_Countf / (float)cat_A_Count); - var Cat_B_CountPercent = 100 * ((float)Cat_B_Countf / (float)cat_B_Count); - var Cat_C_CountPercent = 100 * ((float)Cat_C_Countf / (float)cat_C_Count); - var Cat_D_CountPercent = 100 * ((float)Cat_D_Countf / (float)cat_D_Count); - var allCountPercent = 100 * ((float)allfinshedCount / (float)allCount); + //var Cat_A_CountPercent = 100 * ((float)Cat_A_Countf / (float)cat_A_Count); + //var Cat_B_CountPercent = 100 * ((float)Cat_B_Countf / (float)cat_B_Count); + //var Cat_C_CountPercent = 100 * ((float)Cat_C_Countf / (float)cat_C_Count); + //var Cat_D_CountPercent = 100 * ((float)Cat_D_Countf / (float)cat_D_Count); + //var allCountPercent = 100 * ((float)allfinshedCount / (float)allCount); + + var Cat_A_CountPercent = Cat_A_Countf > 0 && cat_A_Count > 0 ? 100 * ((decimal)(Cat_A_Countf / cat_A_Count)) : 0; + var Cat_B_CountPercent = Cat_B_Countf > 0 && cat_B_Count > 0 ? 100 * ((decimal)(Cat_B_Countf / cat_B_Count)) : 0; + var Cat_C_CountPercent = Cat_C_Countf > 0 && cat_C_Count > 0 ? 100 * ((decimal)(Cat_C_Countf / cat_C_Count)) : 0; + var Cat_D_CountPercent = Cat_D_Countf > 0 && cat_D_Count > 0 ? 100 * ((decimal)(Cat_D_Countf / cat_D_Count)) : 0; + var allCountPercent = allfinshedCount > 0 && allCount > 0 ? 100 * ((decimal)(allfinshedCount / allCount)) : 0; JObject summary = new JObject(); - summary.Add("System_No", "合计"); + summary.Add("SubSysNo", "合计"); summary.Add("Cat_A_Count", cat_A_Count.ToString()); summary.Add("Cat_B_Count", cat_B_Count.ToString()); summary.Add("Cat_C_Count", cat_C_Count.ToString()); diff --git a/SGGL/FineUIPro.Web/Transfer/Chart/PunchlistFromChartNew.aspx.designer.cs b/SGGL/FineUIPro.Web/Transfer/Chart/PunchlistFromChartNew.aspx.designer.cs index 242da888..d8aff7bd 100644 --- a/SGGL/FineUIPro.Web/Transfer/Chart/PunchlistFromChartNew.aspx.designer.cs +++ b/SGGL/FineUIPro.Web/Transfer/Chart/PunchlistFromChartNew.aspx.designer.cs @@ -51,13 +51,13 @@ namespace FineUIPro.Web.Transfer.Chart protected global::FineUIPro.Form Form2; /// - /// ddlSystemNo 控件。 + /// ddlSubSysNo 控件。 /// /// /// 自动生成的字段。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// - protected global::FineUIPro.DropDownList ddlSystemNo; + protected global::FineUIPro.DropDownList ddlSubSysNo; /// /// ddlDateType 控件。 diff --git a/SGGL/FineUIPro.Web/Transfer/Chart/Systemstatus.aspx b/SGGL/FineUIPro.Web/Transfer/Chart/Systemstatus.aspx index a4046f7d..4251ea7c 100644 --- a/SGGL/FineUIPro.Web/Transfer/Chart/Systemstatus.aspx +++ b/SGGL/FineUIPro.Web/Transfer/Chart/Systemstatus.aspx @@ -12,149 +12,149 @@ - - + - + - - + + + - - + - - + + - + - + <%-- --%> - + - - - - - - + + - - - + - - - + + - - - + - - - - + + - - - + - - - + + - - - + - - - + + - - - + - - - + + - - - + - - - + + - - - + - + <%-- @@ -162,25 +162,25 @@ - - + --%> - - - + + - - - + - <%-- + <%-- @@ -188,17 +188,17 @@ - --%> - - - - + + + + - + @@ -269,19 +269,19 @@ HeaderText="System Status
系统状态 " TextAlign="Center" FieldType="String" /> - -
- + + - - + + @@ -291,19 +291,19 @@ - +
-
+
- + - + - \ No newline at end of file + diff --git a/SGGL/FineUIPro.Web/Transfer/LHCSystemList.aspx.cs b/SGGL/FineUIPro.Web/Transfer/LHCSystemList.aspx.cs index 7a8f8ea5..efb55a78 100644 --- a/SGGL/FineUIPro.Web/Transfer/LHCSystemList.aspx.cs +++ b/SGGL/FineUIPro.Web/Transfer/LHCSystemList.aspx.cs @@ -32,8 +32,8 @@ namespace FineUIPro.Web.Transfer { if (!IsPostBack) { - Type= Request.Params["Type"]; - if (Type=="1") + Type = Request.Params["Type"]; + if (Type == "1") { var a = Grid1; Grid1.Columns[4].Hidden = false; @@ -41,7 +41,7 @@ namespace FineUIPro.Web.Transfer GetButtonPower(); BindGrid(); - btnNew.OnClientClick = Window1.GetShowReference("LHCSystemListEdit.aspx?Type="+Type) + "return false;"; + btnNew.OnClientClick = Window1.GetShowReference("LHCSystemListEdit.aspx?Type=" + Type) + "return false;"; } } @@ -59,8 +59,8 @@ namespace FineUIPro.Web.Transfer return; } string id = Grid1.SelectedRowID; - - PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("LHCSystemListEdit.aspx?Id={0}&Type={1}", id,Type, "编辑 - "))); + + PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("LHCSystemListEdit.aspx?Id={0}&Type={1}", id, Type, "编辑 - "))); } #endregion @@ -221,10 +221,52 @@ namespace FineUIPro.Web.Transfer /// protected void btnImport_Click(object sender, EventArgs e) { - PageContext.RegisterStartupScript(Window2.GetShowReference(String.Format("LHCSystemListDataIn.aspx?Type="+Type, "导入 - "))); + PageContext.RegisterStartupScript(Window2.GetShowReference(String.Format("LHCSystemListDataIn.aspx?Type=" + Type, "导入 - "))); } #endregion + #region 导出 + + /// + /// 导出 + /// + /// + /// + protected void btnOut_Click(object sender, EventArgs e) + { + Response.ClearContent(); + string filename = Funs.GetNewFileName(); + Response.AddHeader("content-disposition", "attachment; filename=" + System.Web.HttpUtility.UrlEncode($"{(Type == "1" ? "非" : "")}工艺清单" + filename, System.Text.Encoding.UTF8) + ".xls"); + Response.ContentType = "application/excel"; + Response.ContentEncoding = System.Text.Encoding.UTF8; + this.Grid1.PageSize = 100000; + this.BindGrid(); + Response.Write(GetGridTableHtml(Grid1)); + Response.End(); + } + + #endregion + + #region 清空数据 + + /// + /// 清空数据 + /// + /// + /// + protected void btnClear_Click(object sender, EventArgs e) + { + var ProjectId = this.CurrUser.LoginProjectId; + if (!string.IsNullOrWhiteSpace(ProjectId)) + { + string strSql = $"delete from Transfer_LHCSystemList where ProjectId = '{ProjectId}' and Type = '{Type}';"; + BLL.SQLHelper.ExecutSql(strSql); + BindGrid(); + } + } + + #endregion + #region 获取按钮权限 /// /// 获取按钮权限 @@ -242,8 +284,9 @@ namespace FineUIPro.Web.Transfer { menuId = BLL.Const.Transfer_LHCSystemListMenuId0; } - else { - menuId= BLL.Const.Transfer_LHCSystemListMenuId1; + else + { + menuId = BLL.Const.Transfer_LHCSystemListMenuId1; } var buttonList = BLL.CommonService.GetAllButtonList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, menuId); @@ -252,6 +295,7 @@ namespace FineUIPro.Web.Transfer if (buttonList.Contains(BLL.Const.BtnDelete)) { this.btnMenuDel.Hidden = false; + this.btnClear.Hidden = false; } if (buttonList.Contains(BLL.Const.BtnSave)) { diff --git a/SGGL/FineUIPro.Web/Transfer/LHCSystemList.aspx.designer.cs b/SGGL/FineUIPro.Web/Transfer/LHCSystemList.aspx.designer.cs index e1eface1..a8cc65f7 100644 --- a/SGGL/FineUIPro.Web/Transfer/LHCSystemList.aspx.designer.cs +++ b/SGGL/FineUIPro.Web/Transfer/LHCSystemList.aspx.designer.cs @@ -95,6 +95,15 @@ namespace FineUIPro.Web.Transfer /// protected global::FineUIPro.Button btnNew; + /// + /// btnClear 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnClear; + /// /// btnImport 控件。 /// @@ -104,6 +113,15 @@ namespace FineUIPro.Web.Transfer /// protected global::FineUIPro.Button btnImport; + /// + /// btnOut 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnOut; + /// /// ToolbarText1 控件。 /// diff --git a/SGGL/FineUIPro.Web/Transfer/Piping.aspx b/SGGL/FineUIPro.Web/Transfer/Piping.aspx index 72acd268..0bcbfefc 100644 --- a/SGGL/FineUIPro.Web/Transfer/Piping.aspx +++ b/SGGL/FineUIPro.Web/Transfer/Piping.aspx @@ -12,19 +12,20 @@ - + - + - + - + <%----%> + @@ -39,27 +40,30 @@ - + - + + + - - + + - + - + + HeaderTextAlign="Center" MinWidth="300px"> - + @@ -67,9 +71,9 @@ HeaderTextAlign="Center" Width="120px"> + HeaderTextAlign="Center" MinWidth="180px"> - + <%-- @@ -129,50 +133,50 @@ --%> - + - - + - + + HeaderTextAlign="Center" Width="100px"> + HeaderTextAlign="Center" Width="100px"> + HeaderTextAlign="Center" Width="100px"> - + - + + HeaderTextAlign="Center" MinWidth="60px"> + HeaderTextAlign="Center" MinWidth="60px"> - - + + - - + + @@ -182,13 +186,13 @@ - + - + - + - +