批量修改更改清单的文件
This commit is contained in:
parent
3bfb366e43
commit
7dadf6acf3
@ -45,6 +45,26 @@ public class UpdateKnowJobs implements IJob {
|
||||
AddKnwlAC(jsonArray1,userContext.getSessionId(),ext4);
|
||||
}
|
||||
}
|
||||
|
||||
List<BO> bo_act_coe_publish_c = SDK.getBOAPI().query("BO_ACT_COE_PUBLISH_C", true).addQuery("BINDID = ", bindid).list();
|
||||
for (BO bo1:bo_act_coe_publish_c) {
|
||||
String publishfileid = bo1.getString("CHANGEDFILEIDNEW");
|
||||
RowMap map = DBSql.getMap("select * from APP_ACT_COE_PAL_REPOSITORY where ID = '" + publishfileid + "' AND ISPUBLISH = '1' AND ISSTOP='0'");
|
||||
String ext4 = map.getString("EXT4");
|
||||
RowMap map1 = DBSql.getMap("select * from app_act_kms_card where ID = '" + ext4 + "'");
|
||||
if (map1!=null){
|
||||
int update = DBSql.update("delete from sys_ac where RESOURCEID = '" + ext4 + "' AND RESOURCETYPE = 'kms.card'");
|
||||
SDK.getLogAPI().consoleInfo("删除ac授权文件>>>>>>>>>>"+update);
|
||||
JSONArray jsonArray1 = new JSONArray();
|
||||
JSONObject jsonObjecta = new JSONObject();
|
||||
jsonObjecta.put("assignmentType", "company");
|
||||
jsonObjecta.put("assignmentId", "8911e732-b42a-4556-853f-ad32761bcbee");
|
||||
jsonArray1.add(jsonObjecta);
|
||||
UserContext userContext = UserContext.fromUID("admin");
|
||||
AddKnwlAC(jsonArray1,userContext.getSessionId(),ext4);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user