diff --git a/app/Services/Quote/TriggeredActions.php b/app/Services/Quote/TriggeredActions.php index 0d59dc672b31..3e6283fc89b9 100644 --- a/app/Services/Quote/TriggeredActions.php +++ b/app/Services/Quote/TriggeredActions.php @@ -49,7 +49,8 @@ class TriggeredActions extends AbstractService $this->quote = $this->quote->service()->convert()->save(); } - if ($this->request->has('approve') && $this->request->input('approve') == 'true' && in_array($this->quote->status_id, [Quote::STATUS_SENT, Quote::STATUS_DRAFT])) { + // if ($this->request->has('approve') && $this->request->input('approve') == 'true' && in_array($this->quote->status_id, [Quote::STATUS_SENT, Quote::STATUS_DRAFT])) { + if ($this->request->has('approve') && $this->request->input('approve') == 'true') { $this->quote = $this->quote->service()->approveWithNoCoversion()->save(); }