121221
This commit is contained in:
@@ -217,7 +217,7 @@ namespace FineUIPro.Web.WeldingProcess.PMI
|
||||
if (pageInfo.Count > 0)
|
||||
{
|
||||
this.txtDelegationNo.Text = pageInfo[0].DelegationNo;
|
||||
this.txtDelegationDate.Text = pageInfo[0].DelegationDate.ToString();
|
||||
this.txtDelegationDate.Text = pageInfo[0].DelegationDate.Value.ToString("yyyy-MM-dd");
|
||||
this.txtInstallationName.Text = pageInfo[0].InstallationName;
|
||||
this.txtUnitName.Text = pageInfo[0].UnitName;
|
||||
this.txtDetectionMethod.Text = pageInfo[0].DetectionMethod;
|
||||
@@ -349,8 +349,8 @@ namespace FineUIPro.Web.WeldingProcess.PMI
|
||||
if (onePMIDelegationDetails == null)
|
||||
continue;
|
||||
//检测日期(缺失)
|
||||
string trustDate = values.Value<string>("TrustDate");
|
||||
if (string.IsNullOrWhiteSpace(trustDate))
|
||||
string DelegationDate = values.Value<string>("DelegationDate");
|
||||
if (string.IsNullOrWhiteSpace(DelegationDate))
|
||||
;
|
||||
else
|
||||
;
|
||||
@@ -374,7 +374,7 @@ namespace FineUIPro.Web.WeldingProcess.PMI
|
||||
this.BindGrid();
|
||||
}
|
||||
|
||||
ShowNotify("数据保存成功!(表格数据已重新绑定)");
|
||||
ShowNotify(Resources.Lan.SaveSuccessfully, MessageBoxIcon.Success);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user