20250329 工作台

This commit is contained in:
2025-03-29 00:01:50 +08:00
parent 2d5e6785f1
commit 70169120e3
27 changed files with 770 additions and 795 deletions
@@ -34,8 +34,17 @@ namespace FineUIPro.Web.CQMS.Comprehensive
{
if (!IsPostBack)
{
GetButtonPower();
BLL.UnitService.InitUnitDownList(this.drpUnitId, this.CurrUser.LoginProjectId, true);
GetButtonPower();
//工作台待办
string projectId = Request.Params["projectId"];
if (!string.IsNullOrEmpty(projectId))
{
BLL.UnitService.InitUnitDownList(this.drpUnitId, projectId, true);
}
else
{
BLL.UnitService.InitUnitDownList(this.drpUnitId, this.CurrUser.LoginProjectId, true);
}
if (CurrUser.UnitId == null || CurrUser.UserId == Const.sysglyId||CurrUser.UnitId== Const.UnitId_CWCEC)
{
@@ -480,6 +489,15 @@ namespace FineUIPro.Web.CQMS.Comprehensive
this.btnSave.Hidden = false;
}
}
else
{
//工作台待办
string projectId = Request.Params["projectId"];
if (!string.IsNullOrEmpty(projectId))
{
this.btnSave.Hidden = false;
}
}
}
#endregion
}