浏览代码

合并错误修正

LD 5 年之前
父节点
当前提交
365e99d399
共有 1 个文件被更改,包括 0 次插入3 次删除
  1. 0 3
      app/Services/RejectedBillService.php

+ 0 - 3
app/Services/RejectedBillService.php

@@ -120,9 +120,6 @@ Class RejectedBillService
             $this->batchUpdate($updateParams);
         }
     }
-    public function batchUpdate($params){
-        return app(BatchUpdateService::class)->batchUpdate('rejected_bills',$params);
-    }
     public function getRejectedBills(array $logisticNumberReturn){
         if(count($logisticNumberReturn)<1){return null;}
         return RejectedBill::query()->whereIn('logistic_number_return',$logisticNumberReturn)->get();