mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
7dd6f814ac
* Change '__invoke' to 'run' for Invoice services * Change '__invoke' to 'run' for Quote services
35 lines
636 B
PHP
35 lines
636 B
PHP
<?php
|
|
|
|
namespace App\Services\Quote;
|
|
|
|
use App\Events\Quote\QuoteWasMarkedSent;
|
|
use App\Models\Quote;
|
|
|
|
class MarkSent
|
|
{
|
|
private $client;
|
|
|
|
public function __construct($client)
|
|
{
|
|
$this->client = $client;
|
|
}
|
|
|
|
public function run($quote)
|
|
{
|
|
|
|
/* Return immediately if status is not draft */
|
|
if ($quote->status_id != Quote::STATUS_DRAFT) {
|
|
return $quote;
|
|
}
|
|
|
|
$quote->markInvitationsSent();
|
|
|
|
event(new QuoteWasMarkedSent($quote, $quote->company));
|
|
|
|
$quote->service()->setStatus(Quote::STATUS_SENT)->applyNumber()->save();
|
|
|
|
return $quote;
|
|
|
|
}
|
|
}
|