Browse Source

fixbug:修复转到访审核错误问题

yb 6 months ago
parent
commit
a7a809d1c1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/wechat/service/CustomService.php

+ 1 - 1
app/wechat/service/CustomService.php

@@ -623,7 +623,7 @@ class CustomService
                     ['check_status', '=', 1],
                     ['id', '<>', $customId]
                 ];
-                MarketCustomer::where($where)->update(['check_time' => time(),'check_status' => -1,'check_note' => self::CHECK_NOTE]);
+                MarketCustomer::where($where)->update(['current_status' => -1, 'check_time' => time(),'check_status' => -1,'check_note' => self::CHECK_NOTE]);
             }
             Db::commit();
         }catch (BusinessException|\Exception $e){