|
|
@@ -1131,13 +1131,13 @@ public class CustomerServiceImpl extends BaseMybatisDao<UserMapper> implements C
|
|
|
}
|
|
|
/**
|
|
|
*
|
|
|
- * @param type 0录入 1领取 2转交客户 3转交业务
|
|
|
+ * @param type 0录入 1 领取 2 转交私有客户 3转交业务 4 未跟进丢失(30) 5未签单丢失(270天)6释放 7转交签单客户
|
|
|
*/
|
|
|
private void addUserTransferLog(String uid,String aid,Integer type,String pid,Date lockTime, List<String> uList) {
|
|
|
if(uList.isEmpty()) {
|
|
|
UserTransferLog utl=new UserTransferLog();
|
|
|
if(type==0||type==1) utl.setAid(aid);
|
|
|
- else if(type==2||type==3) {
|
|
|
+ else if(type==2||type==3||type==7) {
|
|
|
utl.setAid(TokenManager.getAdminId());
|
|
|
utl.setTakeAid(aid);
|
|
|
}
|
|
|
@@ -1152,7 +1152,7 @@ public class CustomerServiceImpl extends BaseMybatisDao<UserMapper> implements C
|
|
|
for (String string : ulist) {
|
|
|
UserTransferLog utl=new UserTransferLog();
|
|
|
if(type==0||type==1) utl.setAid(string);
|
|
|
- else if(type==2||type==3) {
|
|
|
+ else if(type==2||type==3||type==7) {
|
|
|
utl.setAid(TokenManager.getAdminId());
|
|
|
utl.setTakeAid(string);
|
|
|
}
|