diff --git a/pgserver/application/admin/controller/Bussiness.php b/pgserver/application/admin/controller/Bussiness.php index d3c696f..5450e2e 100644 --- a/pgserver/application/admin/controller/Bussiness.php +++ b/pgserver/application/admin/controller/Bussiness.php @@ -138,9 +138,6 @@ class Bussiness extends Base $res = $inquiryService->createInquiry($data); if($res['code'] == 1){ - \think\facade\Log::write('Bussiness/save: 开始推送未回价数量', 'push_debug'); - $result = \fetchAndPushUnreturnedPriceCount(); - \think\facade\Log::write('Bussiness/save: 推送结果: ' . ($result ? '成功' : '失败'), 'push_debug'); return $this->buildSuccess(); } return $this->buildFailed($res['code'], $res['msg']); diff --git a/pgserver/application/admin/controller/Estimate.php b/pgserver/application/admin/controller/Estimate.php index 2d813d2..b4c7cf9 100644 --- a/pgserver/application/admin/controller/Estimate.php +++ b/pgserver/application/admin/controller/Estimate.php @@ -542,9 +542,6 @@ class Estimate extends Base return $this->buildFailed('操作失败!'); } - // 推送预估数量更新给所有客户端 - fetchAndPushEstimatePendingCount(); - return $this->buildSuccess(); } diff --git a/pgserver/application/admin/controller/Pending.php b/pgserver/application/admin/controller/Pending.php index 1b57964..68ca6b7 100644 --- a/pgserver/application/admin/controller/Pending.php +++ b/pgserver/application/admin/controller/Pending.php @@ -958,9 +958,6 @@ class Pending extends Base // 写入消息 if ($message_flag == 1) { // 回价提交发现消息 - \think\facade\Log::write('Pending/save: 开始推送未回价数量', 'push_debug'); - $result = \fetchAndPushUnreturnedPriceCount(); - \think\facade\Log::write('Pending/save: 推送结果: ' . ($result ? '成功' : '失败'), 'push_debug'); PublicMessage($id, 2, 2); } else { // 调价提交发送消息 PublicMessage($id, 2, 4);