diff --git a/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionEquipment.aspx b/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionEquipment.aspx
index 82c49569..8301b5ec 100644
--- a/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionEquipment.aspx
+++ b/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionEquipment.aspx
@@ -131,7 +131,7 @@
+ Width="1200px" Height="600px">
+ FieldType="String" HeaderTextAlign="Center" TextAlign="Left">
diff --git a/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionEquipmentDataInNew.aspx.cs b/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionEquipmentDataInNew.aspx.cs
index cf6723f8..fe46642a 100644
--- a/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionEquipmentDataInNew.aspx.cs
+++ b/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionEquipmentDataInNew.aspx.cs
@@ -427,11 +427,15 @@ namespace FineUIPro.Web.CQMS.Comprehensive
{
try
{
- Ins.InspectionDate = Convert.ToDateTime(tempData.Value12);
+ Ins.InspectionDate = Funs.GetNewDateTime(tempData.Value12);
+ if (Ins.InspectionDate == null)
+ {
+ errInfo += "报验日期[" + tempData.Value12 + "]格式错误;";
+ }
}
catch (Exception)
{
- errInfo += "报验日期[" + tempData.Value12+ "]格式错误;";
+ errInfo += "报验日期[" + tempData.Value12 + "]格式错误;";
}
}
if (!string.IsNullOrEmpty(tempData.Value13))
diff --git a/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionEquipmentDataInNewEdit.aspx b/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionEquipmentDataInNewEdit.aspx
index 0c3c33d7..bd644c12 100644
--- a/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionEquipmentDataInNewEdit.aspx
+++ b/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionEquipmentDataInNewEdit.aspx
@@ -56,8 +56,8 @@
-
-
+
+
diff --git a/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionEquipmentDataInNewEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionEquipmentDataInNewEdit.aspx.designer.cs
index 44cb0ede..910cebb4 100644
--- a/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionEquipmentDataInNewEdit.aspx.designer.cs
+++ b/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionEquipmentDataInNewEdit.aspx.designer.cs
@@ -174,7 +174,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.DatePicker txtValue12;
+ protected global::FineUIPro.TextBox txtValue12;
///
/// txtValue13 控件。
diff --git a/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionPerson.aspx b/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionPerson.aspx
index cdef23bb..495d92cd 100644
--- a/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionPerson.aspx
+++ b/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionPerson.aspx
@@ -30,8 +30,8 @@
@@ -135,7 +135,7 @@
+ Width="1200px" Height="600px">
+ FieldType="String" HeaderTextAlign="Center" TextAlign="Left">
+ FieldType="String" HeaderTextAlign="Center" TextAlign="Left">
@@ -116,7 +116,7 @@
FieldType="String" HeaderTextAlign="Center" TextAlign="Left">
+ FieldType="String" HeaderTextAlign="Center" TextAlign="Right">
diff --git a/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionPersonDataInNew.aspx.cs b/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionPersonDataInNew.aspx.cs
index def376b1..d1fae42e 100644
--- a/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionPersonDataInNew.aspx.cs
+++ b/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionPersonDataInNew.aspx.cs
@@ -312,12 +312,12 @@ namespace FineUIPro.Web.CQMS.Comprehensive
protected void btnSaveMethod(string LoginProjectId, string UserId, string IsPDMS)
{
var oldViewInfos = from x in Funs.DB.Comprehensive_InspectionPerson
- where x.ProjectId == this.CurrUser.LoginProjectId
+ where x.ProjectId == LoginProjectId
select x;
var units = from x in Funs.DB.Base_Unit
join y in Funs.DB.Project_ProjectUnit on x.UnitId equals y.UnitId
- where y.ProjectId == this.CurrUser.LoginProjectId
+ where y.ProjectId == LoginProjectId
select x;
var cns = from x in Funs.DB.Base_CNProfessional select x;
@@ -437,7 +437,11 @@ namespace FineUIPro.Web.CQMS.Comprehensive
{
try
{
- Ins.ValidityDate = Convert.ToDateTime(tempData.Value9.Trim());
+ Ins.ValidityDate = Funs.GetNewDateTime(tempData.Value9.Trim());
+ if (Ins.ValidityDate == null)
+ {
+ errInfo += "有效期[" + tempData.Value9.Trim() + "]错误;";
+ }
}
catch (Exception)
{
@@ -448,7 +452,11 @@ namespace FineUIPro.Web.CQMS.Comprehensive
{
try
{
- Ins.ApprovalTime = Convert.ToDateTime(tempData.Value10.Trim());
+ Ins.ApprovalTime = Funs.GetNewDateTime(tempData.Value10.Trim());
+ if (Ins.ApprovalTime == null)
+ {
+ errInfo += "批准时间[" + tempData.Value10.Trim() + "]错误;";
+ }
}
catch (Exception)
{
@@ -481,7 +489,11 @@ namespace FineUIPro.Web.CQMS.Comprehensive
{
try
{
- Ins.DepartureTime = Convert.ToDateTime(tempData.Value13.Trim());
+ Ins.DepartureTime = Funs.GetNewDateTime(tempData.Value13.Trim());
+ if (Ins.DepartureTime == null)
+ {
+ errInfo += "离场时间[" + tempData.Value13.Trim() + "]错误;";
+ }
}
catch (Exception)
{
@@ -514,7 +526,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
{
Ins.ProjectId = LoginProjectId;
var isExitISOValue = oldViewInfos.FirstOrDefault(x => x.UnitId == Ins.UnitId
- && x.RemarkCode == Funs.GetNewIntOrZero(tempData.Value14));
+ && x.RemarkCode == Funs.GetNewIntOrZero(tempData.Value15));
if (isExitISOValue != null) ///已存在
{
Ins.InspectionPersonId = isExitISOValue.InspectionPersonId;
@@ -591,7 +603,6 @@ namespace FineUIPro.Web.CQMS.Comprehensive
tempData.ToopValue = errInfo;
BLL.Sys_CQMS_DataInTempService.UpdateDataInTemp(tempData);
erreMessage += errInfo + ";";
-
}
}
}
diff --git a/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionPersonDataInNewEdit.aspx b/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionPersonDataInNewEdit.aspx
index c68db1ee..2c0fee3f 100644
--- a/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionPersonDataInNewEdit.aspx
+++ b/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionPersonDataInNewEdit.aspx
@@ -4,7 +4,7 @@
-
+
@@ -50,10 +50,10 @@
-
-
-
-
+
+
+
+
@@ -62,13 +62,13 @@
-
-
+
+
-
+
-
-
+
+
diff --git a/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionPersonDataInNewEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionPersonDataInNewEdit.aspx.designer.cs
index a00b866b..aeb60e1e 100644
--- a/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionPersonDataInNewEdit.aspx.designer.cs
+++ b/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionPersonDataInNewEdit.aspx.designer.cs
@@ -147,7 +147,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.DatePicker txtValue9;
+ protected global::FineUIPro.TextBox txtValue9;
///
/// txtValue10 控件。
@@ -156,7 +156,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.DatePicker txtValue10;
+ protected global::FineUIPro.TextBox txtValue10;
///
/// txtValue11 控件。
@@ -183,7 +183,7 @@ namespace FineUIPro.Web.CQMS.Comprehensive
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.DatePicker txtValue13;
+ protected global::FineUIPro.TextBox txtValue13;
///
/// txtValue14 控件。