|
|
@@ -193,7 +193,6 @@ public class CustomerServiceImpl implements CustomerService {
|
|
|
saveSfxz(company_id,fb_id);
|
|
|
saveSsgg(company_id,fb_id);
|
|
|
saveDanbao(company_id,fb_id);
|
|
|
- baseDao.execute("update customer set cu_gzstatus='正在关注' where cu_name in (select fb_name from fbbusiness where fb_tyshxycode='"+company_id+"')");
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -612,6 +611,18 @@ public class CustomerServiceImpl implements CustomerService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 更新客户关注状态为正在关注
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public void updateCUGZStatus(List<String> list){
|
|
|
+ if (list!=null&&list.size()>0) {
|
|
|
+ baseDao.execute(
|
|
|
+ "update customer set cu_gzstatus='正在关注' where cu_name in (select fb_name from fbbusiness where fb_tyshxycode in (" + list2String(list) + ")");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 清除所有相关表中数据
|