This commit is contained in:
geh
2026-09-14 15:58:12 +08:00
parent a815e09879
commit 77f61d7e06
128 changed files with 25181 additions and 960 deletions
@@ -74,6 +74,14 @@ namespace FineUIPro.Web.HSSE.Solution
{
this.txtTrainPersonNum.Text = largerHazard.TrainPersonNum.ToString();
}
if (!string.IsNullOrWhiteSpace(largerHazard.UnitId))
{
this.txtUnitName.Text = UnitService.getUnitNamesUnitIds(largerHazard.UnitId);
}
if (!string.IsNullOrWhiteSpace(largerHazard.StandbyPersonnelId))
{
this.txtStandbyPersonnel.Text = PersonService.GetPersonNameById(largerHazard.StandbyPersonnelId);
}
this.drpStates.SelectedValue = largerHazard.States;
this.txtDescriptions.Text = largerHazard.Descriptions;
this.txtRemark.Text = HttpUtility.HtmlDecode(largerHazard.Remark);