客户端用户密码修改BUG更改;

客户端用户只有取消审核通过和删除的策略时,允许删除此用户;
客户端用户修改成功后,给出提示信息。
This commit is contained in:
段冬梅
2019-02-21 10:55:26 +08:00
parent 60392b2493
commit 043cb275dc
3 changed files with 5 additions and 4 deletions

View File

@@ -806,7 +806,7 @@
<include refid="policyColumns"/>
FROM
ip_reuse_policy_cfg r
where r.IS_VALID != -1
where (r.IS_VALID != -1 and r.is_audit != 3)
and r.user_name =#{userName}
</select>
@@ -815,7 +815,7 @@
<include refid="dnatPolicyColumns"/>
FROM
ip_reuse_dnat_policy a
where a.IS_VALID != -1
where (a.IS_VALID != -1 and a.is_audit != 3)
and a.translated_user_id =#{userName}
</select>