mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
b3eb2ae3b4
* Working on subscriptions * Implement return type in models * Subscription implementation * Improvements to handling importation of large accountS * Loggin imports * Activate collector * Improve memory usage of import script * Appen Tags into emails - fix companygatewaytransformer
145 lines
3.2 KiB
PHP
145 lines
3.2 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Events\Invoice\InvoiceWasUpdated;
|
|
use App\Jobs\Invoice\CreateInvoicePdf;
|
|
use App\Models\Invoice;
|
|
use App\Utils\Traits\Inviteable;
|
|
use App\Utils\Traits\MakesDates;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Illuminate\Support\Carbon;
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
class InvoiceInvitation extends BaseModel
|
|
{
|
|
use MakesDates;
|
|
use SoftDeletes;
|
|
use Inviteable;
|
|
|
|
protected $fillable = [
|
|
//'key',
|
|
//'client_contact_id',
|
|
];
|
|
|
|
protected $with = [
|
|
// 'company',
|
|
];
|
|
|
|
public function getEntityType()
|
|
{
|
|
return InvoiceInvitation::class;
|
|
}
|
|
|
|
public function getSignatureDateAttribute($value)
|
|
{
|
|
if (!$value) {
|
|
return (new Carbon($value))->format('Y-m-d');
|
|
}
|
|
return $value;
|
|
}
|
|
|
|
public function getSentDateAttribute($value)
|
|
{
|
|
if (!$value) {
|
|
return (new Carbon($value))->format('Y-m-d');
|
|
}
|
|
return $value;
|
|
}
|
|
|
|
public function getViewedDateAttribute($value)
|
|
{
|
|
if (!$value) {
|
|
return (new Carbon($value))->format('Y-m-d');
|
|
}
|
|
return $value;
|
|
}
|
|
|
|
public function getOpenedDateAttribute($value)
|
|
{
|
|
if (!$value) {
|
|
return (new Carbon($value))->format('Y-m-d');
|
|
}
|
|
return $value;
|
|
}
|
|
|
|
public function entityType()
|
|
{
|
|
return Invoice::class ;
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function invoice()
|
|
{
|
|
return $this->belongsTo(Invoice::class)->withTrashed();
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function contact()
|
|
{
|
|
return $this->belongsTo(ClientContact::class, 'client_contact_id', 'id')->withTrashed();
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class)->withTrashed();
|
|
}
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function company()
|
|
{
|
|
return $this->belongsTo(Company::class);
|
|
}
|
|
|
|
public function signatureDiv()
|
|
{
|
|
if (!$this->signature_base64) {
|
|
return false;
|
|
}
|
|
|
|
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));
|
|
}
|
|
|
|
public function getName()
|
|
{
|
|
return $this->key;
|
|
}
|
|
|
|
public function markViewed()
|
|
{
|
|
$this->viewed_date = Carbon::now();
|
|
$this->save();
|
|
}
|
|
|
|
public function pdf_file_path()
|
|
{
|
|
$storage_path = Storage::url($this->invoice->client->invoice_filepath() . $this->invoice->number . '.pdf');
|
|
|
|
if (!Storage::exists($this->invoice->client->invoice_filepath() . $this->invoice->number . '.pdf')) {
|
|
event(new InvoiceWasUpdated($this->invoice, $this->company));
|
|
CreateInvoicePdf::dispatchNow($this);
|
|
}
|
|
|
|
return $storage_path;
|
|
}
|
|
|
|
}
|