master
yuan 7 years ago
parent 57b2dba12b
commit 7d4eb6333d

@ -1240,8 +1240,8 @@ public class ClientManagerImpl implements ClientManager, ManagerTodoNoticeProvid
private void checkModifyRate(JSONObject org,JSONObject configJson,String rateName,String rateValueKey){ private void checkModifyRate(JSONObject org,JSONObject configJson,String rateName,String rateValueKey){
if(configJson.getString("rate_name").equals(rateName)){ if(configJson.getString("rate_name").equals(rateName)){
if(org.containsKey(rateValueKey)){ if(org.containsKey(rateValueKey)){
if(configJson.getDouble("rate_value").compareTo(org.getDouble(rateValueKey)) > 0){ if(configJson.getDouble("rate_value").compareTo(org.getDouble(rateValueKey)) < 0){
throw new ForbiddenException("费率参数于旗下商户最低"+rateName+"费率,请重新输入===>"); throw new ForbiddenException("费率参数于旗下商户最低"+rateName+"费率,请重新输入");
}; };
} }
} }
@ -1249,8 +1249,8 @@ public class ClientManagerImpl implements ClientManager, ManagerTodoNoticeProvid
private void checkAddRate(JSONObject config,String channel, String rateKey,JSONObject org,String rateValueKey){ private void checkAddRate(JSONObject config,String channel, String rateKey,JSONObject org,String rateValueKey){
if(config.containsKey(rateKey)){ if(config.containsKey(rateKey)){
if(org.containsKey(rateValueKey)){ if(org.containsKey(rateValueKey)){
if(config.getBigDecimal(rateKey).compareTo(org.getBigDecimal(rateValueKey)) > 0){ if(config.getBigDecimal(rateKey).compareTo(org.getBigDecimal(rateValueKey)) < 0){
throw new ForbiddenException("费率参数于旗下商户最低"+channel+"费率,请重新输入===>"); throw new ForbiddenException("费率参数于旗下商户最低"+channel+"费率,请重新输入");
}; };
} }
} }

Loading…
Cancel
Save