提交集团数据穿透修改

This commit is contained in:
2023-06-19 09:04:34 +08:00
parent efed3c7f6f
commit 1e709abb1a
184 changed files with 10777 additions and 3631 deletions
@@ -61,6 +61,19 @@ namespace FineUIPro.Web.HSSE.Solution
{
this.txtIsArgument.Text = "否";
}
if (largerHazard.IsSuperLargerHazard == true)
{
this.txtIsSuperLargerHazard.Text = "是";
}
else
{
this.txtIsSuperLargerHazard.Text = "否";
}
if (largerHazard.TrainPersonNum != null)
{
this.txtTrainPersonNum.Text = largerHazard.TrainPersonNum.ToString();
}
this.drpStates.SelectedValue = largerHazard.States;
this.txtDescriptions.Text = largerHazard.Descriptions;
this.txtRemark.Text = HttpUtility.HtmlDecode(largerHazard.Remark);
}