2018-10-15 14:40:34 +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
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2018-10-15 14:40:34 +02:00
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2020-12-09 10:52:08 +01:00
|
|
|
use App\Events\Invoice\InvoiceReminderWasEmailed;
|
|
|
|
use App\Events\Invoice\InvoiceWasEmailed;
|
2019-09-05 01:52:49 +02:00
|
|
|
use App\Events\Invoice\InvoiceWasUpdated;
|
2019-10-22 04:07:00 +02:00
|
|
|
use App\Helpers\Invoice\InvoiceSum;
|
|
|
|
use App\Helpers\Invoice\InvoiceSumInclusive;
|
2020-10-26 05:06:58 +01:00
|
|
|
use App\Jobs\Entity\CreateEntityPdf;
|
2020-10-28 11:10:49 +01:00
|
|
|
use App\Models\Presenters\InvoicePresenter;
|
2020-02-03 11:33:07 +01:00
|
|
|
use App\Services\Invoice\InvoiceService;
|
2020-02-20 22:05:01 +01:00
|
|
|
use App\Services\Ledger\LedgerService;
|
2020-07-08 14:02:16 +02:00
|
|
|
use App\Utils\Ninja;
|
2020-10-26 05:06:58 +01:00
|
|
|
use App\Utils\Traits\Invoice\ActionsInvoice;
|
2019-05-02 07:47:16 +02:00
|
|
|
use App\Utils\Traits\MakesDates;
|
2019-09-02 07:08:26 +02:00
|
|
|
use App\Utils\Traits\MakesInvoiceValues;
|
2019-12-18 03:45:18 +01:00
|
|
|
use App\Utils\Traits\MakesReminders;
|
2019-05-02 07:47:16 +02:00
|
|
|
use App\Utils\Traits\NumberFormatter;
|
2019-04-04 03:38:17 +02:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2019-05-29 13:15:42 +02:00
|
|
|
use Illuminate\Support\Carbon;
|
2019-09-04 03:45:53 +02:00
|
|
|
use Illuminate\Support\Facades\Storage;
|
2019-08-29 06:07:04 +02:00
|
|
|
use Laracasts\Presenter\PresentableTrait;
|
2018-10-15 14:40:34 +02:00
|
|
|
|
2018-11-02 11:54:46 +01:00
|
|
|
class Invoice extends BaseModel
|
2018-10-15 14:40:34 +02:00
|
|
|
{
|
2019-04-04 03:38:17 +02:00
|
|
|
use SoftDeletes;
|
|
|
|
use Filterable;
|
2019-05-02 07:47:16 +02:00
|
|
|
use NumberFormatter;
|
|
|
|
use MakesDates;
|
2019-08-29 06:07:04 +02:00
|
|
|
use PresentableTrait;
|
2019-09-02 07:08:26 +02:00
|
|
|
use MakesInvoiceValues;
|
2019-12-18 03:45:18 +01:00
|
|
|
use MakesReminders;
|
2020-04-08 12:48:31 +02:00
|
|
|
use ActionsInvoice;
|
2019-12-18 03:45:18 +01:00
|
|
|
|
2020-10-28 11:10:49 +01:00
|
|
|
protected $presenter = InvoicePresenter::class;
|
2019-04-04 03:38:17 +02:00
|
|
|
|
2020-07-23 05:55:11 +02:00
|
|
|
protected $touches = [];
|
2020-07-16 13:01:39 +02:00
|
|
|
|
2019-07-29 05:59:28 +02:00
|
|
|
protected $hidden = [
|
|
|
|
'id',
|
2019-07-30 00:28:38 +02:00
|
|
|
'private_notes',
|
|
|
|
'user_id',
|
|
|
|
'client_id',
|
|
|
|
'company_id',
|
2019-07-29 05:59:28 +02:00
|
|
|
];
|
|
|
|
|
2019-05-16 00:26:21 +02:00
|
|
|
protected $fillable = [
|
2019-11-27 11:27:24 +01:00
|
|
|
'number',
|
2019-05-16 00:26:21 +02:00
|
|
|
'discount',
|
|
|
|
'po_number',
|
2019-11-27 11:27:24 +01:00
|
|
|
'date',
|
2019-05-16 00:26:21 +02:00
|
|
|
'due_date',
|
|
|
|
'terms',
|
|
|
|
'public_notes',
|
|
|
|
'private_notes',
|
|
|
|
'tax_name1',
|
|
|
|
'tax_rate1',
|
|
|
|
'tax_name2',
|
|
|
|
'tax_rate2',
|
2019-10-05 04:28:23 +02:00
|
|
|
'tax_name3',
|
|
|
|
'tax_rate3',
|
2019-05-16 00:26:21 +02:00
|
|
|
'is_amount_discount',
|
|
|
|
'partial',
|
|
|
|
'partial_due_date',
|
2020-10-14 22:58:20 +02:00
|
|
|
'project_id',
|
2019-05-16 00:26:21 +02:00
|
|
|
'custom_value1',
|
|
|
|
'custom_value2',
|
2019-06-26 06:04:10 +02:00
|
|
|
'custom_value3',
|
|
|
|
'custom_value4',
|
2019-05-16 00:26:21 +02:00
|
|
|
'line_items',
|
|
|
|
'client_id',
|
2019-06-26 06:04:10 +02:00
|
|
|
'footer',
|
2020-03-05 08:14:57 +01:00
|
|
|
'custom_surcharge1',
|
|
|
|
'custom_surcharge2',
|
|
|
|
'custom_surcharge3',
|
|
|
|
'custom_surcharge4',
|
|
|
|
'custom_surcharge_tax1',
|
|
|
|
'custom_surcharge_tax2',
|
|
|
|
'custom_surcharge_tax3',
|
|
|
|
'custom_surcharge_tax4',
|
2020-03-07 23:15:11 +01:00
|
|
|
'design_id',
|
2020-06-16 02:21:40 +02:00
|
|
|
'assigned_user_id',
|
2020-09-06 11:38:10 +02:00
|
|
|
'exchange_rate',
|
2019-05-16 00:26:21 +02:00
|
|
|
];
|
2018-11-20 05:36:56 +01:00
|
|
|
|
2019-04-17 08:20:32 +02:00
|
|
|
protected $casts = [
|
2020-08-14 14:21:46 +02:00
|
|
|
// 'date' => 'date:Y-m-d',
|
|
|
|
// 'due_date' => 'date:Y-m-d',
|
|
|
|
// 'partial_due_date' => 'date:Y-m-d',
|
2019-09-26 00:27:26 +02:00
|
|
|
'line_items' => 'object',
|
2020-06-15 01:34:18 +02:00
|
|
|
'backup' => 'object',
|
2019-09-26 00:27:26 +02:00
|
|
|
'updated_at' => 'timestamp',
|
|
|
|
'created_at' => 'timestamp',
|
|
|
|
'deleted_at' => 'timestamp',
|
2019-04-17 08:20:32 +02:00
|
|
|
];
|
|
|
|
|
2020-08-14 14:21:46 +02:00
|
|
|
protected $with = [];
|
2019-04-25 09:16:41 +02:00
|
|
|
|
2019-08-14 04:16:09 +02:00
|
|
|
protected $appends = [
|
|
|
|
'hashed_id',
|
2020-09-06 11:38:10 +02:00
|
|
|
'status',
|
2019-08-14 04:16:09 +02:00
|
|
|
];
|
|
|
|
|
2019-04-04 01:30:49 +02:00
|
|
|
const STATUS_DRAFT = 1;
|
2019-04-28 12:25:18 +02:00
|
|
|
const STATUS_SENT = 2;
|
2019-05-02 07:47:16 +02:00
|
|
|
const STATUS_PARTIAL = 3;
|
|
|
|
const STATUS_PAID = 4;
|
|
|
|
const STATUS_CANCELLED = 5;
|
2020-04-08 12:48:31 +02:00
|
|
|
const STATUS_REVERSED = 6;
|
2019-04-23 06:16:41 +02:00
|
|
|
|
2020-04-08 12:48:31 +02:00
|
|
|
const STATUS_OVERDUE = -1; //status < 4 || < 3 && !is_deleted && !trashed() && due_date < now()
|
|
|
|
const STATUS_UNPAID = -2; //status < 4 || < 3 && !is_deleted && !trashed()
|
2019-04-04 01:30:49 +02:00
|
|
|
|
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-04-04 12:32:42 +02:00
|
|
|
public function getDateAttribute($value)
|
|
|
|
{
|
2020-08-15 00:03:29 +02:00
|
|
|
return $this->dateMutator($value);
|
2020-03-29 14:22:14 +02:00
|
|
|
}
|
|
|
|
|
2020-04-04 12:32:42 +02:00
|
|
|
public function getDueDateAttribute($value)
|
|
|
|
{
|
2020-08-15 00:03:29 +02:00
|
|
|
return $this->dateMutator($value);
|
2020-03-29 14:22:14 +02:00
|
|
|
}
|
|
|
|
|
2020-04-04 12:32:42 +02:00
|
|
|
public function getPartialDueDateAttribute($value)
|
|
|
|
{
|
2020-08-15 00:03:29 +02:00
|
|
|
return $this->dateMutator($value);
|
2020-03-29 14:22:14 +02:00
|
|
|
}
|
|
|
|
|
2019-04-04 01:17:15 +02:00
|
|
|
public function company()
|
2018-11-20 05:36:56 +01:00
|
|
|
{
|
2019-04-04 01:17:15 +02:00
|
|
|
return $this->belongsTo(Company::class);
|
2018-11-20 05:36:56 +01:00
|
|
|
}
|
|
|
|
|
2019-04-04 01:17:15 +02:00
|
|
|
public function user()
|
2018-11-20 05:36:56 +01:00
|
|
|
{
|
2019-11-25 10:38:55 +01:00
|
|
|
return $this->belongsTo(User::class)->withTrashed();
|
2018-11-20 05:36:56 +01:00
|
|
|
}
|
2019-04-04 01:30:49 +02:00
|
|
|
|
2019-11-05 11:16:38 +01:00
|
|
|
public function assigned_user()
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
return $this->belongsTo(User::class, 'assigned_user_id', 'id')->withTrashed();
|
2019-11-05 11:16:38 +01:00
|
|
|
}
|
2019-12-07 12:33:49 +01:00
|
|
|
|
2018-10-22 14:04:37 +02:00
|
|
|
public function invitations()
|
|
|
|
{
|
2019-04-24 02:22:02 +02:00
|
|
|
return $this->hasMany(InvoiceInvitation::class);
|
2018-10-22 14:04:37 +02:00
|
|
|
}
|
2019-04-24 07:18:48 +02:00
|
|
|
|
|
|
|
public function client()
|
|
|
|
{
|
2019-11-25 10:38:55 +01:00
|
|
|
return $this->belongsTo(Client::class)->withTrashed();
|
2019-04-24 07:18:48 +02:00
|
|
|
}
|
2019-04-28 07:31:32 +02:00
|
|
|
|
|
|
|
public function documents()
|
|
|
|
{
|
|
|
|
return $this->morphMany(Document::class, 'documentable');
|
|
|
|
}
|
2019-05-02 07:47:16 +02:00
|
|
|
|
2019-05-13 08:18:46 +02:00
|
|
|
public function payments()
|
|
|
|
{
|
2020-11-25 10:21:26 +01:00
|
|
|
return $this->morphToMany(Payment::class, 'paymentable')->withTrashed()->withPivot('amount', 'refunded')->withTimestamps();
|
2019-05-13 08:18:46 +02:00
|
|
|
}
|
|
|
|
|
2019-05-15 06:47:07 +02:00
|
|
|
public function company_ledger()
|
|
|
|
{
|
|
|
|
return $this->morphMany(CompanyLedger::class, 'company_ledgerable');
|
|
|
|
}
|
|
|
|
|
2020-04-16 10:41:25 +02:00
|
|
|
public function activities()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Activity::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function history()
|
|
|
|
{
|
2020-06-01 13:49:11 +02:00
|
|
|
return $this->hasManyThrough(Backup::class, Activity::class);
|
2020-04-16 10:41:25 +02:00
|
|
|
}
|
|
|
|
|
2020-07-16 05:54:26 +02:00
|
|
|
public function credits()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Credit::class);
|
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-11-01 08:53:43 +01:00
|
|
|
public function tasks()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Task::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function expenses()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Expense::class);
|
|
|
|
}
|
2020-02-03 11:33:07 +01:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Service entry points.
|
2020-02-03 11:33:07 +01:00
|
|
|
*/
|
2020-02-20 22:05:01 +01:00
|
|
|
public function service() :InvoiceService
|
2020-02-03 11:33:07 +01:00
|
|
|
{
|
|
|
|
return new InvoiceService($this);
|
|
|
|
}
|
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
public function ledger()
|
2020-02-20 22:05:01 +01:00
|
|
|
{
|
|
|
|
return new LedgerService($this);
|
|
|
|
}
|
|
|
|
|
2019-05-02 07:47:16 +02:00
|
|
|
/* ---------------- */
|
|
|
|
/* Settings getters */
|
|
|
|
/* ---------------- */
|
|
|
|
|
2020-02-03 11:33:07 +01:00
|
|
|
public function getStatusAttribute()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
if ($this->status_id == self::STATUS_SENT && $this->due_date > Carbon::now()) {
|
|
|
|
return self::STATUS_UNPAID;
|
|
|
|
} elseif ($this->status_id == self::STATUS_PARTIAL && $this->partial_due_date > Carbon::now()) {
|
|
|
|
return self::STATUS_UNPAID;
|
|
|
|
} elseif ($this->status_id == self::STATUS_SENT && $this->due_date < Carbon::now()) {
|
|
|
|
return self::STATUS_OVERDUE;
|
|
|
|
} elseif ($this->status_id == self::STATUS_PARTIAL && $this->partial_due_date < Carbon::now()) {
|
|
|
|
return self::STATUS_OVERDUE;
|
2020-02-03 11:33:07 +01:00
|
|
|
} else {
|
|
|
|
return $this->status_id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-15 10:01:15 +01:00
|
|
|
public function isPayable(): bool
|
2019-08-14 07:40:22 +02:00
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
if ($this->status_id == self::STATUS_DRAFT && $this->is_deleted == false) {
|
2020-07-07 14:33:11 +02:00
|
|
|
return true;
|
2020-09-06 11:38:10 +02:00
|
|
|
} elseif ($this->status_id == self::STATUS_SENT && $this->is_deleted == false) {
|
2019-10-08 04:03:40 +02:00
|
|
|
return true;
|
2020-09-06 11:38:10 +02:00
|
|
|
} elseif ($this->status_id == self::STATUS_PARTIAL && $this->is_deleted == false) {
|
2019-10-08 04:03:40 +02:00
|
|
|
return true;
|
2020-09-06 11:38:10 +02:00
|
|
|
} elseif ($this->status_id == self::STATUS_SENT && $this->is_deleted == false) {
|
2019-10-08 04:03:40 +02:00
|
|
|
return true;
|
2020-09-06 11:38:10 +02:00
|
|
|
} elseif ($this->status_id == self::STATUS_DRAFT && $this->is_deleted == false) {
|
2019-10-08 04:03:40 +02:00
|
|
|
return true;
|
2019-12-30 22:59:12 +01:00
|
|
|
} else {
|
2019-10-08 04:03:40 +02:00
|
|
|
return false;
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-08-14 07:40:22 +02:00
|
|
|
}
|
|
|
|
|
2020-02-15 10:01:15 +01:00
|
|
|
public function isRefundable(): bool
|
2020-01-20 11:10:33 +01:00
|
|
|
{
|
2020-02-15 10:01:15 +01:00
|
|
|
if ($this->is_deleted) {
|
2020-01-29 05:25:08 +01:00
|
|
|
return false;
|
2020-02-15 10:01:15 +01:00
|
|
|
}
|
2020-01-20 11:10:33 +01:00
|
|
|
|
2020-02-15 10:01:15 +01:00
|
|
|
if (($this->amount - $this->balance) == 0) {
|
2020-01-30 05:50:45 +01:00
|
|
|
return false;
|
2020-02-15 10:01:15 +01:00
|
|
|
}
|
2020-01-30 05:50:45 +01:00
|
|
|
|
2020-01-20 11:10:33 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-03 11:33:07 +01:00
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
2020-02-15 10:01:15 +01:00
|
|
|
public function isPartial(): bool
|
2020-02-03 11:33:07 +01:00
|
|
|
{
|
|
|
|
return $this->status_id >= self::STATUS_PARTIAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
2020-02-15 10:01:15 +01:00
|
|
|
public function hasPartial(): bool
|
2020-02-03 11:33:07 +01:00
|
|
|
{
|
|
|
|
return ($this->partial && $this->partial > 0) === true;
|
|
|
|
}
|
|
|
|
|
2019-08-14 04:16:09 +02:00
|
|
|
public static function badgeForStatus(int $status)
|
|
|
|
{
|
|
|
|
switch ($status) {
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::STATUS_DRAFT:
|
|
|
|
return '<h5><span class="badge badge-light">'.ctrans('texts.draft').'</span></h5>';
|
2019-08-14 04:16:09 +02:00
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::STATUS_SENT:
|
|
|
|
return '<h5><span class="badge badge-primary">'.ctrans('texts.sent').'</span></h5>';
|
2019-08-14 04:16:09 +02:00
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::STATUS_PARTIAL:
|
|
|
|
return '<h5><span class="badge badge-primary">'.ctrans('texts.partial').'</span></h5>';
|
2019-08-14 04:16:09 +02:00
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::STATUS_PAID:
|
|
|
|
return '<h5><span class="badge badge-success">'.ctrans('texts.paid').'</span></h5>';
|
2019-08-14 04:16:09 +02:00
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::STATUS_CANCELLED:
|
|
|
|
return '<h5><span class="badge badge-secondary">'.ctrans('texts.cancelled').'</span></h5>';
|
2019-08-14 04:16:09 +02:00
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::STATUS_OVERDUE:
|
|
|
|
return '<h5><span class="badge badge-danger">'.ctrans('texts.overdue').'</span></h5>';
|
2019-08-14 04:16:09 +02:00
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::STATUS_UNPAID:
|
|
|
|
return '<h5><span class="badge badge-warning">'.ctrans('texts.unpaid').'</span></h5>';
|
2019-12-07 12:33:49 +01:00
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::STATUS_REVERSED:
|
|
|
|
return '<h5><span class="badge badge-info">'.ctrans('texts.reversed').'</span></h5>';
|
2019-12-07 12:33:49 +01:00
|
|
|
break;
|
2019-08-14 04:16:09 +02:00
|
|
|
default:
|
2020-09-06 11:38:10 +02:00
|
|
|
// code...
|
2019-08-14 04:16:09 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2019-08-29 14:47:45 +02:00
|
|
|
|
2019-12-14 06:49:48 +01:00
|
|
|
public static function stringStatus(int $status)
|
|
|
|
{
|
|
|
|
switch ($status) {
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::STATUS_DRAFT:
|
2019-12-14 06:49:48 +01:00
|
|
|
return ctrans('texts.draft');
|
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::STATUS_SENT:
|
2019-12-14 06:49:48 +01:00
|
|
|
return ctrans('texts.sent');
|
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::STATUS_PARTIAL:
|
2019-12-14 06:49:48 +01:00
|
|
|
return ctrans('texts.partial');
|
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::STATUS_PAID:
|
2019-12-14 06:49:48 +01:00
|
|
|
return ctrans('texts.paid');
|
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::STATUS_CANCELLED:
|
2019-12-14 06:49:48 +01:00
|
|
|
return ctrans('texts.cancelled');
|
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::STATUS_OVERDUE:
|
2019-12-14 06:49:48 +01:00
|
|
|
return ctrans('texts.overdue');
|
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::STATUS_UNPAID:
|
2019-12-14 06:49:48 +01:00
|
|
|
return ctrans('texts.unpaid');
|
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::STATUS_REVERSED:
|
2019-12-14 06:49:48 +01:00
|
|
|
return ctrans('texts.reversed');
|
|
|
|
break;
|
|
|
|
default:
|
2020-09-06 11:38:10 +02:00
|
|
|
// code...
|
2019-12-14 06:49:48 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-02-15 10:01:15 +01:00
|
|
|
|
2019-09-04 07:10:10 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Access the invoice calculator object.
|
2019-12-07 12:33:49 +01:00
|
|
|
*
|
2020-11-01 06:09:09 +01:00
|
|
|
* @return stdClass The invoice calculator object getters
|
2019-09-04 07:10:10 +02:00
|
|
|
*/
|
|
|
|
public function calc()
|
|
|
|
{
|
2019-10-22 04:07:00 +02:00
|
|
|
$invoice_calc = null;
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if ($this->uses_inclusive_taxes) {
|
2019-11-10 22:12:21 +01:00
|
|
|
$invoice_calc = new InvoiceSumInclusive($this);
|
2019-12-30 22:59:12 +01:00
|
|
|
} else {
|
2019-12-04 02:06:14 +01:00
|
|
|
$invoice_calc = new InvoiceSum($this);
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-12-07 12:33:49 +01:00
|
|
|
|
2019-09-04 07:10:10 +02:00
|
|
|
return $invoice_calc->build();
|
|
|
|
}
|
2019-09-05 01:52:49 +02:00
|
|
|
|
2020-04-16 10:41:25 +02:00
|
|
|
public function pdf_file_path($invitation = null)
|
2019-09-05 01:52:49 +02:00
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! $invitation) {
|
2020-04-16 10:41:25 +02:00
|
|
|
$invitation = $this->invitations->first();
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
2020-02-12 01:41:17 +01:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$storage_path = Storage::url($this->client->invoice_filepath().$this->number.'.pdf');
|
2019-09-05 01:52:49 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! Storage::exists($this->client->invoice_filepath().$this->number.'.pdf')) {
|
2020-07-08 14:02:16 +02:00
|
|
|
event(new InvoiceWasUpdated($this, $this->company, Ninja::eventVars()));
|
2020-10-26 05:06:58 +01:00
|
|
|
CreateEntityPdf::dispatchNow($invitation);
|
2019-11-05 23:52:57 +01:00
|
|
|
}
|
|
|
|
|
2019-12-07 12:33:49 +01:00
|
|
|
return $storage_path;
|
2019-11-05 23:52:57 +01:00
|
|
|
}
|
|
|
|
|
2019-11-19 22:06:48 +01:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Updates Invites to SENT.
|
2019-11-19 22:06:48 +01:00
|
|
|
*/
|
2020-02-03 11:33:07 +01:00
|
|
|
public function markInvitationsSent()
|
2019-11-19 22:06:48 +01:00
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
$this->invitations->each(function ($invitation) {
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! isset($invitation->sent_date)) {
|
2019-11-19 22:06:48 +01:00
|
|
|
$invitation->sent_date = Carbon::now();
|
|
|
|
$invitation->save();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2020-02-03 11:33:07 +01:00
|
|
|
|
2020-07-28 06:29:56 +02:00
|
|
|
/**
|
|
|
|
* Filtering logic to determine
|
2020-09-06 11:38:10 +02:00
|
|
|
* whether an invoice is locked
|
|
|
|
* based on the current status of the invoice.
|
|
|
|
* @return bool [description]
|
2020-07-28 06:29:56 +02:00
|
|
|
*/
|
|
|
|
public function isLocked() :bool
|
|
|
|
{
|
|
|
|
$locked_status = $this->client->getSetting('lock_invoices');
|
|
|
|
|
|
|
|
switch ($locked_status) {
|
|
|
|
case 'off':
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
case 'when_sent':
|
|
|
|
return $this->status_id == self::STATUS_DRAFT;
|
|
|
|
break;
|
|
|
|
case 'when_paid':
|
|
|
|
return $this->status_id == self::STATUS_PAID || $this->status_id == self::STATUS_PARTIAL;
|
2020-09-06 11:38:10 +02:00
|
|
|
break;
|
2020-07-28 06:29:56 +02:00
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-14 14:53:36 +02:00
|
|
|
public function getBalanceDueAttribute()
|
|
|
|
{
|
|
|
|
return $this->balance;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getTotalAttribute()
|
|
|
|
{
|
|
|
|
return $this->calc()->getTotal();
|
|
|
|
}
|
2020-12-09 10:52:08 +01:00
|
|
|
|
2021-01-13 08:20:46 +01:00
|
|
|
public function entityEmailEvent($invitation, $reminder_template, $template)
|
2020-12-09 10:52:08 +01:00
|
|
|
{
|
|
|
|
switch ($reminder_template) {
|
|
|
|
case 'invoice':
|
2021-01-13 08:20:46 +01:00
|
|
|
event(new InvoiceWasEmailed($invitation, $invitation->company, Ninja::eventVars(), $template));
|
2020-12-09 10:52:08 +01:00
|
|
|
break;
|
|
|
|
case 'reminder1':
|
|
|
|
event(new InvoiceReminderWasEmailed($invitation, $invitation->company, Ninja::eventVars(), Activity::INVOICE_REMINDER1_SENT));
|
|
|
|
break;
|
|
|
|
case 'reminder2':
|
|
|
|
event(new InvoiceReminderWasEmailed($invitation, $invitation->company, Ninja::eventVars(), Activity::INVOICE_REMINDER2_SENT));
|
|
|
|
break;
|
|
|
|
case 'reminder3':
|
|
|
|
event(new InvoiceReminderWasEmailed($invitation, $invitation->company, Ninja::eventVars(), Activity::INVOICE_REMINDER3_SENT));
|
|
|
|
break;
|
|
|
|
case 'reminder_endless':
|
|
|
|
event(new InvoiceReminderWasEmailed($invitation, $invitation->company, Ninja::eventVars(), Activity::INVOICE_REMINDER_ENDLESS_SENT));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
# code...
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2019-12-07 12:33:49 +01:00
|
|
|
}
|