diff --git a/DataBase/版本日志/SGGLDB_WH_V2024-08-01-phf.sql b/DataBase/版本日志/SGGLDB_WH_V2024-08-01-phf.sql new file mode 100644 index 00000000..b7b53077 --- /dev/null +++ b/DataBase/版本日志/SGGLDB_WH_V2024-08-01-phf.sql @@ -0,0 +1,17 @@ +update sys_menu set menuname='βͳƱ
          Punchlist Completion Table' +where menuid='2352E44F-BE12-4012-B43F-AAF649EDAC32' + +update sys_menu set menuname='β
          Punchlist Classification Table' +where menuid='CB76462E-9444-4946-B787-ECB33C21E6D0' + +update sys_menu set menuname='βȸٱ
          Punchlist Status Table' +where menuid='549DD0B6-05CB-4C75-B8F5-9AADDEDF399F' + +update sys_menu set menuname='ƽͳƱ
          Turnover Table' +where menuid='E305689E-5D84-4C1A-BF67-85FA2D828115' + +update sys_menu set menuname='ƽͳͼ
          Turnover Chart' +where menuid='60838E30-4A46-4878-B299-C234900B10B7' + +update sys_menu set menuname='ƽ״̬ܱ
          Turnover Summary Table' +where menuid='25C13642-AE77-42E2-B0FB-32663B68F93F' \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/CQMS/Comprehensive/NCRManagement.aspx.cs b/SGGL/FineUIPro.Web/CQMS/Comprehensive/NCRManagement.aspx.cs index beaaf315..6d5b0218 100644 --- a/SGGL/FineUIPro.Web/CQMS/Comprehensive/NCRManagement.aspx.cs +++ b/SGGL/FineUIPro.Web/CQMS/Comprehensive/NCRManagement.aspx.cs @@ -358,7 +358,7 @@ namespace FineUIPro.Web.Comprehensive { lists = lists.Where(x => x.NCRCode.Contains(this.txtNCRCode.Text.Trim())); } - lists = lists.OrderBy(x => x.RemarkCode); + lists = lists.OrderBy(x => x.IssuedDate); if (lists != null) { string projectName = BLL.ProjectService.GetShortNameByProjectId(this.CurrUser.LoginProjectId); diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj index c623d2bf..7efa2411 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj @@ -2031,20 +2031,27 @@ + + + + + + + @@ -2052,10 +2059,13 @@ + + + @@ -17665,6 +17675,13 @@ CivilStructureDataIn.aspx + + CivilStructureEdit.aspx + ASPXCodeBehind + + + CivilStructureEdit.aspx + Electrical.aspx ASPXCodeBehind @@ -17679,6 +17696,13 @@ ElectricalDataIn.aspx + + ElectricalEdit.aspx + ASPXCodeBehind + + + ElectricalEdit.aspx + Firefighting.aspx ASPXCodeBehind @@ -17693,6 +17717,13 @@ FirefightingDataIn.aspx + + FirefightingEdit.aspx + ASPXCodeBehind + + + FirefightingEdit.aspx + HVAC.aspx ASPXCodeBehind @@ -17721,6 +17752,13 @@ InstrumentationDataIn.aspx + + InstrumentationEdit.aspx + ASPXCodeBehind + + + InstrumentationEdit.aspx + LHCSystemList.aspx ASPXCodeBehind @@ -17735,6 +17773,13 @@ LHCSystemListDataIn.aspx + + LHCSystemListEdit.aspx + ASPXCodeBehind + + + LHCSystemListEdit.aspx + Piping.aspx ASPXCodeBehind @@ -17749,6 +17794,13 @@ PipingDataIn.aspx + + PipingEdit.aspx + ASPXCodeBehind + + + PipingEdit.aspx + Plumbing.aspx ASPXCodeBehind @@ -17763,6 +17815,13 @@ PlumbingDataIn.aspx + + PlumbingEdit.aspx + ASPXCodeBehind + + + PlumbingEdit.aspx + ProjectSetup.aspx ASPXCodeBehind @@ -17812,6 +17871,13 @@ RotatingEquipmentDataIn.aspx + + RotatingEquipmentEdit.aspx + ASPXCodeBehind + + + RotatingEquipmentEdit.aspx + StaticEquipment.aspx ASPXCodeBehind @@ -17826,6 +17892,13 @@ StaticEquipmentDataIn.aspx + + StaticEquipmentEdit.aspx + ASPXCodeBehind + + + StaticEquipmentEdit.aspx + Telecom.aspx ASPXCodeBehind @@ -17840,6 +17913,13 @@ TelecomDataIn.aspx + + TelecomEdit.aspx + ASPXCodeBehind + + + TelecomEdit.aspx + Video.aspx ASPXCodeBehind diff --git a/SGGL/FineUIPro.Web/Transfer/Chart/Systemstatus.aspx.cs b/SGGL/FineUIPro.Web/Transfer/Chart/Systemstatus.aspx.cs index 64503e1f..489cb0c2 100644 --- a/SGGL/FineUIPro.Web/Transfer/Chart/Systemstatus.aspx.cs +++ b/SGGL/FineUIPro.Web/Transfer/Chart/Systemstatus.aspx.cs @@ -50,42 +50,43 @@ namespace FineUIPro.Web.Transfer.Chart ISNULL(tpi.PipingCount,0) PipingCount,ISNULL(tpi1.PipingScount,0) PipingScount, case ISNULL(tpi.PipingCount,0) when 0 then 0 - else 100*(ISNULL(tpi1.PipingScount,0)/ISNULL(tpi.PipingCount,0)) end PipingPercent, + else CONVERT(DECIMAL(10,2),100*(ISNULL(tpi1.PipingScount,0)*1.0/ISNULL(tpi.PipingCount,0))) end PipingPercent, ISNULL((TseCount+TreCount),0) as EqCount,ISNULL((TseSCount+TreSCount),0) as EqScount, case ISNULL((TseCount+TreCount),0) when 0 then 0 - else 100 *(ISNULL((TseSCount+TreSCount),0)/ISNULL((TseCount+TreCount),0)) end EqPercent, + else CONVERT(DECIMAL(10,2),100 *(ISNULL((TseSCount+TreSCount),0)*1.0/ISNULL((TseCount+TreCount),0))) end EqPercent, ISNULL(TeCount,0) TeCount,ISNULL(TeScount,0) TeScount, case ISNULL(TeCount,0) when 0 then 0 - else 100*(ISNULL(TeScount,0)/ISNULL(TeCount,0)) end TePercent, + else CONVERT(DECIMAL(10,2),100*(ISNULL(TeScount,0)*1.0/ISNULL(TeCount,0))) end TePercent, ISNULL(TiCount,0) TiCount,ISNULL(TiScount,0) TiScount, case ISNULL(TiCount,0) when 0 then 0 - else 100*(ISNULL(TiScount,0)/ISNULL(TiCount,0)) end TiPercent, + else CONVERT(DECIMAL(10,2),100*(ISNULL(TiScount,0)*1.0/ISNULL(TiCount,0))) end TiPercent, ISNULL(TcsCount,0) TcsCount,ISNULL(TcsScount,0) TcsScount, case ISNULL(TcsCount,0) when 0 then 0 - else 100*(ISNULL(TcsScount,0)/ISNULL(TcsCount,0)) end TcsPercent, + else CONVERT(DECIMAL(10,2),100*(ISNULL(TcsScount,0)*1.0/ISNULL(TcsCount,0))) end TcsPercent, ISNULL(TfCount,0) TfCount,ISNULL(TfScount,0) TfScount, case ISNULL(TfCount,0) when 0 then 0 - else 100*(ISNULL(TfScount,0)/ISNULL(TfCount,0)) end TfPercent, + else CONVERT(DECIMAL(10,2),100*(ISNULL(TfScount,0)*1.0/ISNULL(TfCount,0))) end TfPercent, ISNULL(TtCount,0) TtCount,ISNULL(TtScount,0) TtScount, case ISNULL(TtCount,0) when 0 then 0 - else 100*(ISNULL(TtScount,0)/ISNULL(TtCount,0)) end TtPercent, + else CONVERT(DECIMAL(10,2),100*(ISNULL(TtScount,0)*1.0/ISNULL(TtCount,0))) end TtPercent, + + ISNULL(TpCount,0) TpCount,ISNULL(TpScount,0) TpScount, - ISNULL(TpCount,0) TpCount,ISNULL(TpScount,0) TtScount, case ISNULL(TpCount,0) when 0 then 0 - else 100*(ISNULL(TpScount,0)/ISNULL(TpCount,0)) end TpPercent, + else CONVERT(DECIMAL(10,2),100*(ISNULL(TpScount,0)*1.0/ISNULL(TpCount,0))) end TpPercent, ts.PlanPWD,PlanJWD,McPlan, SubmitPackage,ActualPWD,ActualJWD,ActualMC,Commissioning, diff --git a/SGGL/FineUIPro.Web/Transfer/CivilStructure.aspx b/SGGL/FineUIPro.Web/Transfer/CivilStructure.aspx index 23c52378..4e7e2c41 100644 --- a/SGGL/FineUIPro.Web/Transfer/CivilStructure.aspx +++ b/SGGL/FineUIPro.Web/Transfer/CivilStructure.aspx @@ -26,7 +26,7 @@ - + @@ -44,7 +44,8 @@ - + + <%-- --%> - + + <%-- --%> - + + <%-- --%> - + + <%-- --%>