|
|
@@ -247,7 +247,7 @@ public class AdminCustomerApiController extends BaseApiController{
|
|
|
return res;
|
|
|
}
|
|
|
if (customerService.checkMax(TokenManager.getAdminId())) {
|
|
|
- res.getError().add(buildError("私有客户已达最大限制"));
|
|
|
+ res.getError().add(buildError("","私有客户已达最大限制"));
|
|
|
return res;
|
|
|
}
|
|
|
//将新增客户的空格去除
|
|
|
@@ -536,7 +536,7 @@ public class AdminCustomerApiController extends BaseApiController{
|
|
|
return res;
|
|
|
}
|
|
|
if (customerService.checkMax(TokenManager.getAdminId())) {
|
|
|
- res.getError().add(buildError("私有客户已达最大限制"));
|
|
|
+ res.getError().add(buildError("","私有客户已达最大限制"));
|
|
|
return res;
|
|
|
}
|
|
|
customerService.updateByOperatorType(uid, oldAid,AFTConstants.USER_RECEIVE);
|
|
|
@@ -774,7 +774,7 @@ public class AdminCustomerApiController extends BaseApiController{
|
|
|
return res;
|
|
|
}
|
|
|
if (customerService.checkMax(aid)) {
|
|
|
- res.getError().add(buildError("对方私有客户已达最大限制"));
|
|
|
+ res.getError().add(buildError("","对方私有客户已达最大限制"));
|
|
|
return res;
|
|
|
}
|
|
|
customerService.updateByOperatorType(uid,oldAid,AFTConstants.USER_TRANSFER_TO_OTHER, aid);
|