20221009部门人员当前项目取值来源工作经历。修改在职离职。

This commit is contained in:
2022-10-09 10:41:41 +08:00
parent b1416ebf7e
commit 6533db1bfc
6 changed files with 73 additions and 9 deletions
+24
View File
@@ -786,6 +786,30 @@ namespace FineUIPro.Web
}
#endregion
#region ASPX
/// <summary>
///
/// </summary>
/// <param name="bitValue"></param>
/// <returns></returns>
protected string GetIsPost(object bitValue)
{
string value = string.Empty;
if (bitValue != null)
{
if (bitValue.ToString() == "1" || Convert.ToBoolean(bitValue.ToString()))
{
value = "在职";
}
else
{
value = "离职";
}
}
return value;
}
#endregion
#region ASPX
/// <summary>
/// 获取项目状态的字面值,在 ASPX 中调用