2020-02-11 21:57:25 +01:00
|
|
|
<?php
|
2020-07-01 03:06:40 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-07-01 03:06:40 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-07-01 03:06:40 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
2020-02-11 21:57:25 +01:00
|
|
|
namespace App\Services\Quote;
|
|
|
|
|
|
|
|
use App\Events\Quote\QuoteWasMarkedSent;
|
|
|
|
use App\Models\Quote;
|
2020-07-08 14:02:16 +02:00
|
|
|
use App\Utils\Ninja;
|
2020-02-11 21:57:25 +01:00
|
|
|
|
|
|
|
class MarkSent
|
|
|
|
{
|
|
|
|
private $client;
|
|
|
|
|
2020-03-10 13:54:20 +01:00
|
|
|
private $quote;
|
|
|
|
|
|
|
|
public function __construct($client, $quote)
|
2020-02-11 21:57:25 +01:00
|
|
|
{
|
|
|
|
$this->client = $client;
|
2020-03-10 13:54:20 +01:00
|
|
|
$this->quote = $quote;
|
2020-02-11 21:57:25 +01:00
|
|
|
}
|
|
|
|
|
2020-03-10 13:54:20 +01:00
|
|
|
public function run()
|
2020-02-11 21:57:25 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
/* Return immediately if status is not draft */
|
2020-03-10 13:54:20 +01:00
|
|
|
if ($this->quote->status_id != Quote::STATUS_DRAFT) {
|
2020-04-16 10:41:25 +02:00
|
|
|
return $this->quote;
|
2020-02-11 21:57:25 +01:00
|
|
|
}
|
|
|
|
|
2020-03-10 13:54:20 +01:00
|
|
|
$this->quote->markInvitationsSent();
|
2020-02-11 21:57:25 +01:00
|
|
|
|
2020-07-08 14:02:16 +02:00
|
|
|
event(new QuoteWasMarkedSent($this->quote, $this->quote->company, Ninja::eventVars()));
|
2020-02-11 21:57:25 +01:00
|
|
|
|
2020-05-19 00:22:18 +02:00
|
|
|
$this->quote
|
|
|
|
->service()
|
|
|
|
->setStatus(Quote::STATUS_SENT)
|
|
|
|
->applyNumber()
|
2021-03-10 11:00:18 +01:00
|
|
|
->deletePdf()
|
2020-05-19 00:22:18 +02:00
|
|
|
->save();
|
2020-02-11 21:57:25 +01:00
|
|
|
|
2020-03-10 13:54:20 +01:00
|
|
|
return $this->quote;
|
2020-02-11 21:57:25 +01:00
|
|
|
}
|
|
|
|
}
|