傅行帆 3 år sedan
förälder
incheckning
a03223dc73

+ 2
- 2
src/main/java/com/yunzhi/marketing/xlk/controller/ChannelCustomerController.java Visa fil

@@ -145,12 +145,12 @@ public class ChannelCustomerController extends BaseController {
145 145
     }
146 146
 
147 147
     /**
148
-     * 驻场 确认认购
148
+     * 驻场 结佣
149 149
      *
150 150
      * @param
151 151
      * @return
152 152
      */
153
-    @ApiOperation(value = "森哥看这里-wx-驻场确认认购", notes = "森哥看这里-wx-驻场确认认购")
153
+    @ApiOperation(value = "森哥看这里-wx-驻场确认结佣", notes = "森哥看这里-wx-驻场确认结佣")
154 154
     @RequestMapping(value="/{plat}/marking/commission",method= RequestMethod.PUT)
155 155
     public ResponseBean commissionCustomer(@RequestBody MarkingCommissionCustomerDTO params){
156 156
         return iChannelCustomerService.commissionCustomer(params);

+ 2
- 2
src/main/java/com/yunzhi/marketing/xlk/service/impl/ChannelCustomerServiceImpl.java Visa fil

@@ -248,7 +248,7 @@ public class ChannelCustomerServiceImpl extends ServiceImpl<ChannelCustomerMappe
248 248
      */
249 249
     @Override
250 250
     public ResponseBean invalidCustomerUpdate(MarkingChannelCustomerDTO params) {// 渠道推荐的客户
251
-        if ("channel".equals(params.getType())) {
251
+        if ("report".equals(params.getType())) {
252 252
             ChannelCustomer customer = channelCustomerMapper.selectById(params.getId());
253 253
             // 审核不通过 先查看在ta_recommend_customer 手机号是否存在
254 254
             LambdaQueryWrapper<TaRecommendCustomer> queryWrapper = new LambdaQueryWrapper<>();
@@ -258,7 +258,7 @@ public class ChannelCustomerServiceImpl extends ServiceImpl<ChannelCustomerMappe
258 258
             if (null != recommendCustomer) {
259 259
                 // 审核不通过
260 260
                 recommendCustomer.setRecommendPerson(customer.getRecommendPerson());
261
-                recommendCustomer.setVerifyStatus(CommConstant.VERIFY_AGREE);
261
+                recommendCustomer.setVerifyStatus(CommConstant.VERIFY_DISAGREE);
262 262
                 recommendCustomer.setStatus(CommConstant.CUSTOMER_VISITE);
263 263
                 taRecommendCustomerMapper.updateById(recommendCustomer);
264 264