1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Models/InvoiceInvitation.php

121 lines
2.8 KiB
PHP
Raw Normal View History

2019-04-24 02:22:02 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. 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;
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;
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;
use Illuminate\Database\Eloquent\SoftDeletes;
2019-09-23 07:59:01 +02:00
use Illuminate\Support\Carbon;
use Illuminate\Support\Facades\Storage;
2019-04-24 02:22:02 +02:00
class InvoiceInvitation extends BaseModel
{
use MakesDates;
use SoftDeletes;
use Inviteable;
protected $fillable = [
2020-07-23 05:55:11 +02:00
'client_contact_id',
];
protected $with = [
2020-07-26 07:12:40 +02:00
'company',
'contact',
];
protected $touches = ['invoice'];
public function getEntityType()
{
return self::class;
}
public function entityType()
{
return Invoice::class;
}
2019-05-29 06:33:53 +02:00
/**
* @return mixed
*/
public function invoice()
{
return $this->belongsTo(Invoice::class)->withTrashed();
}
2019-04-24 02:22:02 +02:00
/**
* @return mixed
*/
public function contact()
{
return $this->belongsTo(ClientContact::class, 'client_contact_id', 'id')->withTrashed();
}
2019-04-24 02:22:02 +02:00
/**
* @return mixed
*/
public function user()
{
return $this->belongsTo(User::class)->withTrashed();
}
2019-04-24 02:22:02 +02:00
/**
2020-10-28 11:10:49 +01:00
* @return BelongsTo
*/
public function company()
{
return $this->belongsTo(Company::class);
}
2019-04-24 02:22:02 +02:00
public function signatureDiv()
{
if (! $this->signature_base64) {
return false;
}
2019-04-24 02:22:02 +02: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
public function getName()
{
return $this->key;
}
2019-06-02 11:57:12 +02:00
public function markViewed()
{
$this->viewed_date = Carbon::now();
$this->save();
}
public function markOpened()
{
$this->opened_date = Carbon::now();
$this->save();
}
public function pdf_file_path()
{
$storage_path = Storage::url($this->invoice->client->invoice_filepath().$this->invoice->numberFormatter().'.pdf');
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();
}
return $storage_path;
}
2019-04-24 02:22:02 +02:00
}