Browse Source

客服营销员修改

anderx 2 years ago
parent
commit
271aa8d993

+ 0 - 7
src/main/java/com/goafanti/customer/controller/AdminCustomerApiController.java

@@ -927,13 +927,6 @@ public class AdminCustomerApiController extends BaseApiController{
 				return res;
 			}
 		}
-		//领取,当前人不是客服营销员才需要判断最大现在
-		if (operatorType ==AFTConstants.USER_RECEIVE&&(!TokenManager.hasRole(AFTConstants.CUSTOMER_SERVICE_SALESMAN))){
-			if (customerService.checkMax(uid,aid)){
-				res.getError().add(buildError("","对方私有客户已达最大限制"));
-				return res;
-			}
-		}
 		if(data==null)data=0;
 		res.setData(customerService.updateByOperatorType(uid, aid, oldAid, operatorType, data));