1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00
invoiceninja/app/Services/Quote/MarkSent.php
Benjamin Beganović 7dd6f814ac
Change 'Quote' & 'Invoice' service implementation (#3327)
* Change '__invoke' to 'run' for Invoice services

*  Change '__invoke' to 'run' for Quote services
2020-02-14 14:32:22 +11:00

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;
}
}