2020-01-07 01:13:47 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-01-07 01:13:47 +01: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-01-07 01:13:47 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-01-07 01:13:47 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2020-10-26 05:06:58 +01:00
|
|
|
use App\Jobs\Entity\CreateEntityPdf;
|
2020-01-07 01:13:47 +01:00
|
|
|
use App\Utils\Traits\Inviteable;
|
|
|
|
use App\Utils\Traits\MakesDates;
|
2020-10-28 11:10:49 +01:00
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
2020-01-07 01:13:47 +01:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
use Illuminate\Support\Carbon;
|
2020-04-16 10:41:25 +02:00
|
|
|
use Illuminate\Support\Facades\Storage;
|
2020-01-07 01:13:47 +01:00
|
|
|
|
2023-03-08 08:33:42 +01:00
|
|
|
/**
|
|
|
|
* App\Models\CreditInvitation
|
|
|
|
*
|
|
|
|
* @property int $id
|
|
|
|
* @property int $company_id
|
|
|
|
* @property int $user_id
|
|
|
|
* @property int $client_contact_id
|
|
|
|
* @property int $credit_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 \App\Models\Credit $credit
|
|
|
|
* @property-read mixed $hashed_id
|
|
|
|
* @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\CreditInvitationFactory factory($count = null, $state = [])
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation newModelQuery()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation newQuery()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation onlyTrashed()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation query()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel scope()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation whereClientContactId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation whereCompanyId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation whereCreatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation whereCreditId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation whereDeletedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation whereEmailError($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation whereEmailStatus($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation whereId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation whereKey($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation whereMessageId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation whereOpenedDate($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation whereSentDate($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation whereSignatureBase64($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation whereSignatureDate($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation whereSignatureIp($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation whereTransactionReference($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation whereUpdatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation whereUserId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation whereViewedDate($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation withTrashed()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|CreditInvitation withoutTrashed()
|
|
|
|
* @mixin \Eloquent
|
|
|
|
*/
|
2020-01-07 01:13:47 +01:00
|
|
|
class CreditInvitation extends BaseModel
|
|
|
|
{
|
|
|
|
use MakesDates;
|
|
|
|
use SoftDeletes;
|
|
|
|
use Inviteable;
|
|
|
|
|
|
|
|
protected $fillable = [
|
|
|
|
'id',
|
|
|
|
'client_contact_id',
|
|
|
|
];
|
|
|
|
|
|
|
|
protected $with = [
|
2020-07-26 07:12:40 +02:00
|
|
|
'company',
|
|
|
|
'contact',
|
2020-01-07 01:13:47 +01:00
|
|
|
];
|
|
|
|
|
2020-07-16 13:01:39 +02:00
|
|
|
protected $touches = ['credit'];
|
|
|
|
|
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-01-07 01:13:47 +01:00
|
|
|
public function entityType()
|
|
|
|
{
|
|
|
|
return Credit::class;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function credit()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Credit::class)->withTrashed();
|
|
|
|
}
|
2023-06-07 05:53:38 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function entity()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Credit::class)->withTrashed();
|
|
|
|
}
|
2020-01-07 01:13:47 +01:00
|
|
|
/**
|
|
|
|
* @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();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-10-28 11:10:49 +01:00
|
|
|
* @return BelongsTo
|
2020-01-07 01:13:47 +01:00
|
|
|
*/
|
|
|
|
public function company()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Company::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName()
|
|
|
|
{
|
|
|
|
return $this->key;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function markViewed()
|
|
|
|
{
|
|
|
|
$this->viewed_date = Carbon::now();
|
|
|
|
$this->save();
|
|
|
|
}
|
2020-04-16 10:41:25 +02:00
|
|
|
|
|
|
|
public function pdf_file_path()
|
|
|
|
{
|
2021-06-12 13:50:01 +02:00
|
|
|
$storage_path = Storage::url($this->credit->client->quote_filepath($this).$this->credit->numberFormatter().'.pdf');
|
2020-04-16 10:41:25 +02:00
|
|
|
|
2021-06-12 13:50:01 +02:00
|
|
|
if (! Storage::exists($this->credit->client->credit_filepath($this).$this->credit->numberFormatter().'.pdf')) {
|
2022-07-31 23:30:04 +02:00
|
|
|
(new CreateEntityPdf($this))->handle();
|
2020-04-16 10:41:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $storage_path;
|
|
|
|
}
|
2020-01-07 01:13:47 +01:00
|
|
|
}
|