Your Name 3 年之前
父節點
當前提交
2c8a351912
共有 1 個檔案被更改,包括 1 行新增0 行删除
  1. 1
    0
      src/main/java/com/yunzhi/marketing/xlk/controller/ChannelCustomerController.java

+ 1
- 0
src/main/java/com/yunzhi/marketing/xlk/controller/ChannelCustomerController.java 查看文件

@@ -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