2019-04-04 10:30:49 +11:00
|
|
|
<?php
|
2019-05-11 13:32:07 +10:00
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
2022-04-27 13:20:41 +10:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
2021-06-16 16:58:16 +10:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 13:32:07 +10:00
|
|
|
*/
|
2019-04-04 10:30:49 +11:00
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
2020-04-16 18:41:25 +10:00
|
|
|
use App\Events\Quote\QuoteWasUpdated;
|
2019-12-18 09:40:15 +11:00
|
|
|
use App\Helpers\Invoice\InvoiceSum;
|
|
|
|
|
use App\Helpers\Invoice\InvoiceSumInclusive;
|
2020-10-26 15:06:58 +11:00
|
|
|
use App\Jobs\Entity\CreateEntityPdf;
|
2020-10-28 21:10:49 +11:00
|
|
|
use App\Models\Presenters\QuotePresenter;
|
2020-02-11 20:57:25 +00:00
|
|
|
use App\Services\Quote\QuoteService;
|
2020-07-08 22:02:16 +10:00
|
|
|
use App\Utils\Ninja;
|
2020-03-23 18:10:42 +01:00
|
|
|
use App\Utils\Traits\MakesDates;
|
2019-04-04 10:30:49 +11:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2020-02-20 07:44:12 +11:00
|
|
|
use App\Utils\Traits\MakesInvoiceValues;
|
2020-02-15 09:01:15 +00:00
|
|
|
use App\Utils\Traits\MakesReminders;
|
2019-11-12 15:41:02 +11:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2020-03-03 20:44:26 +11:00
|
|
|
use Illuminate\Support\Carbon;
|
2020-02-20 07:44:12 +11:00
|
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
|
use Laracasts\Presenter\PresentableTrait;
|
2019-04-04 10:30:49 +11:00
|
|
|
|
|
|
|
|
class Quote extends BaseModel
|
|
|
|
|
{
|
|
|
|
|
use MakesHash;
|
2020-03-23 18:10:42 +01:00
|
|
|
use MakesDates;
|
2019-05-02 21:24:00 +10:00
|
|
|
use Filterable;
|
2019-11-12 15:41:02 +11:00
|
|
|
use SoftDeletes;
|
2020-02-15 09:01:15 +00:00
|
|
|
use MakesReminders;
|
|
|
|
|
use PresentableTrait;
|
2020-02-20 07:44:12 +11:00
|
|
|
use MakesInvoiceValues;
|
2020-02-15 09:01:15 +00:00
|
|
|
|
2020-10-28 21:10:49 +11:00
|
|
|
protected $presenter = QuotePresenter::class;
|
2020-02-11 20:57:25 +00:00
|
|
|
|
2020-07-23 13:55:11 +10:00
|
|
|
protected $touches = [];
|
2020-07-16 21:01:39 +10:00
|
|
|
|
2019-12-18 09:40:15 +11:00
|
|
|
protected $fillable = [
|
|
|
|
|
'number',
|
2019-06-26 14:04:10 +10:00
|
|
|
'discount',
|
|
|
|
|
'po_number',
|
2019-12-18 09:40:15 +11:00
|
|
|
'date',
|
|
|
|
|
'due_date',
|
2019-06-26 14:04:10 +10:00
|
|
|
'terms',
|
2019-12-18 09:40:15 +11:00
|
|
|
'public_notes',
|
|
|
|
|
'private_notes',
|
2019-06-26 14:04:10 +10:00
|
|
|
'tax_name1',
|
|
|
|
|
'tax_rate1',
|
2019-12-18 09:40:15 +11:00
|
|
|
'tax_name2',
|
2019-06-26 14:04:10 +10:00
|
|
|
'tax_rate2',
|
2019-12-18 09:40:15 +11:00
|
|
|
'tax_name3',
|
2019-10-05 12:28:23 +10:00
|
|
|
'tax_rate3',
|
2019-12-18 09:40:15 +11:00
|
|
|
'is_amount_discount',
|
|
|
|
|
'partial',
|
|
|
|
|
'partial_due_date',
|
2021-02-23 12:17:09 +11:00
|
|
|
'project_id',
|
2019-06-26 14:04:10 +10:00
|
|
|
'custom_value1',
|
|
|
|
|
'custom_value2',
|
|
|
|
|
'custom_value3',
|
|
|
|
|
'custom_value4',
|
2019-12-18 09:40:15 +11:00
|
|
|
'line_items',
|
|
|
|
|
'client_id',
|
|
|
|
|
'footer',
|
2021-02-23 12:17:09 +11:00
|
|
|
'custom_surcharge1',
|
|
|
|
|
'custom_surcharge2',
|
|
|
|
|
'custom_surcharge3',
|
|
|
|
|
'custom_surcharge4',
|
2020-03-08 09:15:11 +11:00
|
|
|
'design_id',
|
2021-02-23 12:17:09 +11:00
|
|
|
'assigned_user_id',
|
2020-09-06 19:38:10 +10:00
|
|
|
'exchange_rate',
|
2021-03-10 11:08:58 +11:00
|
|
|
'subscription_id',
|
2021-12-03 15:48:36 +11:00
|
|
|
'uses_inclusive_taxes',
|
2022-02-08 21:39:59 +11:00
|
|
|
'vendor_id',
|
2019-12-18 09:40:15 +11:00
|
|
|
];
|
2019-04-04 10:30:49 +11:00
|
|
|
|
2019-05-02 21:24:00 +10:00
|
|
|
protected $casts = [
|
2020-08-14 22:21:46 +10:00
|
|
|
// 'date' => 'date:Y-m-d',
|
|
|
|
|
// 'due_date' => 'date:Y-m-d',
|
|
|
|
|
// 'partial_due_date' => 'date:Y-m-d',
|
2019-12-18 09:40:15 +11:00
|
|
|
'line_items' => 'object',
|
2020-06-15 09:34:18 +10:00
|
|
|
'backup' => 'object',
|
2019-09-26 08:27:26 +10:00
|
|
|
'updated_at' => 'timestamp',
|
|
|
|
|
'created_at' => 'timestamp',
|
|
|
|
|
'deleted_at' => 'timestamp',
|
2022-01-07 15:03:42 +11:00
|
|
|
'is_deleted' => 'boolean',
|
2022-02-27 17:49:49 +11:00
|
|
|
'is_amount_discount' => 'bool',
|
2019-05-02 21:24:00 +10:00
|
|
|
];
|
2022-06-21 10:03:51 +00:00
|
|
|
|
2019-04-04 10:30:49 +11:00
|
|
|
const STATUS_DRAFT = 1;
|
2022-06-21 09:57:17 +00:00
|
|
|
|
2020-09-06 19:38:10 +10:00
|
|
|
const STATUS_SENT = 2;
|
2022-06-21 09:57:17 +00:00
|
|
|
|
2019-05-02 21:24:00 +10:00
|
|
|
const STATUS_APPROVED = 3;
|
2022-06-21 09:57:17 +00:00
|
|
|
|
2020-06-02 20:19:29 +10:00
|
|
|
const STATUS_CONVERTED = 4;
|
2022-06-21 09:57:17 +00:00
|
|
|
|
2019-05-02 21:24:00 +10:00
|
|
|
const STATUS_EXPIRED = -1;
|
2019-04-04 10:30:49 +11:00
|
|
|
|
2020-05-06 21:49:42 +10:00
|
|
|
public function getEntityType()
|
|
|
|
|
{
|
2020-09-06 19:38:10 +10:00
|
|
|
return self::class;
|
2020-05-06 21:49:42 +10:00
|
|
|
}
|
|
|
|
|
|
2020-04-04 21:32:42 +11:00
|
|
|
public function getDateAttribute($value)
|
|
|
|
|
{
|
2020-08-15 08:03:29 +10:00
|
|
|
return $this->dateMutator($value);
|
2020-03-29 23:22:14 +11:00
|
|
|
}
|
|
|
|
|
|
2020-04-04 21:32:42 +11:00
|
|
|
public function getDueDateAttribute($value)
|
|
|
|
|
{
|
2020-08-15 08:03:29 +10:00
|
|
|
return $this->dateMutator($value);
|
2020-03-29 23:22:14 +11:00
|
|
|
}
|
|
|
|
|
|
2020-04-04 21:32:42 +11:00
|
|
|
public function getPartialDueDateAttribute($value)
|
|
|
|
|
{
|
2020-08-15 08:03:29 +10:00
|
|
|
return $this->dateMutator($value);
|
2020-03-29 23:22:14 +11:00
|
|
|
}
|
|
|
|
|
|
2022-01-07 15:03:42 +11:00
|
|
|
public function getStatusIdAttribute($value)
|
|
|
|
|
{
|
2022-06-21 09:57:17 +00:00
|
|
|
if ($this->due_date && ! $this->is_deleted && $value == self::STATUS_SENT && Carbon::parse($this->due_date)->lte(now()->startOfDay())) {
|
|
|
|
|
return self::STATUS_EXPIRED;
|
2022-01-07 15:03:42 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $value;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-04 10:30:49 +11:00
|
|
|
public function company()
|
|
|
|
|
{
|
|
|
|
|
return $this->belongsTo(Company::class);
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-08 21:39:59 +11:00
|
|
|
public function vendor()
|
|
|
|
|
{
|
|
|
|
|
return $this->belongsTo(Vendor::class);
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-14 08:08:10 +10:00
|
|
|
public function history()
|
|
|
|
|
{
|
|
|
|
|
return $this->hasManyThrough(Backup::class, Activity::class);
|
|
|
|
|
}
|
2020-09-06 19:38:10 +10:00
|
|
|
|
2021-05-07 21:00:55 +10:00
|
|
|
public function activities()
|
|
|
|
|
{
|
2021-08-22 16:23:00 +10:00
|
|
|
return $this->hasMany(Activity::class)->orderBy('id', 'DESC')->take(50);
|
2021-05-07 21:00:55 +10:00
|
|
|
}
|
|
|
|
|
|
2019-04-04 10:30:49 +11:00
|
|
|
public function user()
|
|
|
|
|
{
|
2019-11-25 20:38:55 +11:00
|
|
|
return $this->belongsTo(User::class)->withTrashed();
|
2019-04-04 10:30:49 +11:00
|
|
|
}
|
|
|
|
|
|
2019-11-16 14:12:29 +11:00
|
|
|
public function client()
|
|
|
|
|
{
|
2019-11-25 20:38:55 +11:00
|
|
|
return $this->belongsTo(Client::class)->withTrashed();
|
2019-11-16 14:12:29 +11:00
|
|
|
}
|
|
|
|
|
|
2022-02-12 11:17:36 +11:00
|
|
|
public function invoice()
|
|
|
|
|
{
|
|
|
|
|
return $this->belongsTo(Invoice::class)->withTrashed();
|
|
|
|
|
}
|
2020-07-26 15:12:40 +10:00
|
|
|
|
2019-11-05 21:16:38 +11:00
|
|
|
public function assigned_user()
|
|
|
|
|
{
|
2019-12-31 08:59:12 +11:00
|
|
|
return $this->belongsTo(User::class, 'assigned_user_id', 'id')->withTrashed();
|
2019-11-05 21:16:38 +11:00
|
|
|
}
|
2020-02-11 20:57:25 +00:00
|
|
|
|
2021-02-27 08:37:56 +11:00
|
|
|
public function project()
|
|
|
|
|
{
|
|
|
|
|
return $this->belongsTo(Project::class)->withTrashed();
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-04 10:30:49 +11:00
|
|
|
public function invitations()
|
|
|
|
|
{
|
2019-04-24 10:22:02 +10:00
|
|
|
return $this->hasMany(QuoteInvitation::class);
|
2019-04-04 10:30:49 +11:00
|
|
|
}
|
2019-04-24 10:22:02 +10:00
|
|
|
|
2019-04-28 15:31:32 +10:00
|
|
|
public function documents()
|
|
|
|
|
{
|
|
|
|
|
return $this->morphMany(Document::class, 'documentable');
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-18 09:40:15 +11:00
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Access the quote calculator object.
|
2019-12-18 09:40:15 +11:00
|
|
|
*
|
2020-11-01 16:09:09 +11:00
|
|
|
* @return stdClass The quote calculator object getters
|
2019-12-18 09:40:15 +11:00
|
|
|
*/
|
|
|
|
|
public function calc()
|
|
|
|
|
{
|
|
|
|
|
$quote_calc = null;
|
|
|
|
|
|
2019-12-31 08:59:12 +11:00
|
|
|
if ($this->uses_inclusive_taxes) {
|
2019-12-18 09:40:15 +11:00
|
|
|
$quote_calc = new InvoiceSumInclusive($this);
|
2019-12-31 08:59:12 +11:00
|
|
|
} else {
|
2019-12-18 09:40:15 +11:00
|
|
|
$quote_calc = new InvoiceSum($this);
|
2019-12-31 08:59:12 +11:00
|
|
|
}
|
2019-12-18 09:40:15 +11:00
|
|
|
|
|
|
|
|
return $quote_calc->build();
|
|
|
|
|
}
|
2020-02-11 20:57:25 +00:00
|
|
|
|
|
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Updates Invites to SENT.
|
2020-02-11 20:57:25 +00:00
|
|
|
*/
|
|
|
|
|
public function markInvitationsSent()
|
|
|
|
|
{
|
|
|
|
|
$this->invitations->each(function ($invitation) {
|
2020-09-06 19:38:10 +10:00
|
|
|
if (! isset($invitation->sent_date)) {
|
2020-02-11 20:57:25 +00:00
|
|
|
$invitation->sent_date = Carbon::now();
|
|
|
|
|
$invitation->save();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function service(): QuoteService
|
2020-02-20 07:44:12 +11:00
|
|
|
{
|
|
|
|
|
return new QuoteService($this);
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-16 09:41:12 +10:00
|
|
|
public function pdf_file_path($invitation = null, string $type = 'path', bool $portal = false)
|
2020-02-20 07:44:12 +11:00
|
|
|
{
|
2020-09-06 19:38:10 +10:00
|
|
|
if (! $invitation) {
|
2022-06-21 09:57:17 +00:00
|
|
|
if ($this->invitations()->exists()) {
|
2021-05-15 12:19:36 +10:00
|
|
|
$invitation = $this->invitations()->first();
|
2022-06-21 09:57:17 +00:00
|
|
|
} else {
|
2021-05-15 12:19:36 +10:00
|
|
|
$this->service()->createInvitations();
|
|
|
|
|
$invitation = $this->invitations()->first();
|
|
|
|
|
}
|
2021-02-28 13:12:55 +11:00
|
|
|
}
|
2020-02-20 07:44:12 +11:00
|
|
|
|
2022-06-21 09:57:17 +00:00
|
|
|
if (! $invitation) {
|
2021-05-15 12:19:36 +10:00
|
|
|
throw new \Exception('Hard fail, could not create an invitation - is there a valid contact?');
|
2022-06-21 09:57:17 +00:00
|
|
|
}
|
2021-05-15 12:19:36 +10:00
|
|
|
|
2021-06-12 21:50:01 +10:00
|
|
|
$file_path = $this->client->quote_filepath($invitation).$this->numberFormatter().'.pdf';
|
2021-05-16 16:26:55 +10:00
|
|
|
|
2022-06-21 09:57:17 +00:00
|
|
|
if (Ninja::isHosted() && $portal && Storage::disk(config('filesystems.default'))->exists($file_path)) {
|
2021-05-16 16:26:55 +10:00
|
|
|
return Storage::disk(config('filesystems.default'))->{$type}($file_path);
|
2022-06-21 09:57:17 +00:00
|
|
|
} elseif (Ninja::isHosted() && $portal) {
|
|
|
|
|
|
2022-06-24 13:15:14 +02:00
|
|
|
$file_path = (new CreateEntityPdf($invitation, config('filesystems.default')))->handle();
|
2021-05-16 16:26:55 +10:00
|
|
|
return Storage::disk(config('filesystems.default'))->{$type}($file_path);
|
|
|
|
|
}
|
2022-06-21 09:57:17 +00:00
|
|
|
|
|
|
|
|
if (Storage::disk('public')->exists($file_path)) {
|
2021-05-16 09:41:12 +10:00
|
|
|
return Storage::disk('public')->{$type}($file_path);
|
2022-06-21 09:57:17 +00:00
|
|
|
}
|
2021-05-16 09:41:12 +10:00
|
|
|
|
2022-06-24 13:15:14 +02:00
|
|
|
$file_path = (new CreateEntityPdf($invitation))->handle();
|
2022-06-21 09:57:17 +00:00
|
|
|
|
|
|
|
|
return Storage::disk('public')->{$type}($file_path);
|
2021-05-15 12:19:36 +10:00
|
|
|
}
|
2021-02-28 13:12:55 +11:00
|
|
|
|
2020-03-23 18:10:42 +01:00
|
|
|
/**
|
|
|
|
|
* @param int $status
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
public static function badgeForStatus(int $status)
|
|
|
|
|
{
|
|
|
|
|
switch ($status) {
|
2020-09-06 19:38:10 +10:00
|
|
|
case self::STATUS_DRAFT:
|
|
|
|
|
return '<h5><span class="badge badge-light">'.ctrans('texts.draft').'</span></h5>';
|
2020-03-23 18:10:42 +01:00
|
|
|
break;
|
2020-09-06 19:38:10 +10:00
|
|
|
case self::STATUS_SENT:
|
|
|
|
|
return '<h5><span class="badge badge-primary">'.ctrans('texts.pending').'</span></h5>';
|
2020-03-23 18:10:42 +01:00
|
|
|
break;
|
2020-09-06 19:38:10 +10:00
|
|
|
case self::STATUS_APPROVED:
|
|
|
|
|
return '<h5><span class="badge badge-success">'.ctrans('texts.approved').'</span></h5>';
|
2020-03-23 18:10:42 +01:00
|
|
|
break;
|
2020-09-06 19:38:10 +10:00
|
|
|
case self::STATUS_EXPIRED:
|
|
|
|
|
return '<h5><span class="badge badge-danger">'.ctrans('texts.expired').'</span></h5>';
|
2020-03-23 18:10:42 +01:00
|
|
|
break;
|
2021-01-14 14:22:01 +01:00
|
|
|
case self::STATUS_CONVERTED:
|
|
|
|
|
return '<h5><span class="badge badge-light">'.ctrans('texts.converted').'</span></h5>';
|
2021-01-14 14:24:43 +01:00
|
|
|
break;
|
2020-03-23 18:10:42 +01:00
|
|
|
default:
|
2020-09-06 19:38:10 +10:00
|
|
|
// code...
|
2020-03-23 18:10:42 +01:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-28 14:02:59 +10:00
|
|
|
public static function stringStatus(int $status)
|
|
|
|
|
{
|
|
|
|
|
switch ($status) {
|
|
|
|
|
case self::STATUS_DRAFT:
|
|
|
|
|
return ctrans('texts.draft');
|
|
|
|
|
break;
|
|
|
|
|
case self::STATUS_SENT:
|
|
|
|
|
return ctrans('texts.pending');
|
|
|
|
|
break;
|
|
|
|
|
case self::STATUS_APPROVED:
|
|
|
|
|
return ctrans('texts.approved');
|
|
|
|
|
break;
|
|
|
|
|
case self::STATUS_EXPIRED:
|
|
|
|
|
return ctrans('texts.expired');
|
|
|
|
|
break;
|
|
|
|
|
case self::STATUS_CONVERTED:
|
|
|
|
|
return ctrans('texts.converted');
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
// code...
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-23 18:10:42 +01:00
|
|
|
/**
|
|
|
|
|
* Check if the quote has been approved.
|
|
|
|
|
*
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public function isApproved()
|
|
|
|
|
{
|
2020-03-26 14:23:57 +11:00
|
|
|
if ($this->status_id === $this::STATUS_APPROVED) {
|
2020-03-23 18:10:42 +01:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2020-08-14 14:53:36 +02:00
|
|
|
|
|
|
|
|
public function getValidUntilAttribute()
|
|
|
|
|
{
|
|
|
|
|
return $this->due_date;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getBalanceDueAttribute()
|
|
|
|
|
{
|
|
|
|
|
return $this->balance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getTotalAttribute()
|
|
|
|
|
{
|
|
|
|
|
return $this->calc()->getTotal();
|
|
|
|
|
}
|
2022-04-06 10:38:01 +10:00
|
|
|
|
|
|
|
|
public function translate_entity()
|
|
|
|
|
{
|
|
|
|
|
return ctrans('texts.quote');
|
|
|
|
|
}
|
2019-04-04 10:30:49 +11:00
|
|
|
}
|