| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- namespace App\Jobs;
- use App\Components\ErrorPush;
- use App\Services\LogService;
- use App\Services\OrderService;
- use Illuminate\Bus\Queueable;
- use Illuminate\Contracts\Queue\ShouldQueue;
- use Illuminate\Database\Eloquent\Collection;
- use Illuminate\Database\QueryException;
- use Illuminate\Foundation\Bus\Dispatchable;
- use Illuminate\Queue\InteractsWithQueue;
- /**
- * @Deprecated 即时账单生成
- */
- class OrderCreateInstantBill implements ShouldQueue
- {
- use Dispatchable, InteractsWithQueue, Queueable, ErrorPush;
- protected $orders;
- /**
- * Create a new job instance.
- *
- * @param Collection $orders
- * @return void
- */
- public function __construct($orders)
- {
- $this->orders = $orders;
- }
- /**
- *
- * @param OrderService $service
- * @return void
- * @throws
- */
- public function handle(OrderService $service)
- {
- if ($this->orders){
- $errors = [];
- foreach ($this->orders as $order){
- try{
- if (!$service->createInstantBill($order))
- $this->push(__METHOD__."->".__LINE__,"订单生成即时账单",$order->toJson());
- }catch(QueryException $qe){
- if ($qe->getCode()!='23000'){
- $this->push(__METHOD__."->".__LINE__,"订单生成即时账单",$order->toJson()." | ".$qe->getMessage());
- $errors = ["order_".$order->id.":".$qe->getMessage()];
- }
- }catch (\Exception $e){
- $this->push(__METHOD__."->".__LINE__,"订单生成即时账单",$order->toJson()." | ".$e->getMessage());
- $errors = ["order_".$order->id.":".$e->getMessage()];
- }
- }
- if ($errors)throw new \Exception(json_encode($errors));
- }
- }
- }
|