提交代码
|
|
@ -0,0 +1,13 @@
|
||||||
|
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Icon], [Url], [SortIndex], [SuperMenu], [MenuType], [IsOffice], [IsEnd], [IsUsed]) VALUES
|
||||||
|
(N'81735D5D-712D-4D90-A471-5E0CCE98EF48', N'施工作业风险(地图)', NULL, N'HSSE/Hazard/ConstructionRiskMap.aspx', '120', N'467A0CB9-737D-4451-965E-869EBC3A4BD6', N'Menu_HSSE', '1', '1', '1')
|
||||||
|
GO
|
||||||
|
|
||||||
|
Alter TABLE [dbo].[WBS_UnitWork] add
|
||||||
|
[Coordinate] [nvarchar](100) NULL
|
||||||
|
GO
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Alter TABLE [dbo].[HSSE_ConstructionRisk] add
|
||||||
|
[Coordinate] [nvarchar](100) NULL
|
||||||
|
GO
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
using Microsoft.SqlServer.Dts.Runtime;
|
using Model;
|
||||||
using Model;
|
|
||||||
using NPOI.SS.Formula.PTG;
|
using NPOI.SS.Formula.PTG;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
|
||||||
|
|
@ -463,9 +463,9 @@
|
||||||
<Compile Include="HSSE\Environmental\EnvironmentalEmergencyPlanService.cs" />
|
<Compile Include="HSSE\Environmental\EnvironmentalEmergencyPlanService.cs" />
|
||||||
<Compile Include="HSSE\Environmental\EnvironmentalMonitoringService.cs" />
|
<Compile Include="HSSE\Environmental\EnvironmentalMonitoringService.cs" />
|
||||||
<Compile Include="HSSE\Environmental\UnexpectedEnvironmentalService.cs" />
|
<Compile Include="HSSE\Environmental\UnexpectedEnvironmentalService.cs" />
|
||||||
<Compile Include="HSSE\Hazard\ConstructionRiskListService.cs" />
|
|
||||||
<Compile Include="HSSE\Hazard\Hazard_EnvironmentalRiskItemService.cs" />
|
<Compile Include="HSSE\Hazard\Hazard_EnvironmentalRiskItemService.cs" />
|
||||||
<Compile Include="HSSE\Hazard\Hazard_EnvironmentalRiskListService.cs" />
|
<Compile Include="HSSE\Hazard\Hazard_EnvironmentalRiskListService.cs" />
|
||||||
|
<Compile Include="HSSE\Hazard\ConstructionRiskListService.cs" />
|
||||||
<Compile Include="HSSE\Hazard\Hazard_HazardListService.cs" />
|
<Compile Include="HSSE\Hazard\Hazard_HazardListService.cs" />
|
||||||
<Compile Include="HSSE\Hazard\Hazard_HazardSelectedItemService.cs" />
|
<Compile Include="HSSE\Hazard\Hazard_HazardSelectedItemService.cs" />
|
||||||
<Compile Include="HSSE\HiddenInspection\HSSE_Hazard_HazardRegisterService.cs" />
|
<Compile Include="HSSE\HiddenInspection\HSSE_Hazard_HazardRegisterService.cs" />
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
using FineUIPro;
|
using FineUIPro;
|
||||||
using Microsoft.SqlServer.Dts.Runtime;
|
|
||||||
using NPOI.SS.Formula.Functions;
|
using NPOI.SS.Formula.Functions;
|
||||||
using Org.BouncyCastle.Crypto.Tls;
|
using Org.BouncyCastle.Crypto.Tls;
|
||||||
using System;
|
using System;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
using Microsoft.SqlServer.Dts.Runtime;
|
using NPOI.SS.Formula.Functions;
|
||||||
using NPOI.SS.Formula.Functions;
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Data;
|
using System.Data;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
using Microsoft.Office.Interop.Word;
|
using Microsoft.Office.Interop.Word;
|
||||||
using Microsoft.SqlServer.Dts.Runtime;
|
|
||||||
using MiniExcelLibs;
|
using MiniExcelLibs;
|
||||||
using Model;
|
using Model;
|
||||||
using System;
|
using System;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
using Microsoft.SqlServer.Dts.Runtime;
|
using Model;
|
||||||
using Model;
|
|
||||||
using NPOI.SS.UserModel;
|
using NPOI.SS.UserModel;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,8 @@ namespace BLL
|
||||||
LicenseDes = constructionRisk.LicenseDes,
|
LicenseDes = constructionRisk.LicenseDes,
|
||||||
WorkAreaId = constructionRisk.WorkAreaId,
|
WorkAreaId = constructionRisk.WorkAreaId,
|
||||||
UnitId = constructionRisk.UnitId,
|
UnitId = constructionRisk.UnitId,
|
||||||
RiskLevel = constructionRisk.RiskLevel
|
RiskLevel = constructionRisk.RiskLevel,
|
||||||
|
Coordinate = constructionRisk.Coordinate,
|
||||||
};
|
};
|
||||||
Funs.DB.HSSE_ConstructionRisk.InsertOnSubmit(newconstructionRisk);
|
Funs.DB.HSSE_ConstructionRisk.InsertOnSubmit(newconstructionRisk);
|
||||||
Funs.DB.SubmitChanges();
|
Funs.DB.SubmitChanges();
|
||||||
|
|
@ -86,7 +87,7 @@ namespace BLL
|
||||||
|
|
||||||
Funs.DB.SubmitChanges();
|
Funs.DB.SubmitChanges();
|
||||||
}
|
}
|
||||||
public static void AddConstructionRiskControl(List<Model.HSSE_ConstructionRiskControl > constructionRisk,string constructionRiskId)
|
public static void AddConstructionRiskControl(List<Model.HSSE_ConstructionRiskControl> constructionRisk, string constructionRiskId)
|
||||||
{
|
{
|
||||||
Model.SGGLDB db = Funs.DB;
|
Model.SGGLDB db = Funs.DB;
|
||||||
int i = 1;
|
int i = 1;
|
||||||
|
|
@ -134,6 +135,7 @@ namespace BLL
|
||||||
newHazardList.WorkAreaId = hazardList.WorkAreaId;
|
newHazardList.WorkAreaId = hazardList.WorkAreaId;
|
||||||
newHazardList.UnitId = hazardList.UnitId;
|
newHazardList.UnitId = hazardList.UnitId;
|
||||||
newHazardList.RiskLevel = hazardList.RiskLevel;
|
newHazardList.RiskLevel = hazardList.RiskLevel;
|
||||||
|
newHazardList.Coordinate = hazardList.Coordinate;
|
||||||
db.SubmitChanges();
|
db.SubmitChanges();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
using FineUIPro;
|
using FineUIPro;
|
||||||
using Microsoft.Office.Interop.Excel;
|
using Microsoft.Office.Interop.Excel;
|
||||||
using Microsoft.SqlServer.Dts.Runtime;
|
|
||||||
using Model;
|
using Model;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
using FineUIPro;
|
using FineUIPro;
|
||||||
using Microsoft.SqlServer.Dts.Runtime;
|
|
||||||
using Model;
|
using Model;
|
||||||
using NPOI.HSSF.Record.Aggregates;
|
using NPOI.HSSF.Record.Aggregates;
|
||||||
using NPOI.SS.Formula.PTG;
|
using NPOI.SS.Formula.PTG;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
using FineUIPro;
|
using FineUIPro;
|
||||||
using Microsoft.SqlServer.Dts.Runtime;
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
using FineUIPro;
|
using FineUIPro;
|
||||||
using Microsoft.SqlServer.Dts.Runtime;
|
|
||||||
using Model;
|
using Model;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
using FineUIPro;
|
using FineUIPro;
|
||||||
using Microsoft.SqlServer.Dts.Runtime;
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
using FineUIPro;
|
using FineUIPro;
|
||||||
using Microsoft.SqlServer.Dts.Runtime;
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
|
||||||
|
After Width: | Height: | Size: 534 B |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 105 KiB |
|
After Width: | Height: | Size: 108 KiB |
|
After Width: | Height: | Size: 105 KiB |
|
After Width: | Height: | Size: 105 KiB |
|
After Width: | Height: | Size: 193 KiB |
|
After Width: | Height: | Size: 52 KiB |
|
After Width: | Height: | Size: 193 KiB |
|
After Width: | Height: | Size: 48 KiB |
|
After Width: | Height: | Size: 136 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 141 KiB |
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 183 KiB |
|
After Width: | Height: | Size: 50 KiB |
|
After Width: | Height: | Size: 194 KiB |
|
After Width: | Height: | Size: 49 KiB |
|
After Width: | Height: | Size: 129 KiB |
|
After Width: | Height: | Size: 39 KiB |
|
After Width: | Height: | Size: 136 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 187 KiB |
|
After Width: | Height: | Size: 194 KiB |
|
After Width: | Height: | Size: 106 KiB |
|
After Width: | Height: | Size: 192 KiB |
|
After Width: | Height: | Size: 191 KiB |
|
After Width: | Height: | Size: 94 KiB |
|
After Width: | Height: | Size: 195 KiB |
|
After Width: | Height: | Size: 190 KiB |
|
After Width: | Height: | Size: 90 KiB |
|
After Width: | Height: | Size: 189 KiB |
|
After Width: | Height: | Size: 181 KiB |
|
After Width: | Height: | Size: 93 KiB |
|
After Width: | Height: | Size: 185 KiB |
|
After Width: | Height: | Size: 197 KiB |
|
After Width: | Height: | Size: 85 KiB |
|
After Width: | Height: | Size: 188 KiB |
|
After Width: | Height: | Size: 197 KiB |
|
After Width: | Height: | Size: 100 KiB |
|
After Width: | Height: | Size: 78 KiB |
|
After Width: | Height: | Size: 80 KiB |
|
After Width: | Height: | Size: 41 KiB |
|
After Width: | Height: | Size: 82 KiB |
|
After Width: | Height: | Size: 85 KiB |
|
After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 181 KiB |
|
After Width: | Height: | Size: 168 KiB |
|
After Width: | Height: | Size: 104 KiB |
|
After Width: | Height: | Size: 194 KiB |
|
After Width: | Height: | Size: 194 KiB |
|
After Width: | Height: | Size: 102 KiB |
|
After Width: | Height: | Size: 180 KiB |
|
After Width: | Height: | Size: 176 KiB |
|
After Width: | Height: | Size: 93 KiB |
|
After Width: | Height: | Size: 191 KiB |
|
After Width: | Height: | Size: 190 KiB |
|
After Width: | Height: | Size: 91 KiB |
|
After Width: | Height: | Size: 168 KiB |
|
After Width: | Height: | Size: 170 KiB |
|
After Width: | Height: | Size: 106 KiB |
|
After Width: | Height: | Size: 195 KiB |
|
After Width: | Height: | Size: 183 KiB |
|
After Width: | Height: | Size: 82 KiB |
|
After Width: | Height: | Size: 82 KiB |
|
After Width: | Height: | Size: 79 KiB |
|
After Width: | Height: | Size: 46 KiB |
|
After Width: | Height: | Size: 85 KiB |
|
After Width: | Height: | Size: 80 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 181 KiB |
|
After Width: | Height: | Size: 183 KiB |
|
After Width: | Height: | Size: 185 KiB |
|
After Width: | Height: | Size: 196 KiB |
|
After Width: | Height: | Size: 188 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 188 KiB |
|
After Width: | Height: | Size: 190 KiB |
|
After Width: | Height: | Size: 194 KiB |
|
After Width: | Height: | Size: 182 KiB |
|
After Width: | Height: | Size: 169 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 184 KiB |
|
After Width: | Height: | Size: 187 KiB |
|
After Width: | Height: | Size: 188 KiB |
|
After Width: | Height: | Size: 194 KiB |