diff options
| author | wangxin <[email protected]> | 2019-06-26 17:27:01 +0800 |
|---|---|---|
| committer | wangxin <[email protected]> | 2019-06-26 17:27:01 +0800 |
| commit | c0f424579ba8020adf693daf6f138630218672d0 (patch) | |
| tree | 78450c1cddebc424f2975c89a4d67e75378a04ec | |
| parent | 881372118e1367f5e8188815e7801b03a695fc65 (diff) | |
修正勾选审核提示compile id
| -rw-r--r-- | src/main/java/com/nis/web/controller/configuration/ObjectGroupController.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/nis/web/controller/configuration/ObjectGroupController.java b/src/main/java/com/nis/web/controller/configuration/ObjectGroupController.java index e63e1fe04..e97b84b3d 100644 --- a/src/main/java/com/nis/web/controller/configuration/ObjectGroupController.java +++ b/src/main/java/com/nis/web/controller/configuration/ObjectGroupController.java @@ -267,7 +267,7 @@ public class ObjectGroupController extends BaseController { entity.setFunctionId(functionId); try { if(StringUtils.isBlank(entity.getCommonGroupIds())){ - tip.append(String.format(props.getProperty("no_common_group","The configuration ID of %s does not have an group;"),id)); + tip.append(String.format(props.getProperty("no_common_group","The configuration ID of %s does not have an group;"),entity.getCompileId())); tip.append("<br/>"); }else{ objectGroupService.auditPolicy(entity,isAudit,Constants.INSERT_ACTION); |
