Your Name 3 anni fa
parent
commit
2c8a351912

+ 1
- 0
src/main/java/com/yunzhi/marketing/xlk/controller/ChannelCustomerController.java Vedi File

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