diff --git a/DataBase/版本日志/SGGLDB_V2023-07-21.sql b/DataBase/版本日志/SGGLDB_V2023-07-21.sql
new file mode 100644
index 00000000..8eadd009
--- /dev/null
+++ b/DataBase/版本日志/SGGLDB_V2023-07-21.sql
@@ -0,0 +1,44 @@
+ALTER VIEW [dbo].[View_InformationProject_ConstructionStandardSelectedItem]
+/*淶ʶѡбͼ*/
+AS
+SELECT Item.ConstructionStandardSelectedItemId,
+ Item.ConstructionStandardIdentifyId,
+ Item.StandardId,
+ Identify.ProjectId,
+ List.StandardGrade,
+ List.StandardNo,
+ List.StandardName,
+ List.AttachUrl,
+ List.IsSelected1,
+ List.IsSelected2,
+ List.IsSelected3,
+ List.IsSelected4,
+ List.IsSelected5,
+ List.IsSelected6,
+ List.IsSelected7,
+ List.IsSelected8,
+ List.IsSelected9,
+ List.IsSelected10,
+ List.IsSelected11,
+ List.IsSelected12,
+ List.IsSelected13,
+ List.IsSelected14,
+ List.IsSelected15,
+ List.IsSelected16,
+ List.IsSelected17,
+ List.IsSelected18,
+ List.IsSelected19,
+ List.IsSelected20,
+ List.IsSelected21,
+ List.IsSelected22,
+ List.IsSelected23,
+ List.IsSelected90
+FROM dbo.Law_HSSEStandardsList AS List
+LEFT JOIN dbo.InformationProject_ConstructionStandardSelectedItem AS Item ON List.StandardId =Item.StandardId
+LEFT JOIN dbo.InformationProject_ConstructionStandardIdentify AS Identify ON Item.ConstructionStandardIdentifyId =Identify.ConstructionStandardIdentifyId
+
+
+
+GO
+
+
diff --git a/DataBase/版本日志/SGGLDB_V2023-07-23.sql b/DataBase/版本日志/SGGLDB_V2023-07-23.sql
new file mode 100644
index 00000000..c6e804dc
--- /dev/null
+++ b/DataBase/版本日志/SGGLDB_V2023-07-23.sql
@@ -0,0 +1,4 @@
+ALTER TABLE Base_Certificate ADD Type VARCHAR(10) NULL
+GO
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ͣ1ظڣ2ܣ3豸-1' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Base_Certificate', @level2type=N'COLUMN',@level2name=N'Type'
+GO
diff --git a/SGGL/BLL/BaseInfo/CertificateService.cs b/SGGL/BLL/BaseInfo/CertificateService.cs
index 04f8b360..9b2f6113 100644
--- a/SGGL/BLL/BaseInfo/CertificateService.cs
+++ b/SGGL/BLL/BaseInfo/CertificateService.cs
@@ -34,6 +34,7 @@ namespace BLL
CertificateName = certificate.CertificateName,
CertificateType = certificate.CertificateType,
IsRegisterHSSE = certificate.IsRegisterHSSE,
+ Type= certificate.Type,
Remark = certificate.Remark
};
db.Base_Certificate.InsertOnSubmit(newCertificate);
@@ -54,6 +55,7 @@ namespace BLL
newCertificate.CertificateName = certificate.CertificateName;
newCertificate.CertificateType = certificate.CertificateType;
newCertificate.IsRegisterHSSE = certificate.IsRegisterHSSE;
+ newCertificate.Type = certificate.Type;
newCertificate.Remark = certificate.Remark;
db.SubmitChanges();
}
diff --git a/SGGL/BLL/DropListService.cs b/SGGL/BLL/DropListService.cs
index 6911bff9..8b080c2d 100644
--- a/SGGL/BLL/DropListService.cs
+++ b/SGGL/BLL/DropListService.cs
@@ -34,6 +34,10 @@
{
dropName.DataSource = HSSE_getContractType();
}
+ else if (groupId == Group_CertificateType)
+ {
+ dropName.DataSource = HSSE_getCertificateType();
+ }
dropName.DataBind();
if (isShowPlease)
{
@@ -102,6 +106,11 @@
/// 合同类型 组id
///
public const string Group_ContractType = "ContractType";
+
+ ///