|
|
@@ -2,6 +2,7 @@
|
|
|
|
|
|
namespace App\Services;
|
|
|
|
|
|
+use App\Jobs\SyncRejectedBillRejectingStatusJob;
|
|
|
use App\OrderIssue;
|
|
|
use App\OrderIssueProcessLog;
|
|
|
use App\OrderIssueRejectedBill;
|
|
|
@@ -80,6 +81,7 @@ class WorkOrderService
|
|
|
/** @var WorkOrder $workOrder */
|
|
|
$workOrder = $this->createOrResetWorkOrder($order, $orderIssueType, $remark, $process_progress);
|
|
|
$workOrder->notification();
|
|
|
+ SyncRejectedBillRejectingStatusJob::dispatch($workOrder->order);
|
|
|
return $workOrder;
|
|
|
}
|
|
|
|