pal 手册获取表单图与制度图特殊处理
This commit is contained in:
parent
bbe0305cee
commit
59fe81184d
Binary file not shown.
@ -1500,8 +1500,19 @@ public class PALRepositoryQueryAPIManager {
|
||||
for (String category : categorys) {
|
||||
if (methods != null && !"".equals(methods) ) {
|
||||
if (methods.indexOf(category) == -1 ) {
|
||||
//制度图与表单图特殊处理
|
||||
if ("data.form".equals(methods)){
|
||||
if (!category.equals("process")){
|
||||
continue;
|
||||
}
|
||||
} else if ("control.policy".equals(methods)){
|
||||
if (!category.equals("process")){
|
||||
continue;
|
||||
}
|
||||
} else {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
}
|
||||
JSONObject jsonObject = new JSONObject();
|
||||
jsonObject.put("id", category);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user