人员信息档案

This commit is contained in:
geh 2025-08-08 09:57:21 +08:00
parent c5a80c95bf
commit 9c98470736
2 changed files with 2 additions and 1 deletions

View File

@ -84,7 +84,7 @@
Width="200px" LabelWidth="70px" LabelAlign="right" ForceSelection="false">
<f:ListItem Value="" Text="请选择"/>
<f:ListItem Value="待审核" Text="待审核"/>
<f:ListItem Value="在岗" Text="在岗" />
<f:ListItem Value="在岗" Text="在岗" Selected="True" />
<f:ListItem Value="离岗" Text="离岗"/>
</f:DropDownList>
<f:CheckBox runat="server" ID="ckIdCardInfoNotOK" Label="身份信息不齐全" LabelAlign="right" LabelWidth="120px">

View File

@ -90,6 +90,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
{
person.OutTime = Funs.GetNewDateTime(this.txtChangeTime.Text);
person.IsUsed = false;
person.IsUsedType = "0";
BLL.PersonService.UpdatePerson(person);
}
}