关键控制点代码修改|权限阅览查询语句修改

This commit is contained in:
zhaol 2025-01-22 20:54:57 +08:00
parent 5874c2a16d
commit 237b7a691c
3 changed files with 2 additions and 2 deletions

View File

@ -924,7 +924,7 @@ public class OutputWordUtil {
//定义表格数据
String[] header = {"关键控制点", "控制描述","对应风险控制","角色/岗位"};
String[] header = {"关键控制点", "控制描述","对应风险描述","角色/岗位"};
//添加表格的表头
Table table = section.addTable(true);
table.resetCells(tableInfo.size(),header.length);

View File

@ -5541,7 +5541,7 @@ public class PALRepositoryQueryAPIManager {
public boolean hasAccessPortalDesignerPerm(UserContext uc, PALRepositoryModel model) {
String newBoName = "BO_ACT_PUBLISH_PERM_SCOPE";
BO bo = SDK.getBOAPI().query(newBoName).addQuery("PALVERSIONID=", model.getId()).detail();
BO bo = SDK.getBOAPI().query(newBoName).addQuery("PALVERSIONID=", model.getVersionId()).detail();
if (bo == null) {
return false;
}