|
@@ -275,6 +275,7 @@ public class ChannelCustomerController extends BaseController {
|
275
|
275
|
// 跟进信息
|
276
|
276
|
QueryWrapper<TaCustomerFollowUpRecord> queryWrapper = new QueryWrapper<>();
|
277
|
277
|
queryWrapper.eq("customer_id", customerId);
|
|
278
|
+ queryWrapper.like("record_type", "%跟进%");
|
278
|
279
|
queryWrapper.last(" and DATE_FORMAT(create_date. '%Y-%m-$d') = '"+ DateUtils.today() +"'");
|
279
|
280
|
int num = iTaCustomerFollowUpRecordService.count(queryWrapper);
|
280
|
281
|
|