2020-07-06 06:16:24 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-07-06 06:16:24 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-07-06 06:16:24 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-07-06 06:16:24 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Services\Quote;
|
|
|
|
|
|
|
|
use App\Models\Quote;
|
2023-10-26 03:25:56 +02:00
|
|
|
use App\Models\ClientContact;
|
|
|
|
use App\Jobs\Entity\CreateRawPdf;
|
2020-07-06 06:16:24 +02:00
|
|
|
use App\Services\AbstractService;
|
|
|
|
|
|
|
|
class GetQuotePdf extends AbstractService
|
|
|
|
{
|
2023-03-15 13:06:06 +01:00
|
|
|
public function __construct(public Quote $quote, public ?ClientContact $contact = null)
|
2020-07-06 06:16:24 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function run()
|
|
|
|
{
|
2022-06-24 13:15:14 +02:00
|
|
|
if (!$this->contact) {
|
2022-03-06 22:53:32 +01:00
|
|
|
$this->contact = $this->quote->client->primary_contact()->first() ?: $this->quote->client->contacts()->first();
|
2020-07-06 06:16:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$invitation = $this->quote->invitations->where('client_contact_id', $this->contact->id)->first();
|
|
|
|
|
2023-03-18 08:24:56 +01:00
|
|
|
if (!$invitation) {
|
2023-03-15 12:59:40 +01:00
|
|
|
$invitation = $this->quote->invitations->first();
|
2023-03-18 08:24:56 +01:00
|
|
|
}
|
2023-03-15 12:59:40 +01:00
|
|
|
|
2023-10-26 03:25:56 +02:00
|
|
|
return (new CreateRawPdf($invitation))->handle();
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2020-07-06 06:16:24 +02:00
|
|
|
}
|
|
|
|
}
|