20230530集团看板数据来源页面添加
This commit is contained in:
@@ -98,6 +98,10 @@ namespace FineUIPro.Web.HSSE.Accident
|
||||
this.txtPreventiveAction.Text = accidentPersonRecord.PreventiveAction;
|
||||
this.txtHandleOpinion.Text = accidentPersonRecord.HandleOpinion;
|
||||
this.txtFileContents.Text = HttpUtility.HtmlDecode(accidentPersonRecord.FileContent);
|
||||
if (accidentPersonRecord.IsAttempt == "1")
|
||||
{
|
||||
this.ckIsAttempt.Checked = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
@@ -218,7 +222,14 @@ namespace FineUIPro.Web.HSSE.Accident
|
||||
{
|
||||
accidentPersonRecord.Injury = this.drpInjury.SelectedValue;
|
||||
}
|
||||
|
||||
if (this.ckIsAttempt.Checked == true)
|
||||
{
|
||||
accidentPersonRecord.IsAttempt = "1";
|
||||
}
|
||||
else
|
||||
{
|
||||
accidentPersonRecord.IsAttempt = "0";
|
||||
}
|
||||
accidentPersonRecord.InjuryPart = this.txtInjuryPart.Text.Trim();
|
||||
accidentPersonRecord.HssePersons = this.txtHssePersons.Text.Trim();
|
||||
accidentPersonRecord.InjuryResult = this.txtInjuryResult.Text.Trim();
|
||||
|
||||
Reference in New Issue
Block a user