2019-04-04 01:30:49 +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
|
|
|
|
*/
|
2019-04-04 01:30:49 +02:00
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2020-04-16 10:41:25 +02:00
|
|
|
use App\Events\Quote\QuoteWasUpdated;
|
2019-12-17 23:40:15 +01: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\QuotePresenter;
|
2020-02-11 21:57:25 +01:00
|
|
|
use App\Services\Quote\QuoteService;
|
2020-07-08 14:02:16 +02:00
|
|
|
use App\Utils\Ninja;
|
2020-03-23 18:10:42 +01:00
|
|
|
use App\Utils\Traits\MakesDates;
|
2019-04-04 01:30:49 +02:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2020-02-19 21:44:12 +01:00
|
|
|
use App\Utils\Traits\MakesInvoiceValues;
|
2020-02-15 10:01:15 +01:00
|
|
|
use App\Utils\Traits\MakesReminders;
|
2019-11-12 05:41:02 +01:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2020-03-03 10:44:26 +01:00
|
|
|
use Illuminate\Support\Carbon;
|
2020-02-19 21:44:12 +01:00
|
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
use Laracasts\Presenter\PresentableTrait;
|
2019-04-04 01:30:49 +02:00
|
|
|
|
|
|
|
class Quote extends BaseModel
|
|
|
|
{
|
|
|
|
use MakesHash;
|
2020-03-23 18:10:42 +01:00
|
|
|
use MakesDates;
|
2019-05-02 13:24:00 +02:00
|
|
|
use Filterable;
|
2019-11-12 05:41:02 +01:00
|
|
|
use SoftDeletes;
|
2020-02-15 10:01:15 +01:00
|
|
|
use MakesReminders;
|
|
|
|
use PresentableTrait;
|
2020-02-19 21:44:12 +01:00
|
|
|
use MakesInvoiceValues;
|
2020-02-15 10:01:15 +01:00
|
|
|
|
2020-10-28 11:10:49 +01:00
|
|
|
protected $presenter = QuotePresenter::class;
|
2020-02-11 21:57:25 +01:00
|
|
|
|
2020-07-23 05:55:11 +02:00
|
|
|
protected $touches = [];
|
2020-07-16 13:01:39 +02:00
|
|
|
|
2019-12-17 23:40:15 +01:00
|
|
|
protected $fillable = [
|
|
|
|
'number',
|
2019-06-26 06:04:10 +02:00
|
|
|
'discount',
|
|
|
|
'po_number',
|
2019-12-17 23:40:15 +01:00
|
|
|
'date',
|
|
|
|
'due_date',
|
2019-06-26 06:04:10 +02:00
|
|
|
'terms',
|
2019-12-17 23:40:15 +01:00
|
|
|
'public_notes',
|
|
|
|
'private_notes',
|
2019-06-26 06:04:10 +02:00
|
|
|
'tax_name1',
|
|
|
|
'tax_rate1',
|
2019-12-17 23:40:15 +01:00
|
|
|
'tax_name2',
|
2019-06-26 06:04:10 +02:00
|
|
|
'tax_rate2',
|
2019-12-17 23:40:15 +01:00
|
|
|
'tax_name3',
|
2019-10-05 04:28:23 +02:00
|
|
|
'tax_rate3',
|
2019-12-17 23:40:15 +01:00
|
|
|
'is_amount_discount',
|
|
|
|
'partial',
|
|
|
|
'partial_due_date',
|
2021-02-23 02:17:09 +01:00
|
|
|
'project_id',
|
2019-06-26 06:04:10 +02:00
|
|
|
'custom_value1',
|
|
|
|
'custom_value2',
|
|
|
|
'custom_value3',
|
|
|
|
'custom_value4',
|
2019-12-17 23:40:15 +01:00
|
|
|
'line_items',
|
|
|
|
'client_id',
|
|
|
|
'footer',
|
2021-02-23 02:17:09 +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',
|
2021-02-23 02:17:09 +01:00
|
|
|
'assigned_user_id',
|
2020-09-06 11:38:10 +02:00
|
|
|
'exchange_rate',
|
2021-03-10 01:08:58 +01:00
|
|
|
'subscription_id',
|
2019-12-17 23:40:15 +01:00
|
|
|
];
|
2019-04-04 01:30:49 +02:00
|
|
|
|
2019-05-02 13:24:00 +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-12-17 23:40:15 +01: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-05-02 13:24:00 +02:00
|
|
|
];
|
2020-02-11 21:57:25 +01:00
|
|
|
|
2020-08-14 14:21:46 +02:00
|
|
|
protected $dates = [];
|
|
|
|
|
2019-04-04 01:30:49 +02:00
|
|
|
const STATUS_DRAFT = 1;
|
2020-09-06 11:38:10 +02:00
|
|
|
const STATUS_SENT = 2;
|
2019-05-02 13:24:00 +02:00
|
|
|
const STATUS_APPROVED = 3;
|
2020-06-02 12:19:29 +02:00
|
|
|
const STATUS_CONVERTED = 4;
|
2019-05-02 13:24:00 +02:00
|
|
|
const STATUS_EXPIRED = -1;
|
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:30:49 +02:00
|
|
|
public function company()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Company::class);
|
|
|
|
}
|
|
|
|
|
2020-08-14 00:08:10 +02:00
|
|
|
public function history()
|
|
|
|
{
|
|
|
|
return $this->hasManyThrough(Backup::class, Activity::class);
|
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-04-04 01:30:49 +02:00
|
|
|
public function user()
|
|
|
|
{
|
2019-11-25 10:38:55 +01:00
|
|
|
return $this->belongsTo(User::class)->withTrashed();
|
2019-04-04 01:30:49 +02:00
|
|
|
}
|
|
|
|
|
2019-11-16 04:12:29 +01:00
|
|
|
public function client()
|
|
|
|
{
|
2019-11-25 10:38:55 +01:00
|
|
|
return $this->belongsTo(Client::class)->withTrashed();
|
2019-11-16 04:12:29 +01:00
|
|
|
}
|
|
|
|
|
2020-07-26 07:12:40 +02:00
|
|
|
// public function contacts()
|
|
|
|
// {
|
|
|
|
// return $this->hasManyThrough(ClientContact::class, Client::class);
|
|
|
|
// }
|
|
|
|
|
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
|
|
|
}
|
2020-02-11 21:57:25 +01:00
|
|
|
|
2021-02-26 22:37:56 +01:00
|
|
|
public function project()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Project::class)->withTrashed();
|
|
|
|
}
|
|
|
|
|
2019-04-04 01:30:49 +02:00
|
|
|
public function invitations()
|
|
|
|
{
|
2019-04-24 02:22:02 +02:00
|
|
|
return $this->hasMany(QuoteInvitation::class);
|
2019-04-04 01:30:49 +02:00
|
|
|
}
|
2019-04-24 02:22:02 +02:00
|
|
|
|
2019-04-28 07:31:32 +02:00
|
|
|
public function documents()
|
|
|
|
{
|
|
|
|
return $this->morphMany(Document::class, 'documentable');
|
|
|
|
}
|
|
|
|
|
2019-12-17 23:40:15 +01:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Access the quote calculator object.
|
2019-12-17 23:40:15 +01:00
|
|
|
*
|
2020-11-01 06:09:09 +01:00
|
|
|
* @return stdClass The quote calculator object getters
|
2019-12-17 23:40:15 +01:00
|
|
|
*/
|
|
|
|
public function calc()
|
|
|
|
{
|
|
|
|
$quote_calc = null;
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if ($this->uses_inclusive_taxes) {
|
2019-12-17 23:40:15 +01:00
|
|
|
$quote_calc = new InvoiceSumInclusive($this);
|
2019-12-30 22:59:12 +01:00
|
|
|
} else {
|
2019-12-17 23:40:15 +01:00
|
|
|
$quote_calc = new InvoiceSum($this);
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-12-17 23:40:15 +01:00
|
|
|
|
|
|
|
return $quote_calc->build();
|
|
|
|
}
|
2020-02-11 21:57:25 +01:00
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Updates Invites to SENT.
|
2020-02-11 21:57:25 +01:00
|
|
|
*/
|
|
|
|
public function markInvitationsSent()
|
|
|
|
{
|
|
|
|
$this->invitations->each(function ($invitation) {
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! isset($invitation->sent_date)) {
|
2020-02-11 21:57:25 +01:00
|
|
|
$invitation->sent_date = Carbon::now();
|
|
|
|
$invitation->save();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public function service(): QuoteService
|
2020-02-19 21:44:12 +01:00
|
|
|
{
|
|
|
|
return new QuoteService($this);
|
|
|
|
}
|
|
|
|
|
2021-02-28 03:12:55 +01:00
|
|
|
|
2021-02-18 13:18:41 +01:00
|
|
|
public function pdf_file_path($invitation = null, string $type = 'url')
|
2020-02-19 21:44:12 +01:00
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! $invitation) {
|
2021-02-28 03:12:55 +01:00
|
|
|
$invitation = $this->invitations->first();
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
2020-02-19 21:44:12 +01:00
|
|
|
|
2021-02-18 13:18:41 +01:00
|
|
|
$storage_path = Storage::$type($this->client->quote_filepath().$this->number.'.pdf');
|
2020-04-16 10:41:25 +02:00
|
|
|
|
2021-02-28 03:12:55 +01:00
|
|
|
nlog($storage_path);
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2021-02-28 03:12:55 +01:00
|
|
|
if (! Storage::exists($this->client->quote_filepath().$this->number.'.pdf')) {
|
|
|
|
event(new QuoteWasUpdated($this, $this->company, Ninja::eventVars()));
|
|
|
|
CreateEntityPdf::dispatchNow($invitation);
|
|
|
|
}
|
2020-02-19 21:44:12 +01:00
|
|
|
|
|
|
|
return $storage_path;
|
|
|
|
}
|
2020-03-23 18:10:42 +01:00
|
|
|
|
2021-02-28 03:12:55 +01: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 11:38:10 +02: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 11:38:10 +02: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 11:38:10 +02: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 11:38:10 +02: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 11:38:10 +02:00
|
|
|
// code...
|
2020-03-23 18:10:42 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the quote has been approved.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isApproved()
|
|
|
|
{
|
2020-03-26 04:23:57 +01: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();
|
|
|
|
}
|
2019-04-04 01:30:49 +02:00
|
|
|
}
|