修改标准规范附件

This commit is contained in:
2023-05-30 17:17:24 +08:00
parent ea1634cbc7
commit 6b1271387c
2 changed files with 8 additions and 4 deletions
@@ -63,7 +63,8 @@ namespace FineUIPro.Web.CQMS.DataBase
this.cbIsSelected6.Checked = true;
}
this.txtRemark.Text = standard.Memo;
this.hdStandardCode.Text = standard.StandardCode + this.CurrUser.LoginProjectId;
//this.hdStandardCode.Text = standard.StandardCode + this.CurrUser.LoginProjectId;
this.hdStandardCode.Text = standard.StandardCode.ToString();
}
}
}
@@ -85,7 +86,8 @@ namespace FineUIPro.Web.CQMS.DataBase
{
maxStandardCode = BLL.ConstructionStandardListProjectService.GetMaxStandardCode(this.CurrUser.LoginProjectId);
}
this.hdStandardCode.Text = (maxStandardCode + 1).ToString() + this.CurrUser.LoginProjectId;
//this.hdStandardCode.Text = (maxStandardCode + 1).ToString() + this.CurrUser.LoginProjectId;
this.hdStandardCode.Text = (maxStandardCode + 1).ToString();
}
PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=0&toKeyId={0}&path=FileUpload/DataBase/ConstructionStandardProject&menuId={1}", this.hdStandardCode.Text, BLL.Const.CQMSConstructionStandardListProjectMenuId)));
}