2018-09-18 02:37:04 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
use Illuminate\Support\Facades\Mail;
|
|
|
|
|
|
|
|
use App\Mail\OrderRequestReject;
|
|
|
|
use App\Models\Service;
|
|
|
|
|
|
|
|
class OrderReject extends Command
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The name and signature of the console command.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $signature = 'order:reject {service : Service ID} {reason : Reason }';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The console command description.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $description = 'Reject Order';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new command instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the console command.
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
|
|
|
$so = Service::findOrFail($this->argument('service'));
|
|
|
|
|
|
|
|
Mail::to($so->orderby->email)->sendNow(new OrderRequestReject($so,$this->argument('reason')));
|
|
|
|
|
|
|
|
if (Mail::failures()) {
|
|
|
|
dump('Failure?');
|
|
|
|
|
|
|
|
dump(Mail::failures());
|
|
|
|
}
|
|
|
|
|
|
|
|
$so->order_status = 'ORDER-REJECTED';
|
2019-01-24 03:40:33 +00:00
|
|
|
$so->order_info = array_merge($so->order_info ? $so->order_info : [],['reason'=>$this->argument('reason')]);
|
2018-09-18 02:37:04 +00:00
|
|
|
$so->save();
|
|
|
|
}
|
|
|
|
}
|