Browse Source

监控异常运费订单

shensong00 4 years ago
parent
commit
03a0d901dc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Console/Commands/MonitorEmptyFreightCost.php

+ 1 - 1
app/Console/Commands/MonitorEmptyFreightCost.php

@@ -32,7 +32,7 @@ class MonitorEmptyFreightCost extends Command {
32 32
             ->where('logistics_id','>','')->where('status',3)->whereNull('freight_cost')->lists('id');
33 33
         if(count($orderIdList) > 0) {
34 34
             foreach($this->phoneArr as $phone) {
35
-                $this->sendMsg($phone, $orderIdList);
35
+                $this->sendMsg($phone, [$this->dr_name=>$orderIdList]);
36 36
             }
37 37
         }
38 38
         echo 'SUCCESS';