20240805 单位工程设置修改
This commit is contained in:
		
							parent
							
								
									6feffba060
								
							
						
					
					
						commit
						83340dd172
					
				| 
						 | 
					@ -0,0 +1,327 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					--获取当前人待办事项
 | 
				
			||||||
 | 
					ALTER  PROCEDURE [dbo].[Sp_Project_GetToDoItems]
 | 
				
			||||||
 | 
						@projectId NVARCHAR(50)=NULL,
 | 
				
			||||||
 | 
						@userId NVARCHAR(200)=NULL
 | 
				
			||||||
 | 
					AS
 | 
				
			||||||
 | 
					/*获取当前人待办事项*/
 | 
				
			||||||
 | 
					BEGIN
 | 
				
			||||||
 | 
					SELECT HazardRegisterId AS DataId
 | 
				
			||||||
 | 
						,'B6BE5FE0-CB84-47FF-A6C3-5AD9E1CCE079' AS MenuId
 | 
				
			||||||
 | 
						,'安全巡检待整改' AS MenuName
 | 
				
			||||||
 | 
						,register.RegisterDef AS Content
 | 
				
			||||||
 | 
						,UserId
 | 
				
			||||||
 | 
						,users.UserName
 | 
				
			||||||
 | 
						,register.RegisterDate AS DataTime
 | 
				
			||||||
 | 
						,CONVERT(varchar(100),register.RegisterDate, 23) AS DataTimeStr
 | 
				
			||||||
 | 
						,'../HSSE/HiddenInspection/HiddenRectificationRectify.aspx?HazardRegisterId='+register.HazardRegisterId AS PCUrl
 | 
				
			||||||
 | 
					FROM HSSE_Hazard_HazardRegister AS register
 | 
				
			||||||
 | 
					LEFT JOIN Sys_User AS users ON users.UserId =@userId
 | 
				
			||||||
 | 
					WHERE register.ProjectId=@projectId AND
 | 
				
			||||||
 | 
					((register.states = '1' AND (register.ResponsibleMan =@userId OR register.CCManIds LIKE ('%'+@userId+'%') ))
 | 
				
			||||||
 | 
					)
 | 
				
			||||||
 | 
					UNION ALL
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					SELECT HazardRegisterId AS DataId
 | 
				
			||||||
 | 
						,'B6BE5FE0-CB84-47FF-A6C3-5AD9E1CCE079' AS MenuId
 | 
				
			||||||
 | 
						,'安全巡检待确认' AS MenuName
 | 
				
			||||||
 | 
						,register.RegisterDef AS Content
 | 
				
			||||||
 | 
						,UserId
 | 
				
			||||||
 | 
						,users.UserName
 | 
				
			||||||
 | 
						,register.RegisterDate AS DataTime
 | 
				
			||||||
 | 
						,CONVERT(varchar(100),register.RegisterDate, 23) AS DataTimeStr
 | 
				
			||||||
 | 
						,'../HSSE/HiddenInspection/HiddenRectificationConfirm.aspx?HazardRegisterId='+register.HazardRegisterId AS PCUrl
 | 
				
			||||||
 | 
					FROM HSSE_Hazard_HazardRegister AS register
 | 
				
			||||||
 | 
					LEFT JOIN Sys_User AS users ON users.UserId =@userId
 | 
				
			||||||
 | 
					WHERE register.ProjectId=@projectId AND
 | 
				
			||||||
 | 
					register.states = '2' AND register.CheckManId =@userId
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					UNION ALL
 | 
				
			||||||
 | 
					SELECT CheckControlCode AS DataId
 | 
				
			||||||
 | 
						,'B3E99BD9-FDC7-4F15-8C3C-A7821AC9E306' AS MenuId
 | 
				
			||||||
 | 
						,'质量巡检待处理' AS MenuName
 | 
				
			||||||
 | 
						,checkControl.QuestionDef AS Content
 | 
				
			||||||
 | 
						,UserId
 | 
				
			||||||
 | 
						,users.UserName
 | 
				
			||||||
 | 
						,checkControl.CheckDate AS DataTime
 | 
				
			||||||
 | 
						,CONVERT(varchar(100),checkControl.CheckDate, 23) AS DataTimeStr
 | 
				
			||||||
 | 
						,'../CQMS/Check/ChecklistEdit.aspx?ToDo=ToDo&CheckControlCode='+checkControl.CheckControlCode AS PCUrl
 | 
				
			||||||
 | 
					FROM Check_CheckControl AS checkControl
 | 
				
			||||||
 | 
					LEFT JOIN Sys_User AS users ON users.UserId =@userId
 | 
				
			||||||
 | 
					WHERE checkControl.ProjectId=@projectId AND
 | 
				
			||||||
 | 
					checkControl.State != '7' AND checkControl.CheckControlCode in (select CheckControlCode from Check_CheckControlApprove approve where approve.ApproveType!='S' and approve.ApproveMan=@userId and approve.ApproveDate is null )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					UNION ALL
 | 
				
			||||||
 | 
					SELECT GJSXID AS DataId
 | 
				
			||||||
 | 
						,'0BEA2126-7A48-40EB-8E21-99148E91A22B' AS MenuId
 | 
				
			||||||
 | 
						,'关键事项待处理' AS MenuName
 | 
				
			||||||
 | 
						,GJSX.Detail AS Content
 | 
				
			||||||
 | 
						,users.UserId
 | 
				
			||||||
 | 
						,users.UserName
 | 
				
			||||||
 | 
						,GJSX.CreateDate AS DataTime
 | 
				
			||||||
 | 
						,CONVERT(varchar(100),GJSX.CreateDate, 23) AS DataTimeStr
 | 
				
			||||||
 | 
						,'../PZHGL/GJSX/GJSXListEdit.aspx?ToDo=ToDo&EditType=Edit&ID='+GJSXID AS PCUrl
 | 
				
			||||||
 | 
					FROM GJSX
 | 
				
			||||||
 | 
					LEFT JOIN Sys_User AS users ON users.UserId =@userId
 | 
				
			||||||
 | 
					WHERE GJSX.ProjectId=@projectId AND
 | 
				
			||||||
 | 
					GJSX.State != 0 AND (((select count(*) from GJSX_detail detail where detail.Progress_user=@userId and detail.GJSXID=GJSX.GJSXID)=0
 | 
				
			||||||
 | 
					and (select count(*) from GJSX_Process process where process.UserId=@userId and process.GJSXID=GJSX.GJSXID)>0)
 | 
				
			||||||
 | 
					or (GJSX.User_Acceptance like '%'+@userId+'%' and (select count(*) from GJSX_detail detail where detail.GJSXID=GJSX.GJSXID)=(select count(*) from GJSX_Process process where process.GJSXID=GJSX.GJSXID))
 | 
				
			||||||
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					--UNION ALL
 | 
				
			||||||
 | 
					--SELECT InspectionEquipmentId AS DataId
 | 
				
			||||||
 | 
					--	,'6c2c1e5e-1812-4e1c-a683-7125518e28c7' AS MenuId
 | 
				
			||||||
 | 
					--	,'设备材料报验待确认' AS MenuName
 | 
				
			||||||
 | 
					--	,Equipment.InspectionName AS Content
 | 
				
			||||||
 | 
					--	,UserId
 | 
				
			||||||
 | 
					--	,users.UserName
 | 
				
			||||||
 | 
					--	,Equipment.InspectionDate AS DataTime
 | 
				
			||||||
 | 
					--	,CONVERT(varchar(100),Equipment.InspectionDate, 23) AS DataTimeStr
 | 
				
			||||||
 | 
					--	,'../CQMS/Comprehensive/InspectionEquipmentEdit.aspx?ToDo=ToDo&InspectionEquipmentId='+Equipment.InspectionEquipmentId AS PCUrl
 | 
				
			||||||
 | 
					--FROM Comprehensive_InspectionEquipment AS Equipment
 | 
				
			||||||
 | 
					--LEFT JOIN Sys_User AS users ON users.UserId =@userId
 | 
				
			||||||
 | 
					--WHERE Equipment.ProjectId=@projectId and
 | 
				
			||||||
 | 
					--Equipment.Status!='3' AND Equipment.InspectionEquipmentId in (select InspectionEquipmentId from Comprehensive_InspectionEquipmentApprove approve where approve.ApproveType!='S' and approve.ApproveMan=@userId and approve.ApproveDate is null )
 | 
				
			||||||
 | 
					--UNION ALL
 | 
				
			||||||
 | 
					--SELECT InspectionPersonId AS DataId
 | 
				
			||||||
 | 
					--	,'8ed133de-5899-4687-878a-20b1f5280f18' AS MenuId
 | 
				
			||||||
 | 
					--	,'人员报验待确认' AS MenuName
 | 
				
			||||||
 | 
					--	,Person.PersonName AS Content
 | 
				
			||||||
 | 
					--	,UserId
 | 
				
			||||||
 | 
					--	,users.UserName
 | 
				
			||||||
 | 
					--	,Person.CompileDate AS DataTime
 | 
				
			||||||
 | 
					--	,CONVERT(varchar(100),Person.CompileDate, 23) AS DataTimeStr
 | 
				
			||||||
 | 
					--	,'../CQMS/Comprehensive/InspectionPersonEdit.aspx?ToDo=ToDo&InspectionPersonId='+Person.InspectionPersonId AS PCUrl
 | 
				
			||||||
 | 
					--FROM Comprehensive_InspectionPerson AS Person
 | 
				
			||||||
 | 
					--LEFT JOIN Sys_User AS users ON users.UserId =@userId
 | 
				
			||||||
 | 
					--WHERE Person.ProjectId=@projectId and
 | 
				
			||||||
 | 
					--Person.Status!='3' AND Person.InspectionPersonId in (select InspectionPersonId from Comprehensive_InspectionPersonApprove approve where approve.ApproveType!='S' and approve.ApproveMan=@userId and approve.ApproveDate is null )
 | 
				
			||||||
 | 
					--UNION ALL
 | 
				
			||||||
 | 
					--SELECT InspectionMachineId AS DataId
 | 
				
			||||||
 | 
					--	,'aa55fad1-6c51-43f5-8c99-3c6aaae79118' AS MenuId
 | 
				
			||||||
 | 
					--	,'机具报验待确认' AS MenuName
 | 
				
			||||||
 | 
					--	,Machine.InspectionMachineName AS Content
 | 
				
			||||||
 | 
					--	,UserId
 | 
				
			||||||
 | 
					--	,users.UserName
 | 
				
			||||||
 | 
					--	,Machine.CompileDate AS DataTime
 | 
				
			||||||
 | 
					--	,CONVERT(varchar(100),Machine.CompileDate, 23) AS DataTimeStr
 | 
				
			||||||
 | 
					--	,'../CQMS/Comprehensive/InspectionMachineEdit.aspx?ToDo=ToDo&InspectionMachineId='+Machine.InspectionMachineId AS PCUrl
 | 
				
			||||||
 | 
					--FROM Comprehensive_InspectionMachine AS Machine
 | 
				
			||||||
 | 
					--LEFT JOIN Sys_User AS users ON users.UserId =@userId
 | 
				
			||||||
 | 
					--WHERE Machine.ProjectId=@projectId and
 | 
				
			||||||
 | 
					--Machine.Status!='3' AND Machine.InspectionMachineId in (select InspectionMachineId from Comprehensive_InspectionMachineApprove approve where approve.ApproveType!='S' and approve.ApproveMan=@userId and approve.ApproveDate is null )
 | 
				
			||||||
 | 
					UNION ALL
 | 
				
			||||||
 | 
					SELECT ConstructSolutionId AS DataId
 | 
				
			||||||
 | 
						,'91C4BFDB-0A51-4992-99CC-EB4EC185593D' AS MenuId
 | 
				
			||||||
 | 
						,'施工方案待处理' AS MenuName
 | 
				
			||||||
 | 
						,Solution.SolutionName AS Content
 | 
				
			||||||
 | 
						,UserId
 | 
				
			||||||
 | 
						,users.UserName
 | 
				
			||||||
 | 
						,Solution.CompileDate AS DataTime
 | 
				
			||||||
 | 
						,CONVERT(varchar(100),Solution.CompileDate, 23) AS DataTimeStr
 | 
				
			||||||
 | 
						,'../CQMS/Solution/EditConstructSolution.aspx?ToDo=ToDo&ConstructSolutionId='+Solution.ConstructSolutionId AS PCUrl
 | 
				
			||||||
 | 
					FROM Solution_CQMSConstructSolution AS Solution
 | 
				
			||||||
 | 
					LEFT JOIN Sys_User AS users ON users.UserId =@userId
 | 
				
			||||||
 | 
					WHERE Solution.ProjectId=@projectId and
 | 
				
			||||||
 | 
					Solution.State!='3'
 | 
				
			||||||
 | 
					AND Solution.ConstructSolutionId in
 | 
				
			||||||
 | 
					(select top 1 ConstructSolutionId from (
 | 
				
			||||||
 | 
					SELECT Solution_CQMSConstructSolutionApprove.*
 | 
				
			||||||
 | 
					FROM Solution_CQMSConstructSolutionApprove,
 | 
				
			||||||
 | 
					(SELECT MIN([order]) AS [order],ConstructSolutionId FROM Solution_CQMSConstructSolutionApprove where ApproveType!='S' and  ApproveDate is null GROUP BY ConstructSolutionId )b
 | 
				
			||||||
 | 
					WHERE Solution_CQMSConstructSolutionApprove.[order] = b.[order] and Solution_CQMSConstructSolutionApprove.ConstructSolutionId = b.ConstructSolutionId
 | 
				
			||||||
 | 
					 ) approve
 | 
				
			||||||
 | 
					where approve.ApproveMan=@userId )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					UNION ALL
 | 
				
			||||||
 | 
					SELECT InspectionId AS DataId
 | 
				
			||||||
 | 
						,'4781f467-35bf-4cf2-aaa4-7960a175eb61' AS MenuId
 | 
				
			||||||
 | 
						,'共检通知单待处理' AS MenuName
 | 
				
			||||||
 | 
						,InspectionManagement.AcceptanceSite AS Content
 | 
				
			||||||
 | 
						,UserId
 | 
				
			||||||
 | 
						,users.UserName
 | 
				
			||||||
 | 
						,InspectionManagement.CompileDate AS DataTime
 | 
				
			||||||
 | 
						,CONVERT(varchar(100),InspectionManagement.CompileDate, 23) AS DataTimeStr
 | 
				
			||||||
 | 
						,'../CQMS/ProcessControl/InspectionNoticeEdit.aspx?View=View&InspectionId='+InspectionManagement.InspectionId AS PCUrl
 | 
				
			||||||
 | 
					FROM ProcessControl_InspectionManagement AS InspectionManagement
 | 
				
			||||||
 | 
					LEFT JOIN Sys_User AS users ON users.UserId =@userId
 | 
				
			||||||
 | 
					WHERE InspectionManagement.ProjectId=@projectId and
 | 
				
			||||||
 | 
					dateadd(day,3,InspectionManagement.CompileDate)>getdate() and InspectionManagement.AcceptanceCheckMan like '%'+@userId+'%'
 | 
				
			||||||
 | 
					UNION ALL
 | 
				
			||||||
 | 
					SELECT CheckSpecialId AS DataId
 | 
				
			||||||
 | 
						,'1B08048F-93ED-4E84-AE65-DB7917EA2DFB' AS MenuId
 | 
				
			||||||
 | 
						,'专项检查' AS MenuName
 | 
				
			||||||
 | 
						,CheckItemSet.CheckItemName AS Content
 | 
				
			||||||
 | 
						,UserId
 | 
				
			||||||
 | 
						,users.UserName
 | 
				
			||||||
 | 
						,CheckSpecial.CheckTime AS DataTime
 | 
				
			||||||
 | 
						,CONVERT(varchar(100),CheckSpecial.CheckTime, 23) AS DataTimeStr
 | 
				
			||||||
 | 
						,'../HSSE/Check/CheckSpecialView.aspx?CheckSpecialId='+CheckSpecial.CheckSpecialId AS PCUrl
 | 
				
			||||||
 | 
					FROM Check_CheckSpecial AS CheckSpecial
 | 
				
			||||||
 | 
					LEFT JOIN Sys_User AS users ON users.UserId =@userId
 | 
				
			||||||
 | 
					LEFT JOIN Technique_CheckItemSet AS CheckItemSet ON CheckItemSet.CheckItemSetId =CheckSpecial.CheckItemSetId
 | 
				
			||||||
 | 
					WHERE CheckSpecial.ProjectId=@projectId and
 | 
				
			||||||
 | 
					dateadd(day,3,CheckSpecial.CheckTime)>getdate() and CheckSpecial.PartInPersonIds like '%'+@userId+'%'
 | 
				
			||||||
 | 
					UNION ALL
 | 
				
			||||||
 | 
					SELECT CheckColligationId AS DataId
 | 
				
			||||||
 | 
						,'C198EBA8-9E23-4654-92E1-09C61105C522' AS MenuId
 | 
				
			||||||
 | 
						,'综合检查待处理' AS MenuName
 | 
				
			||||||
 | 
						,case CheckType when '0' then '周检' when '1' then '月检' else '其它' end AS Content
 | 
				
			||||||
 | 
						,users.UserId
 | 
				
			||||||
 | 
						,users.UserName
 | 
				
			||||||
 | 
						,CheckColligation.CheckTime AS DataTime
 | 
				
			||||||
 | 
						,CONVERT(varchar(100),CheckColligation.CheckTime, 23) AS DataTimeStr
 | 
				
			||||||
 | 
						,'../HSSE/Check/CheckColligationEdit.aspx?CheckColligationId='+CheckColligation.CheckColligationId AS PCUrl
 | 
				
			||||||
 | 
					FROM Check_CheckColligation AS CheckColligation
 | 
				
			||||||
 | 
					LEFT JOIN Sys_User AS users ON users.UserId =@userId
 | 
				
			||||||
 | 
					LEFT JOIN Sys_FlowOperate AS FlowOperate ON CheckColligation.CheckColligationId=FlowOperate.DataId
 | 
				
			||||||
 | 
					LEFT JOIN Sys_User AS OperateUser ON FlowOperate.OperaterId=OperateUser.UserId
 | 
				
			||||||
 | 
					WHERE CheckColligation.ProjectId=@projectId and FlowOperate.IsClosed <> 1 and FlowOperate.OperaterId=@userId
 | 
				
			||||||
 | 
					UNION ALL
 | 
				
			||||||
 | 
					SELECT PatrolPlanId AS DataId
 | 
				
			||||||
 | 
						,'D256E5C8-DC76-4F4D-BABE-A253418823F4' AS MenuId
 | 
				
			||||||
 | 
						,'风险巡检待处理' AS MenuName
 | 
				
			||||||
 | 
						,HazardListItem.HazardItems AS Content
 | 
				
			||||||
 | 
						,UserId
 | 
				
			||||||
 | 
						,users.UserName
 | 
				
			||||||
 | 
						,PatrolPlan.LimitCheckDate AS DataTime
 | 
				
			||||||
 | 
						,CONVERT(varchar(100),PatrolPlan.LimitCheckDate, 23) AS DataTimeStr
 | 
				
			||||||
 | 
						,'../HSSE/Hazard/RoutingInspectionEdit.aspx?PatrolPlanId='+PatrolPlan.PatrolPlanId AS PCUrl
 | 
				
			||||||
 | 
					FROM Hazard_PatrolPlan AS PatrolPlan
 | 
				
			||||||
 | 
					LEFT JOIN Sys_User AS users ON users.UserId =@userId
 | 
				
			||||||
 | 
					LEFT JOIN Hazard_HazardSelectedItem AS HazardListItem on HazardListItem.HazardSelectedItemId=PatrolPlan.HazardSelectedItemId
 | 
				
			||||||
 | 
					WHERE HazardListItem.ProjectId=@projectId and
 | 
				
			||||||
 | 
					dateadd(day,-3,PatrolPlan.LimitCheckDate)<getdate() and PatrolPlan.DutyPerson=@userId
 | 
				
			||||||
 | 
					and (select COUNT(*) from Hazard_RoutingInspection ri where ri.PatrolPlanId=PatrolPlan.PatrolPlanId)=0
 | 
				
			||||||
 | 
					UNION ALL
 | 
				
			||||||
 | 
					SELECT PersonQuality.PersonId AS DataId
 | 
				
			||||||
 | 
						,'EBEA762D-1F46-47C5-9EAD-759E13D9B41C' AS MenuId
 | 
				
			||||||
 | 
						,'特种作业人员资质还有'+convert(nvarchar(6),DATEDIFF(day,getdate(),PersonQuality.LimitDate))+'天过期' AS MenuName
 | 
				
			||||||
 | 
						,Person.PersonName AS Content
 | 
				
			||||||
 | 
						,UserId
 | 
				
			||||||
 | 
						,users.UserName
 | 
				
			||||||
 | 
						,PersonQuality.LimitDate AS DataTime
 | 
				
			||||||
 | 
						,CONVERT(varchar(100),PersonQuality.LimitDate, 23) AS DataTimeStr
 | 
				
			||||||
 | 
						,'../HSSE/QualityAudit/PersonQualityEdit.aspx?PersonId='+PersonQuality.PersonId AS PCUrl
 | 
				
			||||||
 | 
					FROM QualityAudit_PersonQuality AS PersonQuality
 | 
				
			||||||
 | 
					LEFT JOIN Sys_User AS users ON users.UserId =@userId
 | 
				
			||||||
 | 
					LEFT JOIN SitePerson_Person AS Person on Person.PersonId=PersonQuality.PersonId
 | 
				
			||||||
 | 
					WHERE Person.ProjectId=@projectId and Person.IsUsed=1 and  Person.InTime<getdate() and (Person.OutTime is null or Person.OutTime  >getdate() ) and
 | 
				
			||||||
 | 
					dateadd(day,-15,PersonQuality.LimitDate)<getdate() and getdate()<PersonQuality.LimitDate
 | 
				
			||||||
 | 
					UNION ALL
 | 
				
			||||||
 | 
					SELECT PersonQuality.PersonId AS DataId
 | 
				
			||||||
 | 
						,'EBEA762D-1F46-47C5-9EAD-759E13D9B41C' AS MenuId
 | 
				
			||||||
 | 
						,'特种作业人员资质已过期'+convert(nvarchar(6),DATEDIFF(day,PersonQuality.LimitDate,getdate()))+'天' AS MenuName
 | 
				
			||||||
 | 
						,Person.PersonName AS Content
 | 
				
			||||||
 | 
						,UserId
 | 
				
			||||||
 | 
						,users.UserName
 | 
				
			||||||
 | 
						,PersonQuality.LimitDate AS DataTime
 | 
				
			||||||
 | 
						,CONVERT(varchar(100),PersonQuality.LimitDate, 23) AS DataTimeStr
 | 
				
			||||||
 | 
						,'../HSSE/QualityAudit/PersonQualityEdit.aspx?PersonId='+PersonQuality.PersonId AS PCUrl
 | 
				
			||||||
 | 
					FROM QualityAudit_PersonQuality AS PersonQuality
 | 
				
			||||||
 | 
					LEFT JOIN Sys_User AS users ON users.UserId =@userId
 | 
				
			||||||
 | 
					LEFT JOIN SitePerson_Person AS Person on Person.PersonId=PersonQuality.PersonId
 | 
				
			||||||
 | 
					WHERE Person.ProjectId=@projectId and Person.IsUsed=1 and  Person.InTime<getdate() and (Person.OutTime is null or Person.OutTime  >getdate() ) and
 | 
				
			||||||
 | 
					PersonQuality.LimitDate<getdate()
 | 
				
			||||||
 | 
					UNION ALL
 | 
				
			||||||
 | 
					SELECT InspectionPersonId AS DataId
 | 
				
			||||||
 | 
						,'8ed133de-5899-4687-878a-20b1f5280f18' AS MenuId
 | 
				
			||||||
 | 
						,'人员报验还有'+convert(nvarchar(6),DATEDIFF(day,getdate(),Person.ValidityDate))+'天过期' AS MenuName
 | 
				
			||||||
 | 
						,Person.PersonName AS Content
 | 
				
			||||||
 | 
						,UserId
 | 
				
			||||||
 | 
						,users.UserName
 | 
				
			||||||
 | 
						,Person.CompileDate AS DataTime
 | 
				
			||||||
 | 
						,CONVERT(varchar(100),Person.CompileDate, 23) AS DataTimeStr
 | 
				
			||||||
 | 
						,'../CQMS/Comprehensive/InspectionPersonEdit.aspx?ToDo=ToDo&InspectionPersonId='+Person.InspectionPersonId AS PCUrl
 | 
				
			||||||
 | 
					FROM Comprehensive_InspectionPerson AS Person
 | 
				
			||||||
 | 
					LEFT JOIN Sys_User AS users ON users.UserId =@userId
 | 
				
			||||||
 | 
					WHERE Person.ProjectId=@projectId and Person.IsOnSite=1 and
 | 
				
			||||||
 | 
					dateadd(day,-15,Person.ValidityDate)<getdate() and getdate()<Person.ValidityDate
 | 
				
			||||||
 | 
					UNION ALL
 | 
				
			||||||
 | 
					SELECT InspectionPersonId AS DataId
 | 
				
			||||||
 | 
						,'8ed133de-5899-4687-878a-20b1f5280f18' AS MenuId
 | 
				
			||||||
 | 
						,'人员报验已过期'+convert(nvarchar(6),DATEDIFF(day,Person.ValidityDate,getdate()))+'天' AS MenuName
 | 
				
			||||||
 | 
						,Person.PersonName AS Content
 | 
				
			||||||
 | 
						,UserId
 | 
				
			||||||
 | 
						,users.UserName
 | 
				
			||||||
 | 
						,Person.CompileDate AS DataTime
 | 
				
			||||||
 | 
						,CONVERT(varchar(100),Person.CompileDate, 23) AS DataTimeStr
 | 
				
			||||||
 | 
						,'../CQMS/Comprehensive/InspectionPersonEdit.aspx?ToDo=ToDo&InspectionPersonId='+Person.InspectionPersonId AS PCUrl
 | 
				
			||||||
 | 
					FROM Comprehensive_InspectionPerson AS Person
 | 
				
			||||||
 | 
					LEFT JOIN Sys_User AS users ON users.UserId =@userId
 | 
				
			||||||
 | 
					WHERE Person.ProjectId=@projectId and Person.IsOnSite=1 and
 | 
				
			||||||
 | 
					Person.ValidityDate<getdate()
 | 
				
			||||||
 | 
					UNION ALL
 | 
				
			||||||
 | 
					SELECT InspectionMachineId AS DataId
 | 
				
			||||||
 | 
						,'aa55fad1-6c51-43f5-8c99-3c6aaae79118' AS MenuId
 | 
				
			||||||
 | 
						,'机具报验还有'+convert(nvarchar(6),DATEDIFF(day,getdate(),Machine.NextTestDate))+'天过期' AS MenuName
 | 
				
			||||||
 | 
						,Machine.InspectionMachineName AS Content
 | 
				
			||||||
 | 
						,UserId
 | 
				
			||||||
 | 
						,users.UserName
 | 
				
			||||||
 | 
						,Machine.CompileDate AS DataTime
 | 
				
			||||||
 | 
						,CONVERT(varchar(100),Machine.CompileDate, 23) AS DataTimeStr
 | 
				
			||||||
 | 
						,'../CQMS/Comprehensive/InspectionMachineEdit.aspx?ToDo=ToDo&InspectionMachineId='+Machine.InspectionMachineId AS PCUrl
 | 
				
			||||||
 | 
					FROM Comprehensive_InspectionMachine AS Machine
 | 
				
			||||||
 | 
					LEFT JOIN Sys_User AS users ON users.UserId =@userId
 | 
				
			||||||
 | 
					WHERE Machine.ProjectId=@projectId and Machine.IsOnSite=1 and
 | 
				
			||||||
 | 
					dateadd(day,-15,Machine.NextTestDate)<getdate() and getdate()<Machine.NextTestDate
 | 
				
			||||||
 | 
					UNION ALL
 | 
				
			||||||
 | 
					SELECT InspectionMachineId AS DataId
 | 
				
			||||||
 | 
						,'aa55fad1-6c51-43f5-8c99-3c6aaae79118' AS MenuId
 | 
				
			||||||
 | 
						,'机具报验已过期'+convert(nvarchar(6),DATEDIFF(day,Machine.NextTestDate,getdate()))+'天' AS MenuName
 | 
				
			||||||
 | 
						,Machine.InspectionMachineName AS Content
 | 
				
			||||||
 | 
						,UserId
 | 
				
			||||||
 | 
						,users.UserName
 | 
				
			||||||
 | 
						,Machine.CompileDate AS DataTime
 | 
				
			||||||
 | 
						,CONVERT(varchar(100),Machine.CompileDate, 23) AS DataTimeStr
 | 
				
			||||||
 | 
						,'../CQMS/Comprehensive/InspectionMachineEdit.aspx?ToDo=ToDo&InspectionMachineId='+Machine.InspectionMachineId AS PCUrl
 | 
				
			||||||
 | 
					FROM Comprehensive_InspectionMachine AS Machine
 | 
				
			||||||
 | 
					LEFT JOIN Sys_User AS users ON users.UserId =@userId
 | 
				
			||||||
 | 
					WHERE Machine.ProjectId=@projectId and Machine.IsOnSite=1 and
 | 
				
			||||||
 | 
					Machine.NextTestDate<getdate()
 | 
				
			||||||
 | 
					UNION ALL
 | 
				
			||||||
 | 
					SELECT Project.ProjectId AS DataId
 | 
				
			||||||
 | 
						,'2AE9D982-A499-497F-8F54-ADDA5856887E' AS MenuId
 | 
				
			||||||
 | 
						,'本月工程量完成情况尚未填报' AS MenuName
 | 
				
			||||||
 | 
						,'' AS Content
 | 
				
			||||||
 | 
						,users.UserId
 | 
				
			||||||
 | 
						,users.UserName
 | 
				
			||||||
 | 
						,GETDATE() AS DataTime
 | 
				
			||||||
 | 
						,CONVERT(varchar(100),GETDATE(), 23) AS DataTimeStr
 | 
				
			||||||
 | 
						,'../JDGL/Check/QuantityCompletion.aspx?ToDo=ToDo' AS PCUrl
 | 
				
			||||||
 | 
					FROM Base_Project AS Project
 | 
				
			||||||
 | 
					LEFT JOIN Sys_User AS users ON users.UserId =@userId
 | 
				
			||||||
 | 
					LEFT JOIN Project_ProjectUser as pu on pu.UserId=@userId
 | 
				
			||||||
 | 
					WHERE Project.ProjectId=@projectId
 | 
				
			||||||
 | 
					and (pu.RoleId like '%22F78A47-F59C-4FE8-9C43-2DD304CB2108%' or pu.RoleId like '%GCB64EF3-AB0A-40BC-824D-CC314598D5DC%') and ((DATENAME(DAY,GETDATE())>=22 and (select COUNT(*) from JDGL_QuantityCompletion WHERE ProjectId=@projectId and DATENAME(year,GETDATE())=DATENAME(year,EndDate) and DATENAME(MONTH,GETDATE())=DATENAME(MONTH,EndDate))=0)
 | 
				
			||||||
 | 
					or (DATEADD(day,60,(select top 1 EndDate from JDGL_QuantityCompletion WHERE ProjectId=@projectId order by EndDate desc))<GETDATE()))
 | 
				
			||||||
 | 
					UNION ALL
 | 
				
			||||||
 | 
					SELECT MonthPlan.MonthPlanId AS DataId
 | 
				
			||||||
 | 
						,'94287B92-7E96-4B90-BC6F-DAF30AE3B314' AS MenuId
 | 
				
			||||||
 | 
						,'月度计划尚未完成' AS MenuName
 | 
				
			||||||
 | 
						,'' AS Content
 | 
				
			||||||
 | 
						,users.UserId
 | 
				
			||||||
 | 
						,users.UserName
 | 
				
			||||||
 | 
						,GETDATE() AS DataTime
 | 
				
			||||||
 | 
						,CONVERT(varchar(100),GETDATE(), 23) AS DataTimeStr
 | 
				
			||||||
 | 
						,'../JDGL/Check/MonthPlanEdit.aspx?ToDo=ToDo' AS PCUrl
 | 
				
			||||||
 | 
					FROM JDGL_MonthPlan AS MonthPlan
 | 
				
			||||||
 | 
					LEFT JOIN Sys_User AS users ON users.UserId =@userId
 | 
				
			||||||
 | 
					LEFT JOIN Project_ProjectUser as pu on pu.UserId=@userId
 | 
				
			||||||
 | 
					WHERE MonthPlan.ProjectId=@projectId
 | 
				
			||||||
 | 
					and MonthPlan.DutyPerson=@userId and MonthPlan.RealDate is null and DATENAME(DAY,GETDATE())>=22 and 
 | 
				
			||||||
 | 
					DATENAME(year,GETDATE())=DATENAME(year,MonthPlan.PlanDate) and DATENAME(MONTH,GETDATE())=DATENAME(MONTH,MonthPlan.PlanDate)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ORDER BY DataTime DESC
 | 
				
			||||||
 | 
					END
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					GO
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					update WBS_UnitWork set SuperUnitWork='0' where SuperUnitWork is null
 | 
				
			||||||
 | 
					go
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -245,7 +245,7 @@ namespace BLL
 | 
				
			||||||
        /// <returns></returns>
 | 
					        /// <returns></returns>
 | 
				
			||||||
        public static ListItem[] GetUnitWorkList(string projectId)
 | 
					        public static ListItem[] GetUnitWorkList(string projectId)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            List<Model.WBS_UnitWork> q = (from x in Funs.DB.WBS_UnitWork where x.ProjectId == projectId && x.SuperUnitWork == null orderby x.UnitWorkCode select x).ToList();
 | 
					            List<Model.WBS_UnitWork> q = (from x in Funs.DB.WBS_UnitWork where x.ProjectId == projectId && (x.SuperUnitWork == null || x.SuperUnitWork == "0") orderby x.UnitWorkCode select x).ToList();
 | 
				
			||||||
            ListItem[] item = new ListItem[q.Count()];
 | 
					            ListItem[] item = new ListItem[q.Count()];
 | 
				
			||||||
            for (int i = 0; i < q.Count(); i++)
 | 
					            for (int i = 0; i < q.Count(); i++)
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
| 
						 | 
					@ -278,11 +278,11 @@ namespace BLL
 | 
				
			||||||
        /// <returns></returns>
 | 
					        /// <returns></returns>
 | 
				
			||||||
        public static List<Model.WBS_UnitWork> GetUnitWorkLists(string projectId)
 | 
					        public static List<Model.WBS_UnitWork> GetUnitWorkLists(string projectId)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            return (from x in Funs.DB.WBS_UnitWork where x.ProjectId == projectId && x.SuperUnitWork == null orderby x.UnitWorkCode select x).ToList();
 | 
					            return (from x in Funs.DB.WBS_UnitWork where x.ProjectId == projectId && (x.SuperUnitWork == null || x.SuperUnitWork == "0") orderby x.UnitWorkCode select x).ToList();
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        public static ListItem[] GetUnitWork(string projectId)
 | 
					        public static ListItem[] GetUnitWork(string projectId)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            List<Model.WBS_UnitWork> q = (from x in Funs.DB.WBS_UnitWork where x.ProjectId == projectId && x.SuperUnitWork == null orderby x.UnitWorkCode select x).ToList();
 | 
					            List<Model.WBS_UnitWork> q = (from x in Funs.DB.WBS_UnitWork where x.ProjectId == projectId && (x.SuperUnitWork == null || x.SuperUnitWork == "0") orderby x.UnitWorkCode select x).ToList();
 | 
				
			||||||
            ListItem[] item = new ListItem[q.Count()];
 | 
					            ListItem[] item = new ListItem[q.Count()];
 | 
				
			||||||
            for (int i = 0; i < q.Count(); i++)
 | 
					            for (int i = 0; i < q.Count(); i++)
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
| 
						 | 
					@ -292,7 +292,7 @@ namespace BLL
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        public static ListItem[] GetUnitWork2(string projectId)
 | 
					        public static ListItem[] GetUnitWork2(string projectId)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            List<Model.WBS_UnitWork> q = (from x in Funs.DB.WBS_UnitWork where x.ProjectId == projectId && x.SuperUnitWork == null orderby x.UnitWorkCode select x).ToList();
 | 
					            List<Model.WBS_UnitWork> q = (from x in Funs.DB.WBS_UnitWork where x.ProjectId == projectId && (x.SuperUnitWork == null || x.SuperUnitWork == "0") orderby x.UnitWorkCode select x).ToList();
 | 
				
			||||||
            ListItem[] item = new ListItem[q.Count()];
 | 
					            ListItem[] item = new ListItem[q.Count()];
 | 
				
			||||||
            for (int i = 0; i < q.Count(); i++)
 | 
					            for (int i = 0; i < q.Count(); i++)
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
| 
						 | 
					@ -390,7 +390,7 @@ namespace BLL
 | 
				
			||||||
        public static List<Model.WBS_UnitWork> GetUnitWorkListByPid(string projectId)
 | 
					        public static List<Model.WBS_UnitWork> GetUnitWorkListByPid(string projectId)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            Model.SGGLDB db = Funs.DB;
 | 
					            Model.SGGLDB db = Funs.DB;
 | 
				
			||||||
            List<Model.WBS_UnitWork> q = (from x in db.WBS_UnitWork where x.ProjectId == projectId && x.SuperUnitWork == null orderby x.UnitWorkCode select x).ToList();
 | 
					            List<Model.WBS_UnitWork> q = (from x in db.WBS_UnitWork where x.ProjectId == projectId && (x.SuperUnitWork == null||x.SuperUnitWork=="0") orderby x.UnitWorkCode select x).ToList();
 | 
				
			||||||
            return q;
 | 
					            return q;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        public static Model.WBS_UnitWork getUnitWorkByUnitWorkId(string UnitWorkId)
 | 
					        public static Model.WBS_UnitWork getUnitWorkByUnitWorkId(string UnitWorkId)
 | 
				
			||||||
| 
						 | 
					@ -412,7 +412,7 @@ namespace BLL
 | 
				
			||||||
        /// <returns></returns>
 | 
					        /// <returns></returns>
 | 
				
			||||||
        public static ListItem[] GetUnitWorkListByProjectType(string projectId, string projectType)
 | 
					        public static ListItem[] GetUnitWorkListByProjectType(string projectId, string projectType)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            List<Model.WBS_UnitWork> q = (from x in Funs.DB.WBS_UnitWork where x.ProjectId == projectId && x.SuperUnitWork == null && x.ProjectType == projectType orderby x.UnitWorkCode select x).ToList();
 | 
					            List<Model.WBS_UnitWork> q = (from x in Funs.DB.WBS_UnitWork where x.ProjectId == projectId && (x.SuperUnitWork == null||x.SuperUnitWork=="0") && x.ProjectType == projectType orderby x.UnitWorkCode select x).ToList();
 | 
				
			||||||
            ListItem[] item = new ListItem[q.Count()];
 | 
					            ListItem[] item = new ListItem[q.Count()];
 | 
				
			||||||
            for (int i = 0; i < q.Count(); i++)
 | 
					            for (int i = 0; i < q.Count(); i++)
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
| 
						 | 
					@ -497,7 +497,7 @@ namespace BLL
 | 
				
			||||||
        public static void InitUnitWorkDropDownList(FineUIPro.DropDownList dropName, string projectId, bool isShowPlease)
 | 
					        public static void InitUnitWorkDropDownList(FineUIPro.DropDownList dropName, string projectId, bool isShowPlease)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            var unitWorks = from x in Funs.DB.WBS_UnitWork
 | 
					            var unitWorks = from x in Funs.DB.WBS_UnitWork
 | 
				
			||||||
                            where x.ProjectId == projectId && x.SuperUnitWork == null
 | 
					                            where x.ProjectId == projectId && (x.SuperUnitWork == null || x.SuperUnitWork == "0")
 | 
				
			||||||
                            orderby x.UnitWorkCode
 | 
					                            orderby x.UnitWorkCode
 | 
				
			||||||
                            select new
 | 
					                            select new
 | 
				
			||||||
                            {
 | 
					                            {
 | 
				
			||||||
| 
						 | 
					@ -524,7 +524,7 @@ namespace BLL
 | 
				
			||||||
        public static void InitUnitWorkNameDropDownList(FineUIPro.DropDownList dropName, string projectId, bool isShowPlease)
 | 
					        public static void InitUnitWorkNameDropDownList(FineUIPro.DropDownList dropName, string projectId, bool isShowPlease)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            var unitWorks = from x in Funs.DB.WBS_UnitWork
 | 
					            var unitWorks = from x in Funs.DB.WBS_UnitWork
 | 
				
			||||||
                            where x.ProjectId == projectId && x.SuperUnitWork == null
 | 
					                            where x.ProjectId == projectId && (x.SuperUnitWork == null || x.SuperUnitWork == "0")
 | 
				
			||||||
                            orderby x.UnitWorkCode
 | 
					                            orderby x.UnitWorkCode
 | 
				
			||||||
                            select new
 | 
					                            select new
 | 
				
			||||||
                            {
 | 
					                            {
 | 
				
			||||||
| 
						 | 
					@ -550,7 +550,7 @@ namespace BLL
 | 
				
			||||||
        public static string GetUnitWorkALLName(string unitWorkId)
 | 
					        public static string GetUnitWorkALLName(string unitWorkId)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            string name = string.Empty;
 | 
					            string name = string.Empty;
 | 
				
			||||||
            var getu = Funs.DB.WBS_UnitWork.FirstOrDefault(x => x.UnitWorkId == unitWorkId && x.SuperUnitWork == null);
 | 
					            var getu = Funs.DB.WBS_UnitWork.FirstOrDefault(x => x.UnitWorkId == unitWorkId && (x.SuperUnitWork == null || x.SuperUnitWork == "0"));
 | 
				
			||||||
            if (getu != null)
 | 
					            if (getu != null)
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
                if (!string.IsNullOrEmpty(getu.ProjectType))
 | 
					                if (!string.IsNullOrEmpty(getu.ProjectType))
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -92,7 +92,7 @@
 | 
				
			||||||
                    <Items>
 | 
					                    <Items>
 | 
				
			||||||
                        <f:HiddenField ID="hdAttachUrl" runat="server">
 | 
					                        <f:HiddenField ID="hdAttachUrl" runat="server">
 | 
				
			||||||
                        </f:HiddenField>
 | 
					                        </f:HiddenField>
 | 
				
			||||||
                            <f:Button ID="btnSave" Icon="SystemSave" runat="server" Text="保存" ToolTip="保存" ValidateForms="SimpleForm1" OnClick="btnSave_Click" Hidden="true">
 | 
					                            <f:Button ID="btnSave" Icon="SystemSave" runat="server" Text="保存" ToolTip="保存" ValidateForms="SimpleForm1" OnClick="btnSave_Click">
 | 
				
			||||||
                        </f:Button>
 | 
					                        </f:Button>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                         <%--<f:Button ID="btnSubmit" Icon="SystemSaveNew" runat="server" Text="提交" ToolTip="提交" OnClick="btnSubmit_Click" ValidateForms="SimpleForm1">
 | 
					                         <%--<f:Button ID="btnSubmit" Icon="SystemSaveNew" runat="server" Text="提交" ToolTip="提交" OnClick="btnSubmit_Click" ValidateForms="SimpleForm1">
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -41,7 +41,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
 | 
				
			||||||
                //this.agree.Hidden = true;
 | 
					                //this.agree.Hidden = true;
 | 
				
			||||||
                //this.options.Hidden = true;
 | 
					                //this.options.Hidden = true;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                this.btnSave.Hidden = true;
 | 
					                //this.btnSave.Hidden = true;
 | 
				
			||||||
                //this.btnSubmit.Hidden = true;
 | 
					                //this.btnSubmit.Hidden = true;
 | 
				
			||||||
                this.DesignDetailsId = Request.Params["DesignDetailsId"];
 | 
					                this.DesignDetailsId = Request.Params["DesignDetailsId"];
 | 
				
			||||||
                Model.Comprehensive_DesignDetails designDetails = BLL.DesignDetailsService.GetDesignDetailsById(this.DesignDetailsId);
 | 
					                Model.Comprehensive_DesignDetails designDetails = BLL.DesignDetailsService.GetDesignDetailsById(this.DesignDetailsId);
 | 
				
			||||||
| 
						 | 
					@ -114,7 +114,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
 | 
				
			||||||
                else
 | 
					                else
 | 
				
			||||||
                {
 | 
					                {
 | 
				
			||||||
                    this.txtDetailsDate.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
 | 
					                    this.txtDetailsDate.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
 | 
				
			||||||
                    this.btnSave.Hidden = false;
 | 
					                    //this.btnSave.Hidden = false;
 | 
				
			||||||
                    //this.btnSubmit.Hidden = false;
 | 
					                    //this.btnSubmit.Hidden = false;
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -105,7 +105,7 @@
 | 
				
			||||||
                    <Items>
 | 
					                    <Items>
 | 
				
			||||||
                        <f:HiddenField ID="hdAttachUrl" runat="server">
 | 
					                        <f:HiddenField ID="hdAttachUrl" runat="server">
 | 
				
			||||||
                        </f:HiddenField>
 | 
					                        </f:HiddenField>
 | 
				
			||||||
                          <f:Button ID="btnSave" Icon="SystemSave" runat="server" Text="保存" ToolTip="保存" ValidateForms="SimpleForm1" OnClick="btnSave_Click" Hidden="true">
 | 
					                          <f:Button ID="btnSave" Icon="SystemSave" runat="server" Text="保存" ToolTip="保存" ValidateForms="SimpleForm1" OnClick="btnSave_Click">
 | 
				
			||||||
                        </f:Button>
 | 
					                        </f:Button>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                         <%--<f:Button ID="btnSubmit" Icon="SystemSaveNew" runat="server" Text="提交" ToolTip="提交" OnClick="btnSubmit_Click" ValidateForms="SimpleForm1">
 | 
					                         <%--<f:Button ID="btnSubmit" Icon="SystemSaveNew" runat="server" Text="提交" ToolTip="提交" OnClick="btnSubmit_Click" ValidateForms="SimpleForm1">
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -42,7 +42,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
 | 
				
			||||||
                //this.agree.Hidden = true;
 | 
					                //this.agree.Hidden = true;
 | 
				
			||||||
                //this.options.Hidden = true;
 | 
					                //this.options.Hidden = true;
 | 
				
			||||||
                
 | 
					                
 | 
				
			||||||
                this.btnSave.Hidden = true;
 | 
					                //this.btnSave.Hidden = true;
 | 
				
			||||||
                //this.btnSubmit.Hidden = true;
 | 
					                //this.btnSubmit.Hidden = true;
 | 
				
			||||||
                this.DesignDrawingsId = Request.Params["DesignDrawingsId"];
 | 
					                this.DesignDrawingsId = Request.Params["DesignDrawingsId"];
 | 
				
			||||||
                Model.Comprehensive_DesignDrawings designDrawings = BLL.DesignDrawingsService.GetDesignDrawingsById(this.DesignDrawingsId);
 | 
					                Model.Comprehensive_DesignDrawings designDrawings = BLL.DesignDrawingsService.GetDesignDrawingsById(this.DesignDrawingsId);
 | 
				
			||||||
| 
						 | 
					@ -104,7 +104,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
                else
 | 
					                else
 | 
				
			||||||
                {
 | 
					                {
 | 
				
			||||||
                    this.btnSave.Hidden = false;
 | 
					                    //this.btnSave.Hidden = false;
 | 
				
			||||||
                    //this.btnSubmit.Hidden = false;
 | 
					                    //this.btnSubmit.Hidden = false;
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -64,7 +64,7 @@
 | 
				
			||||||
                    <Items>
 | 
					                    <Items>
 | 
				
			||||||
                        <f:HiddenField ID="hdAttachUrl" runat="server">
 | 
					                        <f:HiddenField ID="hdAttachUrl" runat="server">
 | 
				
			||||||
                        </f:HiddenField>
 | 
					                        </f:HiddenField>
 | 
				
			||||||
                        <f:Button ID="btnSave" Icon="SystemSave" ToolTip="保存" runat="server" ValidateForms="SimpleForm1" OnClick="btnSave_Click" Hidden="true">
 | 
					                        <f:Button ID="btnSave" Icon="SystemSave" ToolTip="保存" Text="保存" runat="server" ValidateForms="SimpleForm1" OnClick="btnSave_Click" Hidden="true">
 | 
				
			||||||
                        </f:Button>
 | 
					                        </f:Button>
 | 
				
			||||||
                    </Items>
 | 
					                    </Items>
 | 
				
			||||||
                </f:Toolbar>
 | 
					                </f:Toolbar>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -94,7 +94,7 @@
 | 
				
			||||||
                    <Items>
 | 
					                    <Items>
 | 
				
			||||||
                        <f:HiddenField ID="hdAttachUrl" runat="server">
 | 
					                        <f:HiddenField ID="hdAttachUrl" runat="server">
 | 
				
			||||||
                        </f:HiddenField>
 | 
					                        </f:HiddenField>
 | 
				
			||||||
                        <f:Button ID="btnSave" Icon="SystemSave" runat="server" Text="保存" ToolTip="保存" ValidateForms="SimpleForm1" OnClick="btnSave_Click" Hidden="true">
 | 
					                        <f:Button ID="btnSave" Icon="SystemSave" runat="server" Text="保存" ToolTip="保存" ValidateForms="SimpleForm1" OnClick="btnSave_Click">
 | 
				
			||||||
                        </f:Button>
 | 
					                        </f:Button>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                        <%--<f:Button ID="btnSubmit" Icon="SystemSaveNew" runat="server" Text="提交" ToolTip="提交" OnClick="btnSubmit_Click" ValidateForms="SimpleForm1">
 | 
					                        <%--<f:Button ID="btnSubmit" Icon="SystemSaveNew" runat="server" Text="提交" ToolTip="提交" OnClick="btnSubmit_Click" ValidateForms="SimpleForm1">
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -40,7 +40,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
 | 
				
			||||||
                //this.agree.Hidden = true;
 | 
					                //this.agree.Hidden = true;
 | 
				
			||||||
                //this.options.Hidden = true;
 | 
					                //this.options.Hidden = true;
 | 
				
			||||||
                
 | 
					                
 | 
				
			||||||
                this.btnSave.Hidden = true;
 | 
					                //this.btnSave.Hidden = true;
 | 
				
			||||||
                //this.btnSubmit.Hidden = true;
 | 
					                //this.btnSubmit.Hidden = true;
 | 
				
			||||||
                this.PressurePipeId = Request.Params["PressurePipeId"];
 | 
					                this.PressurePipeId = Request.Params["PressurePipeId"];
 | 
				
			||||||
                Model.Comprehensive_PressurePipe pressurePipe = BLL.PressurePipeService.GetPressurePipeById(this.PressurePipeId);
 | 
					                Model.Comprehensive_PressurePipe pressurePipe = BLL.PressurePipeService.GetPressurePipeById(this.PressurePipeId);
 | 
				
			||||||
| 
						 | 
					@ -99,7 +99,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
 | 
				
			||||||
                else
 | 
					                else
 | 
				
			||||||
                {
 | 
					                {
 | 
				
			||||||
                    this.txtReportTime.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
 | 
					                    this.txtReportTime.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
 | 
				
			||||||
                    this.btnSave.Hidden = false;
 | 
					                    //this.btnSave.Hidden = false;
 | 
				
			||||||
                    //this.btnSubmit.Hidden = false;
 | 
					                    //this.btnSubmit.Hidden = false;
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -101,7 +101,7 @@
 | 
				
			||||||
                        <f:ToolbarFill ID="ToolbarFill1" runat="server"></f:ToolbarFill>
 | 
					                        <f:ToolbarFill ID="ToolbarFill1" runat="server"></f:ToolbarFill>
 | 
				
			||||||
                        <f:HiddenField ID="hdAttachUrl" runat="server">
 | 
					                        <f:HiddenField ID="hdAttachUrl" runat="server">
 | 
				
			||||||
                        </f:HiddenField>
 | 
					                        </f:HiddenField>
 | 
				
			||||||
                        <f:Button ID="btnSave" Icon="SystemSave" runat="server" Text="保存" ToolTip="保存" ValidateForms="SimpleForm1" OnClick="btnSave_Click" Hidden="true">
 | 
					                        <f:Button ID="btnSave" Icon="SystemSave" runat="server" Text="保存" ToolTip="保存" ValidateForms="SimpleForm1" OnClick="btnSave_Click">
 | 
				
			||||||
                        </f:Button>
 | 
					                        </f:Button>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                         <%--<f:Button ID="btnSubmit" Icon="SystemSaveNew" runat="server" Text="提交" ToolTip="提交" OnClick="btnSubmit_Click" ValidateForms="SimpleForm1">
 | 
					                         <%--<f:Button ID="btnSubmit" Icon="SystemSaveNew" runat="server" Text="提交" ToolTip="提交" OnClick="btnSubmit_Click" ValidateForms="SimpleForm1">
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -40,7 +40,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
 | 
				
			||||||
                //LoadAuditSelect();
 | 
					                //LoadAuditSelect();
 | 
				
			||||||
                //this.agree.Hidden = true;
 | 
					                //this.agree.Hidden = true;
 | 
				
			||||||
                //this.options.Hidden = true;
 | 
					                //this.options.Hidden = true;
 | 
				
			||||||
                this.btnSave.Hidden = true;
 | 
					                //this.btnSave.Hidden = true;
 | 
				
			||||||
                //this.btnSubmit.Hidden = true;
 | 
					                //this.btnSubmit.Hidden = true;
 | 
				
			||||||
                
 | 
					                
 | 
				
			||||||
                this.QualityAccidentId = Request.Params["QualityAccidentId"];
 | 
					                this.QualityAccidentId = Request.Params["QualityAccidentId"];
 | 
				
			||||||
| 
						 | 
					@ -95,7 +95,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
 | 
				
			||||||
                else
 | 
					                else
 | 
				
			||||||
                {
 | 
					                {
 | 
				
			||||||
                    this.txtTime.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
 | 
					                    this.txtTime.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
 | 
				
			||||||
                    this.btnSave.Hidden = false;
 | 
					                    //this.btnSave.Hidden = false;
 | 
				
			||||||
                    //this.btnSubmit.Hidden = false;
 | 
					                    //this.btnSubmit.Hidden = false;
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -85,7 +85,7 @@
 | 
				
			||||||
                    <Items>
 | 
					                    <Items>
 | 
				
			||||||
                        <f:HiddenField ID="hdAttachUrl" runat="server">
 | 
					                        <f:HiddenField ID="hdAttachUrl" runat="server">
 | 
				
			||||||
                        </f:HiddenField>
 | 
					                        </f:HiddenField>
 | 
				
			||||||
                          <f:Button ID="btnSave" Icon="SystemSave" runat="server" Text="保存" ToolTip="保存" ValidateForms="SimpleForm1" OnClick="btnSave_Click" Hidden="true">
 | 
					                          <f:Button ID="btnSave" Icon="SystemSave" runat="server" Text="保存" ToolTip="保存" ValidateForms="SimpleForm1" OnClick="btnSave_Click">
 | 
				
			||||||
                        </f:Button>
 | 
					                        </f:Button>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                         <%--<f:Button ID="btnSubmit" Icon="SystemSaveNew" runat="server" Text="提交" ToolTip="提交" OnClick="btnSubmit_Click" ValidateForms="SimpleForm1">
 | 
					                         <%--<f:Button ID="btnSubmit" Icon="SystemSaveNew" runat="server" Text="提交" ToolTip="提交" OnClick="btnSubmit_Click" ValidateForms="SimpleForm1">
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -42,7 +42,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
 | 
				
			||||||
                //this.agree.Hidden = true;
 | 
					                //this.agree.Hidden = true;
 | 
				
			||||||
                //this.options.Hidden = true;
 | 
					                //this.options.Hidden = true;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                this.btnSave.Hidden = true;
 | 
					                //this.btnSave.Hidden = true;
 | 
				
			||||||
                //this.btnSubmit.Hidden = true;
 | 
					                //this.btnSubmit.Hidden = true;
 | 
				
			||||||
                this.Id = Request.Params["Id"];
 | 
					                this.Id = Request.Params["Id"];
 | 
				
			||||||
                var model = BLL.ReviewDrawingsService.Detail(this.Id);
 | 
					                var model = BLL.ReviewDrawingsService.Detail(this.Id);
 | 
				
			||||||
| 
						 | 
					@ -98,11 +98,11 @@ namespace FineUIPro.Web.CQMS.Comprehensive
 | 
				
			||||||
                    //    }
 | 
					                    //    }
 | 
				
			||||||
                    //}
 | 
					                    //}
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
                else
 | 
					                //else
 | 
				
			||||||
                {
 | 
					                //{
 | 
				
			||||||
                    this.btnSave.Hidden = false;
 | 
					                    //this.btnSave.Hidden = false;
 | 
				
			||||||
                    //this.btnSubmit.Hidden = false;
 | 
					                    //this.btnSubmit.Hidden = false;
 | 
				
			||||||
                }
 | 
					                //}
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -102,7 +102,7 @@
 | 
				
			||||||
                    <Items>
 | 
					                    <Items>
 | 
				
			||||||
                        <f:HiddenField ID="hdAttachUrl" runat="server">
 | 
					                        <f:HiddenField ID="hdAttachUrl" runat="server">
 | 
				
			||||||
                        </f:HiddenField>
 | 
					                        </f:HiddenField>
 | 
				
			||||||
                          <f:Button ID="btnSave" Icon="SystemSave" runat="server" Text="保存" ToolTip="保存" ValidateForms="SimpleForm1" OnClick="btnSave_Click" Hidden="true">
 | 
					                          <f:Button ID="btnSave" Icon="SystemSave" runat="server" Text="保存" ToolTip="保存" ValidateForms="SimpleForm1" OnClick="btnSave_Click">
 | 
				
			||||||
                        </f:Button>
 | 
					                        </f:Button>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                         <%--<f:Button ID="btnSubmit" Icon="SystemSaveNew" runat="server" Text="提交" ToolTip="提交" OnClick="btnSubmit_Click" ValidateForms="SimpleForm1">
 | 
					                         <%--<f:Button ID="btnSubmit" Icon="SystemSaveNew" runat="server" Text="提交" ToolTip="提交" OnClick="btnSubmit_Click" ValidateForms="SimpleForm1">
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -42,7 +42,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
 | 
				
			||||||
                //this.agree.Hidden = true;
 | 
					                //this.agree.Hidden = true;
 | 
				
			||||||
                //this.options.Hidden = true;
 | 
					                //this.options.Hidden = true;
 | 
				
			||||||
                
 | 
					                
 | 
				
			||||||
                this.btnSave.Hidden = true;
 | 
					                //this.btnSave.Hidden = true;
 | 
				
			||||||
                //this.btnSubmit.Hidden = true;
 | 
					                //this.btnSubmit.Hidden = true;
 | 
				
			||||||
                this.VisaId = Request.Params["VisaId"];
 | 
					                this.VisaId = Request.Params["VisaId"];
 | 
				
			||||||
                Model.Comprehensive_SiteVisaManagement siteVisaManagement = BLL.SiteVisaManagementService.GetSiteVisaManagementById(this.VisaId);
 | 
					                Model.Comprehensive_SiteVisaManagement siteVisaManagement = BLL.SiteVisaManagementService.GetSiteVisaManagementById(this.VisaId);
 | 
				
			||||||
| 
						 | 
					@ -113,7 +113,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
 | 
				
			||||||
                else
 | 
					                else
 | 
				
			||||||
                {
 | 
					                {
 | 
				
			||||||
                    this.txtVisaDate.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
 | 
					                    this.txtVisaDate.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
 | 
				
			||||||
                    this.btnSave.Hidden = false;
 | 
					                    //this.btnSave.Hidden = false;
 | 
				
			||||||
                    //this.btnSubmit.Hidden = false;
 | 
					                    //this.btnSubmit.Hidden = false;
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -89,7 +89,7 @@
 | 
				
			||||||
                    <Items>
 | 
					                    <Items>
 | 
				
			||||||
                        <f:HiddenField ID="hdAttachUrl" runat="server">
 | 
					                        <f:HiddenField ID="hdAttachUrl" runat="server">
 | 
				
			||||||
                        </f:HiddenField>
 | 
					                        </f:HiddenField>
 | 
				
			||||||
                          <f:Button ID="btnSave" Icon="SystemSave" runat="server" Text="保存" ToolTip="保存" ValidateForms="SimpleForm1" OnClick="btnSave_Click" Hidden="true">
 | 
					                          <f:Button ID="btnSave" Icon="SystemSave" runat="server" Text="保存" ToolTip="保存" ValidateForms="SimpleForm1" OnClick="btnSave_Click" >
 | 
				
			||||||
                        </f:Button>
 | 
					                        </f:Button>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                         <%--<f:Button ID="btnSubmit" Icon="SystemSaveNew" runat="server" Text="提交" ToolTip="提交" OnClick="btnSubmit_Click" ValidateForms="SimpleForm1">
 | 
					                         <%--<f:Button ID="btnSubmit" Icon="SystemSaveNew" runat="server" Text="提交" ToolTip="提交" OnClick="btnSubmit_Click" ValidateForms="SimpleForm1">
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -43,7 +43,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
 | 
				
			||||||
                //this.agree.Hidden = true;
 | 
					                //this.agree.Hidden = true;
 | 
				
			||||||
                //this.options.Hidden = true;
 | 
					                //this.options.Hidden = true;
 | 
				
			||||||
                
 | 
					                
 | 
				
			||||||
                this.btnSave.Hidden = true;
 | 
					                //this.btnSave.Hidden = true;
 | 
				
			||||||
                //this.btnSubmit.Hidden = true;
 | 
					                //this.btnSubmit.Hidden = true;
 | 
				
			||||||
                Model.Comprehensive_SpecialEquipment specialEquipment = BLL.SpecialEquipmentServices.GetEquipmentById(this.SpecialEquipmentId);
 | 
					                Model.Comprehensive_SpecialEquipment specialEquipment = BLL.SpecialEquipmentServices.GetEquipmentById(this.SpecialEquipmentId);
 | 
				
			||||||
                if (specialEquipment != null)
 | 
					                if (specialEquipment != null)
 | 
				
			||||||
| 
						 | 
					@ -103,7 +103,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
 | 
				
			||||||
                else
 | 
					                else
 | 
				
			||||||
                {
 | 
					                {
 | 
				
			||||||
                    this.txtReportTime.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
 | 
					                    this.txtReportTime.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
 | 
				
			||||||
                    this.btnSave.Hidden = false;
 | 
					                    //this.btnSave.Hidden = false;
 | 
				
			||||||
                    //this.btnSubmit.Hidden = false;
 | 
					                    //this.btnSubmit.Hidden = false;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,831 +0,0 @@
 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:HttpParseException
 | 
					 | 
				
			||||||
错误信息:无法从其“Hidden”属性的字符串表示形式“500px”创建“System.Boolean”类型的对象。
 | 
					 | 
				
			||||||
错误堆栈:
 | 
					 | 
				
			||||||
   在 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
 | 
					 | 
				
			||||||
----错误信息:
 | 
					 | 
				
			||||||
----无法从其“Hidden”属性的字符串表示形式“500px”创建“System.Boolean”类型的对象。
 | 
					 | 
				
			||||||
----错误堆栈:
 | 
					 | 
				
			||||||
       在 System.Web.UI.PropertyConverter.ObjectFromString(Type objType, MemberInfo propertyInfo, String value)
 | 
					 | 
				
			||||||
       在 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)
 | 
					 | 
				
			||||||
出错时间:06/26/2024 15:05:45
 | 
					 | 
				
			||||||
出错文件:http://localhost:8579/JDGL/Check/WeekPlan.aspx
 | 
					 | 
				
			||||||
IP地址:::1
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
出错时间:06/26/2024 15:05:45
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:ArgumentOutOfRangeException
 | 
					 | 
				
			||||||
错误信息:索引超出范围。必须为非负值并小于集合大小。
 | 
					 | 
				
			||||||
参数名: index
 | 
					 | 
				
			||||||
错误堆栈:
 | 
					 | 
				
			||||||
   在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
 | 
					 | 
				
			||||||
   在 System.Collections.Generic.List`1.get_Item(Int32 index)
 | 
					 | 
				
			||||||
   在 FineUIPro.Web.JDGL.Check.WeekPlanEdit.Grid2_RowCommand(Object sender, GridCommandEventArgs e) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\JDGL\Check\WeekPlanEdit.aspx.cs:行号 450
 | 
					 | 
				
			||||||
   在 FineUIPro.Grid.OnRowCommand(GridCommandEventArgs e)
 | 
					 | 
				
			||||||
   在 (Grid , GridCommandEventArgs )
 | 
					 | 
				
			||||||
   在 FineUIPro.Grid.RaisePostBackEvent(String eventArgument)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
 | 
					 | 
				
			||||||
出错时间:06/26/2024 15:25:22
 | 
					 | 
				
			||||||
出错文件:http://localhost:8579/JDGL/Check/WeekPlanEdit.aspx
 | 
					 | 
				
			||||||
IP地址:::1
 | 
					 | 
				
			||||||
操作人员:JT
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
出错时间:06/26/2024 15:25:22
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:HttpCompileException
 | 
					 | 
				
			||||||
错误信息:g:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\HSSE\SitePerson\PersonList.aspx(185): error CS1061: “ASP.hsse_siteperson_personlist_aspx”不包含“btnMenuBlack_Click”的定义,并且找不到可接受类型为“ASP.hsse_siteperson_personlist_aspx”的第一个参数的扩展方法“btnMenuBlack_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)
 | 
					 | 
				
			||||||
出错时间:07/01/2024 17:11:58
 | 
					 | 
				
			||||||
出错文件:http://localhost:8579/HSSE/SitePerson/PersonList.aspx
 | 
					 | 
				
			||||||
IP地址:::1
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
出错时间:07/01/2024 17:11:58
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:HttpCompileException
 | 
					 | 
				
			||||||
错误信息:g:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\HSSE\SitePerson\PersonList.aspx(185): error CS1061: “ASP.hsse_siteperson_personlist_aspx”不包含“btnMenuBlack_Click”的定义,并且找不到可接受类型为“ASP.hsse_siteperson_personlist_aspx”的第一个参数的扩展方法“btnMenuBlack_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)
 | 
					 | 
				
			||||||
出错时间:07/01/2024 17:14:10
 | 
					 | 
				
			||||||
出错文件:http://localhost:8579/HSSE/SitePerson/PersonList.aspx
 | 
					 | 
				
			||||||
IP地址:::1
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
出错时间:07/01/2024 17:14:10
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:HttpCompileException
 | 
					 | 
				
			||||||
错误信息:g:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\HSSE\SitePerson\PersonList.aspx(185): error CS1061: “ASP.hsse_siteperson_personlist_aspx”不包含“btnMenuBlack_Click”的定义,并且找不到可接受类型为“ASP.hsse_siteperson_personlist_aspx”的第一个参数的扩展方法“btnMenuBlack_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)
 | 
					 | 
				
			||||||
出错时间:07/01/2024 17:14:36
 | 
					 | 
				
			||||||
出错文件:http://localhost:8579/HSSE/SitePerson/PersonList.aspx
 | 
					 | 
				
			||||||
IP地址:::1
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
出错时间:07/01/2024 17:14:36
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:HttpCompileException
 | 
					 | 
				
			||||||
错误信息:g:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\HSSE\SitePerson\BlackPersonList.aspx(28): error CS1061: “ASP.hsse_siteperson_blackpersonlist_aspx”不包含“drpPost_SelectedIndexChanged”的定义,并且找不到可接受类型为“ASP.hsse_siteperson_blackpersonlist_aspx”的第一个参数的扩展方法“drpPost_SelectedIndexChanged”(是否缺少 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)
 | 
					 | 
				
			||||||
出错时间:07/01/2024 17:35:05
 | 
					 | 
				
			||||||
出错文件:http://localhost:8579/HSSE/SitePerson/BlackPersonList.aspx
 | 
					 | 
				
			||||||
IP地址:::1
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
出错时间:07/01/2024 17:35:05
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:HttpCompileException
 | 
					 | 
				
			||||||
错误信息:g:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\HSSE\SitePerson\BlackPersonList.aspx(28): error CS1061: “ASP.hsse_siteperson_blackpersonlist_aspx”不包含“drpPost_SelectedIndexChanged”的定义,并且找不到可接受类型为“ASP.hsse_siteperson_blackpersonlist_aspx”的第一个参数的扩展方法“drpPost_SelectedIndexChanged”(是否缺少 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)
 | 
					 | 
				
			||||||
出错时间:07/01/2024 17:37:14
 | 
					 | 
				
			||||||
出错文件:http://localhost:8579/HSSE/SitePerson/BlackPersonList.aspx
 | 
					 | 
				
			||||||
IP地址:::1
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
出错时间:07/01/2024 17:37:14
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:FormatException
 | 
					 | 
				
			||||||
错误信息:输入字符串的格式不正确。
 | 
					 | 
				
			||||||
错误堆栈:
 | 
					 | 
				
			||||||
   在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
 | 
					 | 
				
			||||||
   在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
 | 
					 | 
				
			||||||
   在 System.Int32.Parse(String s)
 | 
					 | 
				
			||||||
   在 FineUIPro.Web.BaseInfo.RiskLevelEdit.btnSave_Click(Object sender, EventArgs e) 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\BaseInfo\RiskLevelEdit.aspx.cs:行号 91
 | 
					 | 
				
			||||||
   在 FineUIPro.Button.OnClick(EventArgs e)
 | 
					 | 
				
			||||||
   在 (Button , EventArgs )
 | 
					 | 
				
			||||||
   在 FineUIPro.Button.RaisePostBackEvent(String eventArgument)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
 | 
					 | 
				
			||||||
出错时间:07/02/2024 14:59:40
 | 
					 | 
				
			||||||
出错文件:http://localhost:8579/BaseInfo/RiskLevelEdit.aspx
 | 
					 | 
				
			||||||
IP地址:::1
 | 
					 | 
				
			||||||
操作人员:JT
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
出错时间:07/02/2024 14:59:40
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:MissingMethodException
 | 
					 | 
				
			||||||
错误信息:找不到方法:“Model.Base_RiskLevel BLL.RiskLevelService.GetRiskLevelBy(System.String)”。
 | 
					 | 
				
			||||||
错误堆栈:
 | 
					 | 
				
			||||||
   在 FineUIPro.Web.HSSE.Hazard.HazardListEdit.Window2_Close(Object sender, WindowCloseEventArgs e)
 | 
					 | 
				
			||||||
   在 FineUIPro.Window.OnClose(WindowCloseEventArgs e)
 | 
					 | 
				
			||||||
   在 (Window , WindowCloseEventArgs )
 | 
					 | 
				
			||||||
   在 FineUIPro.Window.RaisePostBackEvent(String eventArgument)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
 | 
					 | 
				
			||||||
出错时间:07/02/2024 15:07:45
 | 
					 | 
				
			||||||
出错文件:http://localhost:8579/HSSE/Hazard/HazardListEdit.aspx
 | 
					 | 
				
			||||||
IP地址:::1
 | 
					 | 
				
			||||||
操作人员:JT
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
出错时间:07/02/2024 15:07:45
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:MissingMethodException
 | 
					 | 
				
			||||||
错误信息:找不到方法:“Model.Base_RiskLevel BLL.RiskLevelService.GetRiskLevelBy(System.String)”。
 | 
					 | 
				
			||||||
错误堆栈:
 | 
					 | 
				
			||||||
   在 FineUIPro.Web.HSSE.Hazard.HazardListEdit.Window2_Close(Object sender, WindowCloseEventArgs e)
 | 
					 | 
				
			||||||
   在 FineUIPro.Window.OnClose(WindowCloseEventArgs e)
 | 
					 | 
				
			||||||
   在 (Window , WindowCloseEventArgs )
 | 
					 | 
				
			||||||
   在 FineUIPro.Window.RaisePostBackEvent(String eventArgument)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
 | 
					 | 
				
			||||||
出错时间:07/02/2024 15:07:59
 | 
					 | 
				
			||||||
出错文件:http://localhost:8579/HSSE/Hazard/HazardListEdit.aspx
 | 
					 | 
				
			||||||
IP地址:::1
 | 
					 | 
				
			||||||
操作人员:JT
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
出错时间:07/02/2024 15:07:59
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:SqlException
 | 
					 | 
				
			||||||
错误信息:列名 'CompileMan' 无效。
 | 
					 | 
				
			||||||
错误堆栈:
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlDataReader.get_MetaData()
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
 | 
					 | 
				
			||||||
   在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
 | 
					 | 
				
			||||||
   在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
 | 
					 | 
				
			||||||
   在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
 | 
					 | 
				
			||||||
   在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
 | 
					 | 
				
			||||||
   在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\SQLHelper.cs:行号 311
 | 
					 | 
				
			||||||
   在 FineUIPro.Web.HSSE.CostGoods.FeeRegistration.BindGrid() 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\HSSE\CostGoods\FeeRegistration.aspx.cs:行号 99
 | 
					 | 
				
			||||||
   在 FineUIPro.Web.HSSE.CostGoods.FeeRegistration.Page_Load(Object sender, EventArgs e) 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\HSSE\CostGoods\FeeRegistration.aspx.cs:行号 55
 | 
					 | 
				
			||||||
   在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
 | 
					 | 
				
			||||||
   在 System.EventHandler.Invoke(Object sender, EventArgs e)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Control.OnLoad(EventArgs e)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Control.LoadRecursive()
 | 
					 | 
				
			||||||
   在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
 | 
					 | 
				
			||||||
出错时间:07/02/2024 16:46:52
 | 
					 | 
				
			||||||
出错文件:http://localhost:8579/HSSE/CostGoods/FeeRegistration.aspx
 | 
					 | 
				
			||||||
IP地址:::1
 | 
					 | 
				
			||||||
操作人员:JT
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
出错时间:07/02/2024 16:46:52
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:NullReferenceException
 | 
					 | 
				
			||||||
错误信息:未将对象引用设置到对象的实例。
 | 
					 | 
				
			||||||
错误堆栈:
 | 
					 | 
				
			||||||
   在 (Object )
 | 
					 | 
				
			||||||
   在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr()
 | 
					 | 
				
			||||||
   在 (GridRow )
 | 
					 | 
				
			||||||
   在 FineUIPro.GridRow.InitTemplateContainers()
 | 
					 | 
				
			||||||
   在 (GridRow )
 | 
					 | 
				
			||||||
   在 FineUIPro.Grid.JKAqhrYRKGjUrputGryVTdIrcyJN(Int32 , Object )
 | 
					 | 
				
			||||||
   在 (Grid , Int32 , Object )
 | 
					 | 
				
			||||||
   在 FineUIPro.Grid.BCddVmyfIadUytlhvgnchfKxYmAe(DataTable , Boolean )
 | 
					 | 
				
			||||||
   在 (Grid , DataTable , Boolean )
 | 
					 | 
				
			||||||
   在 FineUIPro.Grid.DataBind(Boolean keepCurrentData)
 | 
					 | 
				
			||||||
   在 (Grid , Boolean )
 | 
					 | 
				
			||||||
   在 FineUIPro.Grid.DataBind()
 | 
					 | 
				
			||||||
   在 FineUIPro.Web.HSSE.CostGoods.FeeRegistration.BindGrid()
 | 
					 | 
				
			||||||
   在 FineUIPro.Web.HSSE.CostGoods.FeeRegistration.Page_Load(Object sender, EventArgs e)
 | 
					 | 
				
			||||||
   在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
 | 
					 | 
				
			||||||
   在 System.EventHandler.Invoke(Object sender, EventArgs e)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Control.OnLoad(EventArgs e)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Control.LoadRecursive()
 | 
					 | 
				
			||||||
   在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
 | 
					 | 
				
			||||||
出错时间:07/02/2024 16:50:32
 | 
					 | 
				
			||||||
出错文件:http://localhost:8579/HSSE/CostGoods/FeeRegistration.aspx
 | 
					 | 
				
			||||||
IP地址:::1
 | 
					 | 
				
			||||||
操作人员:JT
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
出错时间:07/02/2024 16:50:32
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:HttpCompileException
 | 
					 | 
				
			||||||
错误信息:g:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\HSSE\CostGoods\PayRegistrationNewEdit.aspx(36): error CS1061: “ASP.hsse_costgoods_payregistrationnewedit_aspx”不包含“SMonthTypeText_TextChanged”的定义,并且找不到可接受类型为“ASP.hsse_costgoods_payregistrationnewedit_aspx”的第一个参数的扩展方法“SMonthTypeText_TextChanged”(是否缺少 using 指令或程序集引用?)
 | 
					 | 
				
			||||||
错误堆栈:
 | 
					 | 
				
			||||||
   在 System.Web.Compilation.BuildManager.PostProcessFoundBuildResult(BuildResult result, Boolean keyFromVPP, VirtualPath virtualPath)
 | 
					 | 
				
			||||||
   在 System.Web.Compilation.BuildManager.GetBuildResultFromCacheInternal(String cacheKey, Boolean keyFromVPP, VirtualPath virtualPath, Int64 hashCode, Boolean ensureIsUpToDate)
 | 
					 | 
				
			||||||
   在 System.Web.Compilation.BuildManager.GetVPathBuildResultFromCacheInternal(VirtualPath virtualPath, Boolean ensureIsUpToDate)
 | 
					 | 
				
			||||||
   在 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)
 | 
					 | 
				
			||||||
出错时间:07/04/2024 09:53:49
 | 
					 | 
				
			||||||
出错文件:http://localhost:8579/HSSE/CostGoods/PayRegistrationNewEdit.aspx
 | 
					 | 
				
			||||||
IP地址:::1
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
出错时间:07/04/2024 09:53:49
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:InvalidOperationException
 | 
					 | 
				
			||||||
错误信息:不能添加已经存在的实体。
 | 
					 | 
				
			||||||
错误堆栈:
 | 
					 | 
				
			||||||
   在 System.Data.Linq.Table`1.InsertOnSubmit(TEntity entity)
 | 
					 | 
				
			||||||
   在 System.Data.Linq.Table`1.InsertAllOnSubmit[TSubEntity](IEnumerable`1 entities)
 | 
					 | 
				
			||||||
   在 BLL.BOSHENGMonitorService.AddPerson(String projectId, JArray arr, Sys_User user) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\BoSheng\BOSHENGMonitorService.cs:行号 320
 | 
					 | 
				
			||||||
出错时间:07/15/2024 11:49:20
 | 
					 | 
				
			||||||
出错时间:07/15/2024 11:49:21
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:InvalidOperationException
 | 
					 | 
				
			||||||
错误信息:不能添加已经存在的实体。
 | 
					 | 
				
			||||||
错误堆栈:
 | 
					 | 
				
			||||||
   在 System.Data.Linq.Table`1.InsertOnSubmit(TEntity entity)
 | 
					 | 
				
			||||||
   在 System.Data.Linq.Table`1.InsertAllOnSubmit[TSubEntity](IEnumerable`1 entities)
 | 
					 | 
				
			||||||
   在 BLL.BOSHENGMonitorService.AddPerson(String projectId, JArray arr, Sys_User user) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\BoSheng\BOSHENGMonitorService.cs:行号 320
 | 
					 | 
				
			||||||
出错时间:07/15/2024 12:19:20
 | 
					 | 
				
			||||||
出错时间:07/15/2024 12:19:20
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:InvalidOperationException
 | 
					 | 
				
			||||||
错误信息:不能添加已经存在的实体。
 | 
					 | 
				
			||||||
错误堆栈:
 | 
					 | 
				
			||||||
   在 System.Data.Linq.Table`1.InsertOnSubmit(TEntity entity)
 | 
					 | 
				
			||||||
   在 System.Data.Linq.Table`1.InsertAllOnSubmit[TSubEntity](IEnumerable`1 entities)
 | 
					 | 
				
			||||||
   在 BLL.BOSHENGMonitorService.AddPerson(String projectId, JArray arr, Sys_User user) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\BoSheng\BOSHENGMonitorService.cs:行号 320
 | 
					 | 
				
			||||||
出错时间:07/15/2024 12:49:20
 | 
					 | 
				
			||||||
出错时间:07/15/2024 12:49:20
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型: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() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 13827
 | 
					 | 
				
			||||||
   在 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2181
 | 
					 | 
				
			||||||
出错时间:07/15/2024 13:19:20
 | 
					 | 
				
			||||||
出错时间:07/15/2024 13:19:20
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型: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) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 13851
 | 
					 | 
				
			||||||
   在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2046
 | 
					 | 
				
			||||||
出错时间:07/15/2024 13:19:20
 | 
					 | 
				
			||||||
出错时间:07/15/2024 13:19:20
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型: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) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 13843
 | 
					 | 
				
			||||||
   在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1942
 | 
					 | 
				
			||||||
出错时间:07/15/2024 13:19:20
 | 
					 | 
				
			||||||
出错时间:07/15/2024 13:19:20
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型: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) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 13643
 | 
					 | 
				
			||||||
   在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1884
 | 
					 | 
				
			||||||
出错时间:07/15/2024 13:19:20
 | 
					 | 
				
			||||||
出错时间:07/15/2024 13:19:20
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:InvalidOperationException
 | 
					 | 
				
			||||||
错误信息:不能添加已经存在的实体。
 | 
					 | 
				
			||||||
错误堆栈:
 | 
					 | 
				
			||||||
   在 System.Data.Linq.Table`1.InsertOnSubmit(TEntity entity)
 | 
					 | 
				
			||||||
   在 System.Data.Linq.Table`1.InsertAllOnSubmit[TSubEntity](IEnumerable`1 entities)
 | 
					 | 
				
			||||||
   在 BLL.BOSHENGMonitorService.AddPerson(String projectId, JArray arr, Sys_User user) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\BoSheng\BOSHENGMonitorService.cs:行号 320
 | 
					 | 
				
			||||||
出错时间:07/15/2024 13:19:20
 | 
					 | 
				
			||||||
出错时间:07/15/2024 13:19:20
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:ChangeConflictException
 | 
					 | 
				
			||||||
错误信息:2 的 1 更新失败。
 | 
					 | 
				
			||||||
错误堆栈:
 | 
					 | 
				
			||||||
   在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
 | 
					 | 
				
			||||||
   在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
 | 
					 | 
				
			||||||
   在 BLL.ProjectService.UpdateProject(Base_Project project) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\ProjectData\ProjectService.cs:行号 193
 | 
					 | 
				
			||||||
   在 FineUIPro.Web.ProjectData.ProjectSetSave.SaveData() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\ProjectData\ProjectSetSave.aspx.cs:行号 284
 | 
					 | 
				
			||||||
   在 FineUIPro.Web.ProjectData.ProjectSetSave.btnSave_Click(Object sender, EventArgs e) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\ProjectData\ProjectSetSave.aspx.cs:行号 189
 | 
					 | 
				
			||||||
   在 FineUIPro.Button.OnClick(EventArgs e)
 | 
					 | 
				
			||||||
   在 (Button , EventArgs )
 | 
					 | 
				
			||||||
   在 FineUIPro.Button.RaisePostBackEvent(String eventArgument)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
 | 
					 | 
				
			||||||
出错时间:07/23/2024 17:52:24
 | 
					 | 
				
			||||||
出错文件:http://localhost:8579/ProjectData/ProjectSetSave.aspx
 | 
					 | 
				
			||||||
IP地址:::1
 | 
					 | 
				
			||||||
操作人员:JT
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
出错时间:07/23/2024 17:52:24
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:InvalidOperationException
 | 
					 | 
				
			||||||
错误信息:不能添加已经存在的实体。
 | 
					 | 
				
			||||||
错误堆栈:
 | 
					 | 
				
			||||||
   在 System.Data.Linq.Table`1.InsertOnSubmit(TEntity entity)
 | 
					 | 
				
			||||||
   在 System.Data.Linq.Table`1.InsertAllOnSubmit[TSubEntity](IEnumerable`1 entities)
 | 
					 | 
				
			||||||
   在 BLL.BOSHENGMonitorService.AddPerson(String projectId, JArray arr, Sys_User user) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\BoSheng\BOSHENGMonitorService.cs:行号 318
 | 
					 | 
				
			||||||
出错时间:07/23/2024 18:18:27
 | 
					 | 
				
			||||||
出错时间:07/23/2024 18:18:27
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:InvalidOperationException
 | 
					 | 
				
			||||||
错误信息:不能添加已经存在的实体。
 | 
					 | 
				
			||||||
错误堆栈:
 | 
					 | 
				
			||||||
   在 System.Data.Linq.Table`1.InsertOnSubmit(TEntity entity)
 | 
					 | 
				
			||||||
   在 System.Data.Linq.Table`1.InsertAllOnSubmit[TSubEntity](IEnumerable`1 entities)
 | 
					 | 
				
			||||||
   在 BLL.BOSHENGMonitorService.AddPerson(String projectId, JArray arr, Sys_User user) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\BoSheng\BOSHENGMonitorService.cs:行号 318
 | 
					 | 
				
			||||||
出错时间:07/24/2024 10:37:35
 | 
					 | 
				
			||||||
出错时间:07/24/2024 10:37:35
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:InvalidOperationException
 | 
					 | 
				
			||||||
错误信息:不能添加已经存在的实体。
 | 
					 | 
				
			||||||
错误堆栈:
 | 
					 | 
				
			||||||
   在 System.Data.Linq.Table`1.InsertOnSubmit(TEntity entity)
 | 
					 | 
				
			||||||
   在 System.Data.Linq.Table`1.InsertAllOnSubmit[TSubEntity](IEnumerable`1 entities)
 | 
					 | 
				
			||||||
   在 BLL.BOSHENGMonitorService.AddPerson(String projectId, JArray arr, Sys_User user) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\BoSheng\BOSHENGMonitorService.cs:行号 318
 | 
					 | 
				
			||||||
出错时间:07/24/2024 11:14:23
 | 
					 | 
				
			||||||
出错时间:07/24/2024 11:14:23
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:SqlException
 | 
					 | 
				
			||||||
错误信息:参数化查询 '(@ProjectId nvarchar(4000))select*from Transfer_Civil_Structure
' 需要参数 '@ProjectId',但未提供该参数。
 | 
					 | 
				
			||||||
错误堆栈:
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlDataReader.get_MetaData()
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
 | 
					 | 
				
			||||||
   在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
 | 
					 | 
				
			||||||
   在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
 | 
					 | 
				
			||||||
   在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
 | 
					 | 
				
			||||||
   在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
 | 
					 | 
				
			||||||
   在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\SQLHelper.cs:行号 311
 | 
					 | 
				
			||||||
   在 FineUIPro.Web.Transfer.CivilStructure.BindGrid() 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Transfer\CivilStructure.aspx.cs:行号 61
 | 
					 | 
				
			||||||
   在 FineUIPro.Web.Transfer.CivilStructure.Page_Load(Object sender, EventArgs e) 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Transfer\CivilStructure.aspx.cs:行号 24
 | 
					 | 
				
			||||||
   在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
 | 
					 | 
				
			||||||
   在 System.EventHandler.Invoke(Object sender, EventArgs e)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Control.OnLoad(EventArgs e)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Control.LoadRecursive()
 | 
					 | 
				
			||||||
   在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
 | 
					 | 
				
			||||||
出错时间:07/25/2024 09:25:40
 | 
					 | 
				
			||||||
出错文件:http://localhost:8579/Transfer/CivilStructure.aspx
 | 
					 | 
				
			||||||
IP地址:::1
 | 
					 | 
				
			||||||
操作人员:JT
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
出错时间:07/25/2024 09:25:40
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型: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:行号 2181
 | 
					 | 
				
			||||||
出错时间:07/25/2024 11:36:34
 | 
					 | 
				
			||||||
出错时间:07/25/2024 11:36:34
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型: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:行号 2046
 | 
					 | 
				
			||||||
出错时间:07/25/2024 11:36:34
 | 
					 | 
				
			||||||
出错时间:07/25/2024 11:36:34
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型: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:行号 1942
 | 
					 | 
				
			||||||
出错时间:07/25/2024 11:36:34
 | 
					 | 
				
			||||||
出错时间:07/25/2024 11:36:34
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型: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:行号 1884
 | 
					 | 
				
			||||||
出错时间:07/25/2024 11:36:34
 | 
					 | 
				
			||||||
出错时间:07/25/2024 11:36:34
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型: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:行号 2181
 | 
					 | 
				
			||||||
出错时间:07/25/2024 13:36:33
 | 
					 | 
				
			||||||
出错时间:07/25/2024 13:36:33
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型: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:行号 2046
 | 
					 | 
				
			||||||
出错时间:07/25/2024 13:36:33
 | 
					 | 
				
			||||||
出错时间:07/25/2024 13:36:33
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型: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:行号 1942
 | 
					 | 
				
			||||||
出错时间:07/25/2024 13:36:33
 | 
					 | 
				
			||||||
出错时间:07/25/2024 13:36:33
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型: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:行号 1884
 | 
					 | 
				
			||||||
出错时间:07/25/2024 13:36:33
 | 
					 | 
				
			||||||
出错时间:07/25/2024 13:36:33
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:SqlException
 | 
					 | 
				
			||||||
错误信息:参数化查询 '(@ProjectId nvarchar(4000),@Type nvarchar(1))select * from Trans' 需要参数 '@ProjectId',但未提供该参数。
 | 
					 | 
				
			||||||
错误堆栈:
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlDataReader.get_MetaData()
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
 | 
					 | 
				
			||||||
   在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
 | 
					 | 
				
			||||||
   在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
 | 
					 | 
				
			||||||
   在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
 | 
					 | 
				
			||||||
   在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
 | 
					 | 
				
			||||||
   在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
 | 
					 | 
				
			||||||
   在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\SQLHelper.cs:行号 311
 | 
					 | 
				
			||||||
   在 FineUIPro.Web.Transfer.LHCSystemList.BindGrid() 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Transfer\LHCSystemList.aspx.cs:行号 78
 | 
					 | 
				
			||||||
   在 FineUIPro.Web.Transfer.LHCSystemList.Page_Load(Object sender, EventArgs e) 位置 G:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Transfer\LHCSystemList.aspx.cs:行号 42
 | 
					 | 
				
			||||||
   在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
 | 
					 | 
				
			||||||
   在 System.EventHandler.Invoke(Object sender, EventArgs e)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Control.OnLoad(EventArgs e)
 | 
					 | 
				
			||||||
   在 System.Web.UI.Control.LoadRecursive()
 | 
					 | 
				
			||||||
   在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
 | 
					 | 
				
			||||||
出错时间:07/29/2024 16:03:19
 | 
					 | 
				
			||||||
出错文件:http://localhost:8579/Transfer/LHCSystemList.aspx?Type=0
 | 
					 | 
				
			||||||
IP地址:::1
 | 
					 | 
				
			||||||
操作人员:JT
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
出错时间:07/29/2024 16:03:19
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:HttpParseException
 | 
					 | 
				
			||||||
错误信息:FineUIPro.ControlBaseCollection 必须具有类型为“FineUIPro.ControlBase”的项。“div”的类型为“System.Web.UI.HtmlControls.HtmlGenericControl”。
 | 
					 | 
				
			||||||
错误堆栈:
 | 
					 | 
				
			||||||
   在 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.ControlBaseCollection 必须具有类型为“FineUIPro.ControlBase”的项。“div”的类型为“System.Web.UI.HtmlControls.HtmlGenericControl”。
 | 
					 | 
				
			||||||
----错误堆栈:
 | 
					 | 
				
			||||||
       在 System.Web.UI.CollectionBuilder.GetChildControlType(String tagName, IDictionary attribs)
 | 
					 | 
				
			||||||
       在 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)
 | 
					 | 
				
			||||||
出错时间:07/29/2024 16:40:04
 | 
					 | 
				
			||||||
出错文件:http://localhost:8579/Transfer/Chart/SystemstatusChart.aspx
 | 
					 | 
				
			||||||
IP地址:::1
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
出错时间:07/29/2024 16:40:04
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
错误信息开始=====>
 | 
					 | 
				
			||||||
错误类型:HttpCompileException
 | 
					 | 
				
			||||||
错误信息:g:\公司项目\五环\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Transfer\Chart\SystemstatusChart.aspx(166): error CS0103: 当前上下文中不存在名称“Two”
 | 
					 | 
				
			||||||
错误堆栈:
 | 
					 | 
				
			||||||
   在 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)
 | 
					 | 
				
			||||||
出错时间:07/29/2024 16:47:59
 | 
					 | 
				
			||||||
出错文件:http://localhost:8579/Transfer/Chart/SystemstatusChart.aspx
 | 
					 | 
				
			||||||
IP地址:::1
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
出错时间:07/29/2024 16:47:59
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
| 
						 | 
					@ -42,12 +42,18 @@
 | 
				
			||||||
                        ShowSelectedCell="true" DataIDField="UnitWorkId" AllowPaging="true" IsDatabasePaging="true"
 | 
					                        ShowSelectedCell="true" DataIDField="UnitWorkId" AllowPaging="true" IsDatabasePaging="true"
 | 
				
			||||||
                        PageSize="10" OnPageIndexChange="Grid1_PageIndexChange" AllowFilters="true" OnFilterChange="Grid1_FilterChange">
 | 
					                        PageSize="10" OnPageIndexChange="Grid1_PageIndexChange" AllowFilters="true" OnFilterChange="Grid1_FilterChange">
 | 
				
			||||||
                        <Columns>
 | 
					                        <Columns>
 | 
				
			||||||
                            <f:RenderField Width="150px" ColumnID="UnitWorkCode" DataField="UnitWorkCode" FieldType="String"
 | 
					                            <f:RenderField Width="150px" ColumnID="SupUnitWorkCode" DataField="SupUnitWorkCode" FieldType="String"
 | 
				
			||||||
                                HeaderText="单位工程编号" HeaderTextAlign="Center" TextAlign="Left">
 | 
					                                HeaderText="单位工程编号" HeaderTextAlign="Center" TextAlign="Left">
 | 
				
			||||||
                            </f:RenderField>
 | 
					                            </f:RenderField>
 | 
				
			||||||
                            <f:RenderField Width="200px" ColumnID="UnitWorkName" DataField="UnitWorkName" FieldType="String"
 | 
					                            <f:RenderField Width="200px" ColumnID="SupUnitWorkName" DataField="SupUnitWorkName" FieldType="String"
 | 
				
			||||||
                                HeaderText="单位工程名称" HeaderTextAlign="Center" TextAlign="Left">
 | 
					                                HeaderText="单位工程名称" HeaderTextAlign="Center" TextAlign="Left">
 | 
				
			||||||
                            </f:RenderField>
 | 
					                            </f:RenderField>
 | 
				
			||||||
 | 
					                            <f:RenderField Width="150px" ColumnID="UnitWorkCode" DataField="UnitWorkCode" FieldType="String"
 | 
				
			||||||
 | 
					                                HeaderText="子单位工程编号" HeaderTextAlign="Center" TextAlign="Left">
 | 
				
			||||||
 | 
					                            </f:RenderField>
 | 
				
			||||||
 | 
					                            <f:RenderField Width="150px" ColumnID="UnitWorkName" DataField="UnitWorkName" FieldType="String"
 | 
				
			||||||
 | 
					                                HeaderText="子单位工程名称" HeaderTextAlign="Center" TextAlign="Left">
 | 
				
			||||||
 | 
					                            </f:RenderField>
 | 
				
			||||||
                        </Columns>
 | 
					                        </Columns>
 | 
				
			||||||
                        <PageItems>
 | 
					                        <PageItems>
 | 
				
			||||||
                            <f:ToolbarSeparator ID="ToolbarSeparator1" runat="server">
 | 
					                            <f:ToolbarSeparator ID="ToolbarSeparator1" runat="server">
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -235,7 +235,15 @@ namespace FineUIPro.Web.ProjectData
 | 
				
			||||||
                if (BLL.CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.UnitWorkMenuId, BLL.Const.BtnModify))
 | 
					                if (BLL.CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.UnitWorkMenuId, BLL.Const.BtnModify))
 | 
				
			||||||
                {
 | 
					                {
 | 
				
			||||||
                    this.hdSelectId.Text = this.trProjects.SelectedNode.NodeID;
 | 
					                    this.hdSelectId.Text = this.trProjects.SelectedNode.NodeID;
 | 
				
			||||||
                    PageContext.RegisterStartupScript(Window2.GetShowReference(String.Format("UnitWorkEdit.aspx?Id={0}", this.trProjects.SelectedNode.NodeID, "编辑 - ")));
 | 
					                    var unitWork = BLL.UnitWorkService.GetUnitWorkByUnitWorkId(this.hdSelectId.Text);
 | 
				
			||||||
 | 
					                    if (unitWork!=null)
 | 
				
			||||||
 | 
					                    {
 | 
				
			||||||
 | 
					                        PageContext.RegisterStartupScript(Window2.GetShowReference(String.Format("UnitWorkEdit.aspx?Id={0}&&SuperId={1}", this.trProjects.SelectedNode.NodeID,unitWork.SuperUnitWork, "编辑 - ")));
 | 
				
			||||||
 | 
					                    }
 | 
				
			||||||
 | 
					                    else
 | 
				
			||||||
 | 
					                    {
 | 
				
			||||||
 | 
					                        PageContext.RegisterStartupScript(Window2.GetShowReference(String.Format("UnitWorkEdit.aspx?Id={0}", this.trProjects.SelectedNode.NodeID, "编辑 - ")));
 | 
				
			||||||
 | 
					                    }                    
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
                else
 | 
					                else
 | 
				
			||||||
                {
 | 
					                {
 | 
				
			||||||
| 
						 | 
					@ -259,10 +267,24 @@ namespace FineUIPro.Web.ProjectData
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
                if (BLL.CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.UnitWorkMenuId, BLL.Const.BtnAdd))
 | 
					                if (BLL.CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.UnitWorkMenuId, BLL.Const.BtnAdd))
 | 
				
			||||||
                {
 | 
					                {
 | 
				
			||||||
                        string openUrl = String.Format("UnitWorkEdit.aspx?SuperId={0}", this.trProjects.SelectedNode.NodeID, "增加 - ");
 | 
					                    string id = this.trProjects.SelectedNode.NodeID;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                        PageContext.RegisterStartupScript(Window2.GetSaveStateReference(hdSelectId.ClientID)
 | 
					                    if (id != null)
 | 
				
			||||||
                                + Window2.GetShowReference(openUrl));                  
 | 
					                    {
 | 
				
			||||||
 | 
					                        var unitWork = BLL.UnitWorkService.GetUnitWorkByUnitWorkId(id);
 | 
				
			||||||
 | 
					                        if (unitWork != null)
 | 
				
			||||||
 | 
					                        {
 | 
				
			||||||
 | 
					                            string openUrl = String.Format("UnitWorkEdit.aspx?SuperId={0}", this.trProjects.SelectedNode.NodeID, "增加 - ");
 | 
				
			||||||
 | 
					                            PageContext.RegisterStartupScript(Window2.GetSaveStateReference(hdSelectId.ClientID)
 | 
				
			||||||
 | 
					                                    + Window2.GetShowReference(openUrl));
 | 
				
			||||||
 | 
					                        }
 | 
				
			||||||
 | 
					                        else
 | 
				
			||||||
 | 
					                        {
 | 
				
			||||||
 | 
					                            string openUrl = String.Format("UnitWorkEdit.aspx", "增加 - ");
 | 
				
			||||||
 | 
					                            PageContext.RegisterStartupScript(Window2.GetSaveStateReference(hdSelectId.ClientID)
 | 
				
			||||||
 | 
					                                    + Window2.GetShowReference(openUrl));
 | 
				
			||||||
 | 
					                        }
 | 
				
			||||||
 | 
					                    }
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
                else
 | 
					                else
 | 
				
			||||||
                {
 | 
					                {
 | 
				
			||||||
| 
						 | 
					@ -275,8 +297,6 @@ namespace FineUIPro.Web.ProjectData
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        /// <summary>
 | 
					        /// <summary>
 | 
				
			||||||
        /// 右键删除事件
 | 
					        /// 右键删除事件
 | 
				
			||||||
        /// </summary>
 | 
					        /// </summary>
 | 
				
			||||||
| 
						 | 
					@ -389,20 +409,35 @@ namespace FineUIPro.Web.ProjectData
 | 
				
			||||||
        /// </summary>
 | 
					        /// </summary>
 | 
				
			||||||
        private void BindGrid()
 | 
					        private void BindGrid()
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            List<Model.WBS_UnitWork> items = new List<Model.WBS_UnitWork>();
 | 
					            List<Model.UnitWork> items = new List<Model.UnitWork>();
 | 
				
			||||||
            if (this.trProjects.SelectedNode != null)
 | 
					            if (this.trProjects.SelectedNode != null)
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
                if (this.trProjects.SelectedNode.CommandName == "unitWork")
 | 
					                if (this.trProjects.SelectedNode.CommandName == "unitWork")
 | 
				
			||||||
                {
 | 
					                {
 | 
				
			||||||
                    Model.WBS_UnitWork installation = BLL.UnitWorkService.getUnitWorkByUnitWorkId(this.trProjects.SelectedNode.NodeID);
 | 
					                    Model.WBS_UnitWork unitWork = BLL.UnitWorkService.getUnitWorkByUnitWorkId(this.trProjects.SelectedNode.NodeID);
 | 
				
			||||||
                    Model.WBS_UnitWork item = new Model.WBS_UnitWork();
 | 
					                    if (unitWork != null)
 | 
				
			||||||
                    if (installation != null)
 | 
					 | 
				
			||||||
                    {
 | 
					                    {
 | 
				
			||||||
                        item.UnitWorkId = installation.UnitWorkId;
 | 
					                        Model.UnitWork item = new Model.UnitWork();
 | 
				
			||||||
                        item.UnitWorkCode = installation.UnitWorkCode;
 | 
					                        if (unitWork.SuperUnitWork == "0")
 | 
				
			||||||
                        item.UnitWorkName = installation.UnitWorkName;
 | 
					                        {
 | 
				
			||||||
                        //item.ProjectType = "unitWork";
 | 
					                            item.UnitWorkId = unitWork.UnitWorkId;
 | 
				
			||||||
                        items.Add(item);
 | 
					                            item.SupUnitWorkCode = unitWork.UnitWorkCode;
 | 
				
			||||||
 | 
					                            item.SupUnitWorkName = unitWork.UnitWorkName;
 | 
				
			||||||
 | 
					                            items.Add(item);
 | 
				
			||||||
 | 
					                        }
 | 
				
			||||||
 | 
					                        else
 | 
				
			||||||
 | 
					                        {
 | 
				
			||||||
 | 
					                            item.UnitWorkId = unitWork.UnitWorkId;
 | 
				
			||||||
 | 
					                            var supUnitWork = BLL.UnitWorkService.getUnitWorkByUnitWorkId(unitWork.SuperUnitWork);
 | 
				
			||||||
 | 
					                            if (supUnitWork != null)
 | 
				
			||||||
 | 
					                            {
 | 
				
			||||||
 | 
					                                item.SupUnitWorkCode = supUnitWork.UnitWorkCode;
 | 
				
			||||||
 | 
					                                item.SupUnitWorkName = supUnitWork.UnitWorkName;
 | 
				
			||||||
 | 
					                            }
 | 
				
			||||||
 | 
					                            item.UnitWorkCode = unitWork.UnitWorkCode;
 | 
				
			||||||
 | 
					                            item.UnitWorkName = unitWork.UnitWorkName;
 | 
				
			||||||
 | 
					                            items.Add(item);
 | 
				
			||||||
 | 
					                        }
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
                this.Grid1.DataSource = items;
 | 
					                this.Grid1.DataSource = items;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -15,12 +15,22 @@
 | 
				
			||||||
            <Rows>
 | 
					            <Rows>
 | 
				
			||||||
                <f:FormRow>
 | 
					                <f:FormRow>
 | 
				
			||||||
                    <Items>
 | 
					                    <Items>
 | 
				
			||||||
                        <f:TextBox ID="txtUnitWorkCode" runat="server" Label="单位工程编号" LabelWidth="140px" Required="true" ShowRedStar="true" FocusOnPageLoad="true"></f:TextBox>                        
 | 
					                        <f:TextBox ID="txtSupUnitWorkCode" runat="server" Label="单位工程编号" LabelWidth="140px" Required="true" ShowRedStar="true" FocusOnPageLoad="true"></f:TextBox>                        
 | 
				
			||||||
                    </Items>
 | 
					                    </Items>
 | 
				
			||||||
                </f:FormRow>
 | 
					                </f:FormRow>
 | 
				
			||||||
                <f:FormRow>
 | 
					                <f:FormRow>
 | 
				
			||||||
                    <Items>
 | 
					                    <Items>
 | 
				
			||||||
                        <f:TextBox ID="txtUnitWorkName" runat="server" Label="单位工程名称" LabelWidth="140px" Required="true" ShowRedStar="true"></f:TextBox>
 | 
					                        <f:TextBox ID="txtSupUnitWorkName" runat="server" Label="单位工程名称" LabelWidth="140px" Required="true" ShowRedStar="true"></f:TextBox>
 | 
				
			||||||
 | 
					                    </Items>
 | 
				
			||||||
 | 
					                </f:FormRow>
 | 
				
			||||||
 | 
					                <f:FormRow>
 | 
				
			||||||
 | 
					                    <Items>
 | 
				
			||||||
 | 
					                        <f:TextBox ID="txtUnitWorkCode" runat="server" Label="子单位工程编号" LabelWidth="140px" ></f:TextBox>                        
 | 
				
			||||||
 | 
					                    </Items>
 | 
				
			||||||
 | 
					                </f:FormRow>
 | 
				
			||||||
 | 
					                <f:FormRow>
 | 
				
			||||||
 | 
					                    <Items>
 | 
				
			||||||
 | 
					                        <f:TextBox ID="txtUnitWorkName" runat="server" Label="子单位工程名称" LabelWidth="140px" ></f:TextBox>
 | 
				
			||||||
                    </Items>
 | 
					                    </Items>
 | 
				
			||||||
                </f:FormRow>
 | 
					                </f:FormRow>
 | 
				
			||||||
            </Rows>
 | 
					            </Rows>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -13,57 +13,163 @@ namespace FineUIPro.Web.ProjectData
 | 
				
			||||||
            if (!IsPostBack)
 | 
					            if (!IsPostBack)
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
                superId = Request.Params["SuperId"];
 | 
					                superId = Request.Params["SuperId"];
 | 
				
			||||||
 | 
					                if (!string.IsNullOrEmpty(superId) && superId != null)
 | 
				
			||||||
 | 
					                {
 | 
				
			||||||
 | 
					                    this.txtUnitWorkCode.Hidden = false;
 | 
				
			||||||
 | 
					                    this.txtUnitWorkName.Hidden = false;
 | 
				
			||||||
 | 
					                    Model.WBS_UnitWork supUnitWork = BLL.UnitWorkService.getUnitWorkByUnitWorkId(superId);
 | 
				
			||||||
 | 
					                    if (supUnitWork != null)
 | 
				
			||||||
 | 
					                    {
 | 
				
			||||||
 | 
					                        this.txtSupUnitWorkCode.Text = supUnitWork.UnitWorkCode;
 | 
				
			||||||
 | 
					                        this.txtSupUnitWorkName.Text = supUnitWork.UnitWorkName;
 | 
				
			||||||
 | 
					                    }
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
 | 
					                else
 | 
				
			||||||
 | 
					                {
 | 
				
			||||||
 | 
					                    this.txtUnitWorkCode.Hidden = true;
 | 
				
			||||||
 | 
					                    this.txtUnitWorkName.Hidden = true;
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
                id = Request.Params["Id"];
 | 
					                id = Request.Params["Id"];
 | 
				
			||||||
                Model.WBS_UnitWork unitWork = BLL.UnitWorkService.getUnitWorkByUnitWorkId(id);
 | 
					                Model.WBS_UnitWork unitWork = BLL.UnitWorkService.getUnitWorkByUnitWorkId(id);
 | 
				
			||||||
                if (unitWork != null)
 | 
					                if (unitWork != null)
 | 
				
			||||||
                {
 | 
					                {
 | 
				
			||||||
                    this.txtUnitWorkCode.Text = unitWork.UnitWorkCode;
 | 
					                    if (unitWork.SuperUnitWork == "0")
 | 
				
			||||||
                    this.txtUnitWorkName.Text = unitWork.UnitWorkName;
 | 
					                    {
 | 
				
			||||||
 | 
					                        this.txtUnitWorkCode.Hidden = true;
 | 
				
			||||||
 | 
					                        this.txtUnitWorkName.Hidden = true;
 | 
				
			||||||
 | 
					                        this.txtSupUnitWorkCode.Text = unitWork.UnitWorkCode;
 | 
				
			||||||
 | 
					                        this.txtSupUnitWorkName.Text = unitWork.UnitWorkName;
 | 
				
			||||||
 | 
					                    }
 | 
				
			||||||
 | 
					                    else
 | 
				
			||||||
 | 
					                    {
 | 
				
			||||||
 | 
					                        this.txtUnitWorkCode.Hidden = false;
 | 
				
			||||||
 | 
					                        this.txtUnitWorkName.Hidden = false;
 | 
				
			||||||
 | 
					                        Model.WBS_UnitWork supUnitWork = BLL.UnitWorkService.getUnitWorkByUnitWorkId(unitWork.SuperUnitWork);
 | 
				
			||||||
 | 
					                        if (supUnitWork != null)
 | 
				
			||||||
 | 
					                        {
 | 
				
			||||||
 | 
					                            this.txtSupUnitWorkCode.Text = supUnitWork.UnitWorkCode;
 | 
				
			||||||
 | 
					                            this.txtSupUnitWorkName.Text = supUnitWork.UnitWorkName;
 | 
				
			||||||
 | 
					                        }
 | 
				
			||||||
 | 
					                        this.txtUnitWorkCode.Text = unitWork.UnitWorkCode;
 | 
				
			||||||
 | 
					                        this.txtUnitWorkName.Text = unitWork.UnitWorkName;
 | 
				
			||||||
 | 
					                    }
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        protected void btnSave_Click(object sender, EventArgs e)
 | 
					        protected void btnSave_Click(object sender, EventArgs e)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            string projectId = string.Empty;
 | 
					            if (!string.IsNullOrEmpty(superId) && superId != null)
 | 
				
			||||||
            string superUnitWorkId = string.Empty;
 | 
					 | 
				
			||||||
            Model.Base_Project project = BLL.ProjectService.GetProjectByProjectId(superId);
 | 
					 | 
				
			||||||
            Model.WBS_UnitWork parUnitWork = BLL.UnitWorkService.getUnitWorkByUnitWorkId(superId);
 | 
					 | 
				
			||||||
            if (project != null)
 | 
					 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
                projectId = project.ProjectId;
 | 
					                Model.WBS_UnitWork supUnitWork = BLL.UnitWorkService.getUnitWorkByUnitWorkId(superId);
 | 
				
			||||||
                superUnitWorkId = "0";
 | 
					                if (supUnitWork != null)
 | 
				
			||||||
            }
 | 
					                {
 | 
				
			||||||
            else if (parUnitWork != null)
 | 
					                    Model.WBS_UnitWork newUnitWork = new Model.WBS_UnitWork();
 | 
				
			||||||
            {
 | 
					                    newUnitWork.UnitWorkCode = this.txtUnitWorkCode.Text.Trim();
 | 
				
			||||||
                projectId = parUnitWork.ProjectId;
 | 
					                    newUnitWork.UnitWorkName = this.txtUnitWorkName.Text.Trim();
 | 
				
			||||||
                superUnitWorkId = superId;
 | 
					                    newUnitWork.SuperUnitWork = superId;
 | 
				
			||||||
            }
 | 
					                    newUnitWork.ProjectId = this.CurrUser.LoginProjectId;
 | 
				
			||||||
 | 
					                    if (!string.IsNullOrEmpty(id))
 | 
				
			||||||
            Model.WBS_UnitWork unitWork = new Model.WBS_UnitWork();
 | 
					                    {
 | 
				
			||||||
            unitWork.UnitWorkCode = txtUnitWorkCode.Text.Trim();
 | 
					                        newUnitWork.UnitWorkId = id;
 | 
				
			||||||
            unitWork.UnitWorkName = txtUnitWorkName.Text.Trim();
 | 
					                        BLL.UnitWorkService.UpdateUnitWork(newUnitWork);
 | 
				
			||||||
            unitWork.ProjectId = projectId;
 | 
					                        BLL.LogService.AddSys_Log(this.CurrUser, newUnitWork.UnitWorkId, newUnitWork.UnitWorkId, BLL.Const.UnitWorkMenuId, "修改子单位工程!");
 | 
				
			||||||
            unitWork.SuperUnitWork = superUnitWorkId;
 | 
					                        PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
 | 
				
			||||||
            if (string.IsNullOrEmpty(id))
 | 
					                    }
 | 
				
			||||||
            {
 | 
					                    else
 | 
				
			||||||
                unitWork.UnitWorkId = SQLHelper.GetNewID(typeof(Model.WBS_UnitWork));
 | 
					                    {
 | 
				
			||||||
                BLL.UnitWorkService.AddUnitWork(unitWork);
 | 
					                        newUnitWork.UnitWorkId = SQLHelper.GetNewID(typeof(Model.WBS_UnitWork));
 | 
				
			||||||
 | 
					                        BLL.UnitWorkService.AddUnitWork(newUnitWork);
 | 
				
			||||||
                BLL.LogService.AddSys_Log(this.CurrUser, unitWork.UnitWorkId, unitWork.UnitWorkId, BLL.Const.UnitWorkMenuId, "增加单位工程!");
 | 
					                        BLL.LogService.AddSys_Log(this.CurrUser, newUnitWork.UnitWorkId, newUnitWork.UnitWorkId, BLL.Const.UnitWorkMenuId, "增加子单位工程!");
 | 
				
			||||||
                PageContext.RegisterStartupScript(ActiveWindow.GetWriteBackValueReference(unitWork.UnitWorkId) + ActiveWindow.GetHidePostBackReference());
 | 
					                        PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());  //PageContext.RegisterStartupScript(ActiveWindow.GetWriteBackValueReference(newUnitWork.UnitWorkId) + ActiveWindow.GetHidePostBackReference());
 | 
				
			||||||
 | 
					                    }
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
 | 
					                else
 | 
				
			||||||
 | 
					                {
 | 
				
			||||||
 | 
					                    Model.WBS_UnitWork newUnitWork = new Model.WBS_UnitWork();
 | 
				
			||||||
 | 
					                    newUnitWork.UnitWorkCode = this.txtSupUnitWorkCode.Text.Trim();
 | 
				
			||||||
 | 
					                    newUnitWork.UnitWorkName = this.txtSupUnitWorkName.Text.Trim();
 | 
				
			||||||
 | 
					                    newUnitWork.SuperUnitWork = "0";
 | 
				
			||||||
 | 
					                    newUnitWork.ProjectId = this.CurrUser.LoginProjectId;
 | 
				
			||||||
 | 
					                    if (!string.IsNullOrEmpty(id))
 | 
				
			||||||
 | 
					                    {
 | 
				
			||||||
 | 
					                        newUnitWork.UnitWorkId = id;
 | 
				
			||||||
 | 
					                        BLL.UnitWorkService.UpdateUnitWork(newUnitWork);
 | 
				
			||||||
 | 
					                        BLL.LogService.AddSys_Log(this.CurrUser, newUnitWork.UnitWorkId, newUnitWork.UnitWorkId, BLL.Const.UnitWorkMenuId, "修改单位工程!");
 | 
				
			||||||
 | 
					                        PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
 | 
				
			||||||
 | 
					                    }
 | 
				
			||||||
 | 
					                    else
 | 
				
			||||||
 | 
					                    {
 | 
				
			||||||
 | 
					                        newUnitWork.UnitWorkId = SQLHelper.GetNewID(typeof(Model.WBS_UnitWork));
 | 
				
			||||||
 | 
					                        BLL.UnitWorkService.AddUnitWork(newUnitWork);
 | 
				
			||||||
 | 
					                        BLL.LogService.AddSys_Log(this.CurrUser, newUnitWork.UnitWorkId, newUnitWork.UnitWorkId, BLL.Const.UnitWorkMenuId, "增加单位工程!");
 | 
				
			||||||
 | 
					                        PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());  //PageContext.RegisterStartupScript(ActiveWindow.GetWriteBackValueReference(newUnitWork.UnitWorkId) + ActiveWindow.GetHidePostBackReference());
 | 
				
			||||||
 | 
					                    }
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
            else
 | 
					            else
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
                Model.WBS_UnitWork unitWork1 = BLL.UnitWorkService.getUnitWorkByUnitWorkId(id);
 | 
					                Model.WBS_UnitWork newUnitWork = new Model.WBS_UnitWork();
 | 
				
			||||||
                unitWork.UnitWorkId = id;
 | 
					                newUnitWork.UnitWorkCode = this.txtSupUnitWorkCode.Text.Trim();
 | 
				
			||||||
                unitWork.ProjectId = unitWork1.ProjectId;
 | 
					                newUnitWork.UnitWorkName = this.txtSupUnitWorkName.Text.Trim();
 | 
				
			||||||
                unitWork.SuperUnitWork = unitWork1.SuperUnitWork;
 | 
					                newUnitWork.SuperUnitWork = "0";
 | 
				
			||||||
                BLL.UnitWorkService.UpdateUnitWork(unitWork);
 | 
					                newUnitWork.ProjectId = this.CurrUser.LoginProjectId;
 | 
				
			||||||
 | 
					                if (!string.IsNullOrEmpty(id))
 | 
				
			||||||
                BLL.LogService.AddSys_Log(this.CurrUser, unitWork.UnitWorkId, unitWork.UnitWorkId, BLL.Const.UnitWorkMenuId, "修改单位工程!");
 | 
					                {
 | 
				
			||||||
                PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
 | 
					                    newUnitWork.UnitWorkId = id;
 | 
				
			||||||
 | 
					                    BLL.UnitWorkService.UpdateUnitWork(newUnitWork);
 | 
				
			||||||
 | 
					                    BLL.LogService.AddSys_Log(this.CurrUser, newUnitWork.UnitWorkId, newUnitWork.UnitWorkId, BLL.Const.UnitWorkMenuId, "修改单位工程!");
 | 
				
			||||||
 | 
					                    PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
 | 
					                else
 | 
				
			||||||
 | 
					                {
 | 
				
			||||||
 | 
					                    newUnitWork.UnitWorkId = SQLHelper.GetNewID(typeof(Model.WBS_UnitWork));
 | 
				
			||||||
 | 
					                    BLL.UnitWorkService.AddUnitWork(newUnitWork);
 | 
				
			||||||
 | 
					                    BLL.LogService.AddSys_Log(this.CurrUser, newUnitWork.UnitWorkId, newUnitWork.UnitWorkId, BLL.Const.UnitWorkMenuId, "增加单位工程!");
 | 
				
			||||||
 | 
					                    PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());//PageContext.RegisterStartupScript(ActiveWindow.GetWriteBackValueReference(newUnitWork.UnitWorkId) + ActiveWindow.GetHidePostBackReference());
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					            //string projectId = string.Empty;
 | 
				
			||||||
 | 
					            //string superUnitWorkId = string.Empty;
 | 
				
			||||||
 | 
					            //Model.WBS_UnitWork unitWork = new Model.WBS_UnitWork();
 | 
				
			||||||
 | 
					            //Model.Base_Project project = BLL.ProjectService.GetProjectByProjectId(superId);
 | 
				
			||||||
 | 
					            //Model.WBS_UnitWork parUnitWork = BLL.UnitWorkService.getUnitWorkByUnitWorkId(superId);
 | 
				
			||||||
 | 
					            //if (project != null)
 | 
				
			||||||
 | 
					            //{
 | 
				
			||||||
 | 
					            //    projectId = project.ProjectId;
 | 
				
			||||||
 | 
					            //    superUnitWorkId = "0";
 | 
				
			||||||
 | 
					            //    unitWork.UnitWorkCode = txtSupUnitWorkCode.Text.Trim();
 | 
				
			||||||
 | 
					            //    unitWork.UnitWorkName = txtSupUnitWorkName.Text.Trim();
 | 
				
			||||||
 | 
					            //    unitWork.SuperUnitWork = superUnitWorkId;
 | 
				
			||||||
 | 
					            //}
 | 
				
			||||||
 | 
					            //else if (parUnitWork != null)
 | 
				
			||||||
 | 
					            //{
 | 
				
			||||||
 | 
					            //    projectId = parUnitWork.ProjectId;
 | 
				
			||||||
 | 
					            //    superUnitWorkId = superId;
 | 
				
			||||||
 | 
					            //    unitWork.UnitWorkCode = txtUnitWorkCode.Text.Trim();
 | 
				
			||||||
 | 
					            //    unitWork.UnitWorkName = txtUnitWorkName.Text.Trim();
 | 
				
			||||||
 | 
					            //    unitWork.SuperUnitWork = superUnitWorkId;
 | 
				
			||||||
 | 
					            //}
 | 
				
			||||||
 | 
					            //unitWork.ProjectId = projectId;
 | 
				
			||||||
 | 
					            //if (string.IsNullOrEmpty(id))
 | 
				
			||||||
 | 
					            //{
 | 
				
			||||||
 | 
					            //    unitWork.UnitWorkId = SQLHelper.GetNewID(typeof(Model.WBS_UnitWork));
 | 
				
			||||||
 | 
					            //    BLL.UnitWorkService.AddUnitWork(unitWork);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            //    BLL.LogService.AddSys_Log(this.CurrUser, unitWork.UnitWorkId, unitWork.UnitWorkId, BLL.Const.UnitWorkMenuId, "增加单位工程!");
 | 
				
			||||||
 | 
					            //    PageContext.RegisterStartupScript(ActiveWindow.GetWriteBackValueReference(unitWork.UnitWorkId) + ActiveWindow.GetHidePostBackReference());
 | 
				
			||||||
 | 
					            //}
 | 
				
			||||||
 | 
					            //else
 | 
				
			||||||
 | 
					            //{
 | 
				
			||||||
 | 
					            //    Model.WBS_UnitWork unitWork1 = BLL.UnitWorkService.getUnitWorkByUnitWorkId(id);
 | 
				
			||||||
 | 
					            //    unitWork.UnitWorkId = id;
 | 
				
			||||||
 | 
					            //    unitWork.ProjectId = unitWork1.ProjectId;
 | 
				
			||||||
 | 
					            //    unitWork.SuperUnitWork = unitWork1.SuperUnitWork;
 | 
				
			||||||
 | 
					            //    BLL.UnitWorkService.UpdateUnitWork(unitWork);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            //    BLL.LogService.AddSys_Log(this.CurrUser, unitWork.UnitWorkId, unitWork.UnitWorkId, BLL.Const.UnitWorkMenuId, "修改单位工程!");
 | 
				
			||||||
 | 
					            //    PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
 | 
				
			||||||
 | 
					            //}
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					@ -39,6 +39,24 @@ namespace FineUIPro.Web.ProjectData {
 | 
				
			||||||
        /// </remarks>
 | 
					        /// </remarks>
 | 
				
			||||||
        protected global::FineUIPro.Form SimpleForm1;
 | 
					        protected global::FineUIPro.Form SimpleForm1;
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
 | 
					        /// <summary>
 | 
				
			||||||
 | 
					        /// txtSupUnitWorkCode 控件。
 | 
				
			||||||
 | 
					        /// </summary>
 | 
				
			||||||
 | 
					        /// <remarks>
 | 
				
			||||||
 | 
					        /// 自动生成的字段。
 | 
				
			||||||
 | 
					        /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
 | 
				
			||||||
 | 
					        /// </remarks>
 | 
				
			||||||
 | 
					        protected global::FineUIPro.TextBox txtSupUnitWorkCode;
 | 
				
			||||||
 | 
					        
 | 
				
			||||||
 | 
					        /// <summary>
 | 
				
			||||||
 | 
					        /// txtSupUnitWorkName 控件。
 | 
				
			||||||
 | 
					        /// </summary>
 | 
				
			||||||
 | 
					        /// <remarks>
 | 
				
			||||||
 | 
					        /// 自动生成的字段。
 | 
				
			||||||
 | 
					        /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
 | 
				
			||||||
 | 
					        /// </remarks>
 | 
				
			||||||
 | 
					        protected global::FineUIPro.TextBox txtSupUnitWorkName;
 | 
				
			||||||
 | 
					        
 | 
				
			||||||
        /// <summary>
 | 
					        /// <summary>
 | 
				
			||||||
        /// txtUnitWorkCode 控件。
 | 
					        /// txtUnitWorkCode 控件。
 | 
				
			||||||
        /// </summary>
 | 
					        /// </summary>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -77,7 +77,7 @@
 | 
				
			||||||
      <add verb="GET" path="res.axd" type="FineUIPro.ResourceHandler, FineUIPro" validate="false"/>
 | 
					      <add verb="GET" path="res.axd" type="FineUIPro.ResourceHandler, FineUIPro" validate="false"/>
 | 
				
			||||||
      <add path="ChartImg.axd" verb="GET,POST,HEAD" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
 | 
					      <add path="ChartImg.axd" verb="GET,POST,HEAD" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
 | 
				
			||||||
    </httpHandlers>
 | 
					    </httpHandlers>
 | 
				
			||||||
    <compilation debug="false" targetFramework="4.6.1"/>
 | 
					    <compilation debug="true" targetFramework="4.6.1"/>
 | 
				
			||||||
    <httpRuntime requestValidationMode="2.0" maxRequestLength="2147483647" executionTimeout="36000"/>
 | 
					    <httpRuntime requestValidationMode="2.0" maxRequestLength="2147483647" executionTimeout="36000"/>
 | 
				
			||||||
    <authentication mode="Forms">
 | 
					    <authentication mode="Forms">
 | 
				
			||||||
      <forms loginUrl="Login.aspx" name="PUBLISHERCOOKIE" protection="All" timeout="1440" path="/"/>
 | 
					      <forms loginUrl="Login.aspx" name="PUBLISHERCOOKIE" protection="All" timeout="1440" path="/"/>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,59 @@
 | 
				
			||||||
 | 
					using System;
 | 
				
			||||||
 | 
					using System.Collections.Generic;
 | 
				
			||||||
 | 
					using System.Linq;
 | 
				
			||||||
 | 
					using System.Text;
 | 
				
			||||||
 | 
					using System.Threading.Tasks;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					namespace Model
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					    /// <summary>
 | 
				
			||||||
 | 
					    /// 单位工程
 | 
				
			||||||
 | 
					    /// </summary>
 | 
				
			||||||
 | 
					   public class UnitWork
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					        /// <summary>
 | 
				
			||||||
 | 
					        /// 主键
 | 
				
			||||||
 | 
					        /// </summary>
 | 
				
			||||||
 | 
					        public string UnitWorkId
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            get;
 | 
				
			||||||
 | 
					            set;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        /// <summary>
 | 
				
			||||||
 | 
					        /// 单位工程编号
 | 
				
			||||||
 | 
					        /// </summary>
 | 
				
			||||||
 | 
					        public string SupUnitWorkCode
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            get;
 | 
				
			||||||
 | 
					            set;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        /// <summary>
 | 
				
			||||||
 | 
					        /// 单位工程名称
 | 
				
			||||||
 | 
					        /// </summary>
 | 
				
			||||||
 | 
					        public string SupUnitWorkName
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            get;
 | 
				
			||||||
 | 
					            set;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        /// <summary>
 | 
				
			||||||
 | 
					        /// 子单位工程编号
 | 
				
			||||||
 | 
					        /// </summary>
 | 
				
			||||||
 | 
					        public string UnitWorkCode
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            get;
 | 
				
			||||||
 | 
					            set;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        /// <summary>
 | 
				
			||||||
 | 
					        /// 子单位工程名称
 | 
				
			||||||
 | 
					        /// </summary>
 | 
				
			||||||
 | 
					        public string UnitWorkName
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            get;
 | 
				
			||||||
 | 
					            set;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
| 
						 | 
					@ -185,6 +185,7 @@
 | 
				
			||||||
    <Compile Include="CQMS\PassWelderStatisc.cs" />
 | 
					    <Compile Include="CQMS\PassWelderStatisc.cs" />
 | 
				
			||||||
    <Compile Include="CQMS\QualityAcceptanceItem.cs" />
 | 
					    <Compile Include="CQMS\QualityAcceptanceItem.cs" />
 | 
				
			||||||
    <Compile Include="CQMS\SteelItem.cs" />
 | 
					    <Compile Include="CQMS\SteelItem.cs" />
 | 
				
			||||||
 | 
					    <Compile Include="CQMS\UnitWork.cs" />
 | 
				
			||||||
    <Compile Include="CQMS\WelderItem.cs" />
 | 
					    <Compile Include="CQMS\WelderItem.cs" />
 | 
				
			||||||
    <Compile Include="DoorServer\AbsenceDutyItem.cs" />
 | 
					    <Compile Include="DoorServer\AbsenceDutyItem.cs" />
 | 
				
			||||||
    <Compile Include="DoorServer\attendanceItem.cs" />
 | 
					    <Compile Include="DoorServer\attendanceItem.cs" />
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue