2019-04-24 02:22:02 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +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)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 05:32:07 +02:00
|
|
|
*/
|
2019-04-24 02:22:02 +02:00
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2020-04-16 10:41:25 +02:00
|
|
|
use App\Events\Invoice\InvoiceWasUpdated;
|
2020-10-26 05:06:58 +01:00
|
|
|
use App\Jobs\Entity\CreateEntityPdf;
|
2020-07-08 14:02:16 +02:00
|
|
|
use App\Utils\Ninja;
|
2019-11-16 04:12:29 +01:00
|
|
|
use App\Utils\Traits\Inviteable;
|
2019-04-24 02:22:02 +02:00
|
|
|
use App\Utils\Traits\MakesDates;
|
2020-10-28 11:10:49 +01:00
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
2019-11-12 05:41:02 +01:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2019-09-23 07:59:01 +02:00
|
|
|
use Illuminate\Support\Carbon;
|
2020-04-16 10:41:25 +02:00
|
|
|
use Illuminate\Support\Facades\Storage;
|
2019-04-24 02:22:02 +02:00
|
|
|
|
2023-03-08 08:33:42 +01:00
|
|
|
/**
|
|
|
|
* App\Models\InvoiceInvitation
|
|
|
|
*
|
|
|
|
* @property int $id
|
|
|
|
* @property int $company_id
|
|
|
|
* @property int $user_id
|
|
|
|
* @property int $client_contact_id
|
|
|
|
* @property int $invoice_id
|
|
|
|
* @property string $key
|
|
|
|
* @property string|null $transaction_reference
|
|
|
|
* @property string|null $message_id
|
|
|
|
* @property string|null $email_error
|
|
|
|
* @property string|null $signature_base64
|
|
|
|
* @property string|null $signature_date
|
|
|
|
* @property string|null $sent_date
|
|
|
|
* @property string|null $viewed_date
|
|
|
|
* @property string|null $opened_date
|
|
|
|
* @property int|null $created_at
|
|
|
|
* @property int|null $updated_at
|
|
|
|
* @property int|null $deleted_at
|
|
|
|
* @property string|null $signature_ip
|
|
|
|
* @property string|null $email_status
|
|
|
|
* @property-read \App\Models\Company $company
|
|
|
|
* @property-read \App\Models\ClientContact $contact
|
|
|
|
* @property-read mixed $hashed_id
|
|
|
|
* @property-read \App\Models\Invoice $invoice
|
|
|
|
* @property-read \App\Models\User $user
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel company()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel exclude($columns)
|
|
|
|
* @method static \Database\Factories\InvoiceInvitationFactory factory($count = null, $state = [])
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation newModelQuery()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation newQuery()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation onlyTrashed()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation query()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel scope()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation whereClientContactId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation whereCompanyId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation whereCreatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation whereDeletedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation whereEmailError($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation whereEmailStatus($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation whereId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation whereInvoiceId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation whereKey($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation whereMessageId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation whereOpenedDate($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation whereSentDate($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation whereSignatureBase64($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation whereSignatureDate($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation whereSignatureIp($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation whereTransactionReference($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation whereUpdatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation whereUserId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation whereViewedDate($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation withTrashed()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation withoutTrashed()
|
2023-04-28 03:39:41 +02:00
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|InvoiceInvitation where()
|
2023-03-08 08:33:42 +01:00
|
|
|
* @mixin \Eloquent
|
|
|
|
*/
|
2020-03-21 06:37:30 +01:00
|
|
|
class InvoiceInvitation extends BaseModel
|
|
|
|
{
|
|
|
|
use MakesDates;
|
|
|
|
use SoftDeletes;
|
|
|
|
use Inviteable;
|
2019-11-16 04:12:29 +01:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
protected $fillable = [
|
2020-07-23 05:55:11 +02:00
|
|
|
'client_contact_id',
|
2020-03-21 06:37:30 +01:00
|
|
|
];
|
2019-04-24 07:18:48 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
protected $with = [
|
2020-07-26 07:12:40 +02:00
|
|
|
'company',
|
|
|
|
'contact',
|
2020-03-21 06:37:30 +01:00
|
|
|
];
|
2019-12-26 23:33:07 +01:00
|
|
|
|
2020-07-16 13:01:39 +02:00
|
|
|
protected $touches = ['invoice'];
|
|
|
|
|
2020-05-06 13:49:42 +02:00
|
|
|
public function getEntityType()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
return self::class;
|
2020-05-06 13:49:42 +02:00
|
|
|
}
|
2020-03-29 14:22:14 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
public function entityType()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
return Invoice::class;
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2019-05-29 06:33:53 +02:00
|
|
|
|
2023-08-04 08:40:44 +02:00
|
|
|
public function invoice(): \Illuminate\Database\Eloquent\Relations\BelongsTo
|
2020-03-21 06:37:30 +01:00
|
|
|
{
|
|
|
|
return $this->belongsTo(Invoice::class)->withTrashed();
|
|
|
|
}
|
2019-04-24 02:22:02 +02:00
|
|
|
|
2023-08-04 08:40:44 +02:00
|
|
|
public function getEntity(): \Illuminate\Database\Eloquent\Relations\BelongsTo
|
2023-06-07 05:53:38 +02:00
|
|
|
{
|
|
|
|
return $this->belongsTo(Invoice::class)->withTrashed();
|
|
|
|
}
|
|
|
|
|
2023-08-04 08:40:44 +02:00
|
|
|
public function contact(): \Illuminate\Database\Eloquent\Relations\BelongsTo
|
2020-03-21 06:37:30 +01:00
|
|
|
{
|
|
|
|
return $this->belongsTo(ClientContact::class, 'client_contact_id', 'id')->withTrashed();
|
|
|
|
}
|
2019-04-24 02:22:02 +02:00
|
|
|
|
2023-08-04 08:40:44 +02:00
|
|
|
public function user(): \Illuminate\Database\Eloquent\Relations\BelongsTo
|
2020-03-21 06:37:30 +01:00
|
|
|
{
|
|
|
|
return $this->belongsTo(User::class)->withTrashed();
|
|
|
|
}
|
2019-04-24 02:22:02 +02:00
|
|
|
|
2023-08-04 08:40:44 +02:00
|
|
|
public function company(): \Illuminate\Database\Eloquent\Relations\BelongsTo
|
2020-03-21 06:37:30 +01:00
|
|
|
{
|
|
|
|
return $this->belongsTo(Company::class);
|
|
|
|
}
|
2019-04-24 02:22:02 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
public function signatureDiv()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! $this->signature_base64) {
|
2020-03-21 06:37:30 +01:00
|
|
|
return false;
|
|
|
|
}
|
2019-04-24 02:22:02 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
return sprintf('<img src="data:image/svg+xml;base64,%s"></img><p/>%s: %s', $this->signature_base64, ctrans('texts.signed'), $this->createClientDate($this->signature_date, $this->contact->client->timezone()->name));
|
|
|
|
}
|
2019-04-24 02:22:02 +02:00
|
|
|
|
2023-08-04 08:40:44 +02:00
|
|
|
public function getName(): string
|
2020-03-21 06:37:30 +01:00
|
|
|
{
|
|
|
|
return $this->key;
|
|
|
|
}
|
2019-06-02 11:57:12 +02:00
|
|
|
|
2023-08-04 08:40:44 +02:00
|
|
|
public function markViewed(): void
|
2020-03-21 06:37:30 +01:00
|
|
|
{
|
|
|
|
$this->viewed_date = Carbon::now();
|
|
|
|
$this->save();
|
|
|
|
}
|
2020-04-16 10:41:25 +02:00
|
|
|
|
2023-08-04 08:40:44 +02:00
|
|
|
public function markOpened(): void
|
2020-07-14 07:37:49 +02:00
|
|
|
{
|
|
|
|
$this->opened_date = Carbon::now();
|
|
|
|
$this->save();
|
|
|
|
}
|
|
|
|
|
2023-08-04 08:40:44 +02:00
|
|
|
public function pdf_file_path(): string
|
2020-04-16 10:41:25 +02:00
|
|
|
{
|
2023-04-28 03:39:41 +02:00
|
|
|
$storage_path = Storage::url($this->invoice->client->invoice_filepath($this).$this->invoice->numberFormatter().'.pdf');
|
2020-04-16 10:41:25 +02:00
|
|
|
|
2021-06-12 13:50:01 +02:00
|
|
|
if (! Storage::exists($this->invoice->client->invoice_filepath($this).$this->invoice->numberFormatter().'.pdf')) {
|
2021-04-20 23:26:04 +02:00
|
|
|
event(new InvoiceWasUpdated($this->invoice, $this->company, Ninja::eventVars(auth()->user() ? auth()->user()->id : null)));
|
2022-08-01 09:43:26 +02:00
|
|
|
(new CreateEntityPdf($this))->handle();
|
2020-04-16 10:41:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $storage_path;
|
|
|
|
}
|
2019-04-24 02:22:02 +02:00
|
|
|
}
|