1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Models/Invoice.php

448 lines
12 KiB
PHP
Raw Normal View History

<?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
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Models;
use App\Events\Invoice\InvoiceWasMarkedSent;
use App\Events\Invoice\InvoiceWasPaid;
2019-09-05 01:52:49 +02:00
use App\Events\Invoice\InvoiceWasUpdated;
use App\Helpers\Invoice\InvoiceSum;
use App\Helpers\Invoice\InvoiceSumInclusive;
use App\Jobs\Client\UpdateClientBalance;
use App\Jobs\Company\UpdateCompanyLedgerWithInvoice;
2020-10-26 05:06:58 +01:00
use App\Jobs\Entity\CreateEntityPdf;
use App\Models\Backup;
use App\Models\CompanyLedger;
2019-05-02 07:47:16 +02:00
use App\Models\Currency;
2019-04-04 03:38:17 +02:00
use App\Models\Filterable;
2019-10-02 00:44:13 +02:00
use App\Models\PaymentTerm;
2020-10-28 11:10:49 +01:00
use App\Models\Presenters\InvoicePresenter;
use App\Services\Invoice\InvoiceService;
use App\Services\Ledger\LedgerService;
2020-07-08 14:02:16 +02:00
use App\Utils\Ninja;
use App\Utils\Number;
use App\Utils\Traits\Archivable;
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;
use App\Utils\Traits\MakesInvoiceValues;
use App\Utils\Traits\MakesReminders;
2019-05-02 07:47:16 +02:00
use App\Utils\Traits\NumberFormatter;
use Illuminate\Database\Eloquent\Model;
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\File;
use Illuminate\Support\Facades\Storage;
2019-08-29 06:07:04 +02:00
use Laracasts\Presenter\PresentableTrait;
class Invoice extends BaseModel
{
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;
use MakesInvoiceValues;
use MakesReminders;
use ActionsInvoice;
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 = [];
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 = [
'number',
2019-05-16 00:26:21 +02:00
'discount',
'po_number',
'date',
2019-05-16 00:26:21 +02:00
'due_date',
'terms',
'public_notes',
'private_notes',
'invoice_type_id',
'tax_name1',
'tax_rate1',
'tax_name2',
'tax_rate2',
'tax_name3',
'tax_rate3',
2019-05-16 00:26:21 +02:00
'is_amount_discount',
2019-10-11 00:11:36 +02:00
'footer',
2019-05-16 00:26:21 +02:00
'partial',
'partial_due_date',
'project_id',
2019-05-16 00:26:21 +02:00
'custom_value1',
'custom_value2',
'custom_value3',
'custom_value4',
2019-05-16 00:26:21 +02:00
'line_items',
'client_id',
'footer',
'custom_surcharge1',
'custom_surcharge2',
'custom_surcharge3',
'custom_surcharge4',
'custom_surcharge_tax1',
'custom_surcharge_tax2',
'custom_surcharge_tax3',
'custom_surcharge_tax4',
'design_id',
2020-06-16 02:21:40 +02:00
'assigned_user_id',
'exchange_rate',
2019-05-16 00:26:21 +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',
'line_items' => 'object',
'backup' => 'object',
'updated_at' => 'timestamp',
'created_at' => 'timestamp',
'deleted_at' => 'timestamp',
];
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',
'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;
const STATUS_REVERSED = 6;
2019-04-23 06:16:41 +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
public function getEntityType()
{
return self::class;
}
public function getDateAttribute($value)
{
2020-08-15 00:03:29 +02:00
return $this->dateMutator($value);
}
public function getDueDateAttribute($value)
{
2020-08-15 00:03:29 +02:00
return $this->dateMutator($value);
}
public function getPartialDueDateAttribute($value)
{
2020-08-15 00:03:29 +02:00
return $this->dateMutator($value);
}
2019-04-04 01:17:15 +02:00
public function company()
{
2019-04-04 01:17:15 +02:00
return $this->belongsTo(Company::class);
}
2019-04-04 01:17:15 +02:00
public function user()
{
return $this->belongsTo(User::class)->withTrashed();
}
2019-04-04 01:30:49 +02:00
public function assigned_user()
{
return $this->belongsTo(User::class, 'assigned_user_id', 'id')->withTrashed();
}
2019-12-07 12:33:49 +01:00
public function invitations()
{
2019-04-24 02:22:02 +02:00
return $this->hasMany(InvoiceInvitation::class);
}
public function client()
{
return $this->belongsTo(Client::class)->withTrashed();
}
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-07-07 09:56:30 +02:00
return $this->morphToMany(Payment::class, 'paymentable')->withPivot('amount', 'refunded')->withTimestamps()->withTrashed();
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');
}
public function activities()
{
return $this->hasMany(Activity::class);
}
public function history()
{
return $this->hasManyThrough(Backup::class, Activity::class);
}
public function credits()
{
return $this->hasMany(Credit::class);
}
public function tasks()
{
return $this->hasMany(Task::class);
}
public function expenses()
{
return $this->hasMany(Expense::class);
}
/**
* Service entry points.
*/
public function service() :InvoiceService
{
return new InvoiceService($this);
}
public function ledger()
{
return new LedgerService($this);
}
2019-05-02 07:47:16 +02:00
/* ---------------- */
/* Settings getters */
/* ---------------- */
public function getStatusAttribute()
{
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;
} else {
return $this->status_id;
}
}
public function isPayable(): bool
{
if ($this->status_id == self::STATUS_DRAFT && $this->is_deleted == false) {
2020-07-07 14:33:11 +02:00
return true;
} elseif ($this->status_id == self::STATUS_SENT && $this->is_deleted == false) {
2019-10-08 04:03:40 +02:00
return true;
} elseif ($this->status_id == self::STATUS_PARTIAL && $this->is_deleted == false) {
2019-10-08 04:03:40 +02:00
return true;
} elseif ($this->status_id == self::STATUS_SENT && $this->is_deleted == false) {
2019-10-08 04:03:40 +02:00
return true;
} elseif ($this->status_id == self::STATUS_DRAFT && $this->is_deleted == false) {
2019-10-08 04:03:40 +02:00
return true;
} else {
2019-10-08 04:03:40 +02:00
return false;
}
}
public function isRefundable(): bool
{
if ($this->is_deleted) {
return false;
}
if (($this->amount - $this->balance) == 0) {
return false;
}
return true;
}
/**
* @return bool
*/
public function isPartial(): bool
{
return $this->status_id >= self::STATUS_PARTIAL;
}
/**
* @return bool
*/
public function hasPartial(): bool
{
return ($this->partial && $this->partial > 0) === true;
}
2019-08-14 04:16:09 +02:00
public static function badgeForStatus(int $status)
{
switch ($status) {
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;
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;
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;
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;
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;
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;
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;
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:
// code...
2019-08-14 04:16:09 +02:00
break;
}
}
public static function stringStatus(int $status)
{
switch ($status) {
case self::STATUS_DRAFT:
return ctrans('texts.draft');
break;
case self::STATUS_SENT:
return ctrans('texts.sent');
break;
case self::STATUS_PARTIAL:
return ctrans('texts.partial');
break;
case self::STATUS_PAID:
return ctrans('texts.paid');
break;
case self::STATUS_CANCELLED:
return ctrans('texts.cancelled');
break;
case self::STATUS_OVERDUE:
return ctrans('texts.overdue');
break;
case self::STATUS_UNPAID:
return ctrans('texts.unpaid');
break;
case self::STATUS_REVERSED:
return ctrans('texts.reversed');
break;
default:
// code...
break;
}
}
2019-09-04 07:10:10 +02:00
/**
* Access the invoice calculator object.
2019-12-07 12:33:49 +01:00
*
* @return stdClass The invoice calculator object getters
2019-09-04 07:10:10 +02:00
*/
public function calc()
{
$invoice_calc = null;
if ($this->uses_inclusive_taxes) {
$invoice_calc = new InvoiceSumInclusive($this);
} else {
$invoice_calc = new InvoiceSum($this);
}
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
public function pdf_file_path($invitation = null)
2019-09-05 01:52:49 +02:00
{
if (! $invitation) {
$invitation = $this->invitations->first();
}
$storage_path = Storage::url($this->client->invoice_filepath().$this->number.'.pdf');
2019-09-05 01:52:49 +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-12-07 12:33:49 +01:00
return $storage_path;
}
/**
* Updates Invites to SENT.
*/
public function markInvitationsSent()
{
$this->invitations->each(function ($invitation) {
if (! isset($invitation->sent_date)) {
$invitation->sent_date = Carbon::now();
$invitation->save();
}
});
}
2020-07-28 06:29:56 +02:00
/**
* Filtering logic to determine
* 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;
break;
2020-07-28 06:29:56 +02:00
default:
return false;
break;
}
}
public function getBalanceDueAttribute()
{
return $this->balance;
}
public function getTotalAttribute()
{
return $this->calc()->getTotal();
}
2019-12-07 12:33:49 +01:00
}