2019-04-04 10:30:49 +11:00
|
|
|
<?php
|
2019-05-11 13:32:07 +10:00
|
|
|
/**
|
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
2020-01-07 11:13:47 +11:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
|
*/
|
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-02-20 07:44:12 +11:00
|
|
|
use App\Jobs\Invoice\CreateInvoicePdf;
|
|
|
|
|
use App\Jobs\Quote\CreateQuotePdf;
|
2019-05-02 21:24:00 +10:00
|
|
|
use App\Models\Filterable;
|
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-04-28 01:50:54 +02:00
|
|
|
use App\Utils\Traits\Archivable;
|
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-04-04 10:30:49 +11:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
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
|
|
|
|
|
|
|
|
protected $presenter = 'App\Models\Presenters\QuotePresenter';
|
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 = [
|
2020-06-22 07:23:32 +10:00
|
|
|
'assigned_user_id',
|
2019-12-18 09:40:15 +11:00
|
|
|
'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',
|
|
|
|
|
'invoice_type_id',
|
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',
|
|
|
|
|
'footer',
|
|
|
|
|
'partial',
|
|
|
|
|
'partial_due_date',
|
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',
|
2020-03-08 09:15:11 +11:00
|
|
|
'design_id',
|
2020-06-28 08:24:08 +10:00
|
|
|
'exchange_rate'
|
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-03-29 23:22:14 +11: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',
|
2019-05-02 21:24:00 +10:00
|
|
|
];
|
2020-02-11 20:57:25 +00:00
|
|
|
|
2019-04-04 10:30:49 +11:00
|
|
|
const STATUS_DRAFT = 1;
|
|
|
|
|
const STATUS_SENT = 2;
|
2019-05-02 21:24:00 +10:00
|
|
|
const STATUS_APPROVED = 3;
|
2020-06-02 20:19:29 +10:00
|
|
|
const STATUS_CONVERTED = 4;
|
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()
|
|
|
|
|
{
|
|
|
|
|
return Quote::class;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-04 21:32:42 +11:00
|
|
|
public function getDateAttribute($value)
|
|
|
|
|
{
|
2020-03-30 08:29:00 +11:00
|
|
|
if (!empty($value)) {
|
2020-04-04 21:32:42 +11:00
|
|
|
return (new Carbon($value))->format('Y-m-d');
|
2020-03-29 23:22:14 +11:00
|
|
|
}
|
|
|
|
|
return $value;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-04 21:32:42 +11:00
|
|
|
public function getDueDateAttribute($value)
|
|
|
|
|
{
|
2020-03-30 08:29:00 +11:00
|
|
|
if (!empty($value)) {
|
2020-04-04 21:32:42 +11:00
|
|
|
return (new Carbon($value))->format('Y-m-d');
|
2020-03-29 23:22:14 +11:00
|
|
|
}
|
|
|
|
|
return $value;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-04 21:32:42 +11:00
|
|
|
public function getPartialDueDateAttribute($value)
|
|
|
|
|
{
|
2020-03-30 08:29:00 +11:00
|
|
|
if (!empty($value)) {
|
2020-04-04 21:32:42 +11:00
|
|
|
return (new Carbon($value))->format('Y-m-d');
|
2020-03-29 23:22:14 +11:00
|
|
|
}
|
|
|
|
|
return $value;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-04 10:30:49 +11:00
|
|
|
public function company()
|
|
|
|
|
{
|
|
|
|
|
return $this->belongsTo(Company::class);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
2020-07-26 15:12:40 +10:00
|
|
|
// public function contacts()
|
|
|
|
|
// {
|
|
|
|
|
// return $this->hasManyThrough(ClientContact::class, Client::class);
|
|
|
|
|
// }
|
|
|
|
|
|
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
|
|
|
|
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
|
|
|
/**
|
|
|
|
|
* Access the quote calculator object
|
|
|
|
|
*
|
|
|
|
|
* @return object The quote calculator object getters
|
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Updates Invites to SENT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public function markInvitationsSent()
|
|
|
|
|
{
|
|
|
|
|
$this->invitations->each(function ($invitation) {
|
|
|
|
|
if (!isset($invitation->sent_date)) {
|
|
|
|
|
$invitation->sent_date = Carbon::now();
|
|
|
|
|
$invitation->save();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function service(): QuoteService
|
2020-02-20 07:44:12 +11:00
|
|
|
{
|
|
|
|
|
return new QuoteService($this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function pdf_file_path($invitation = null)
|
|
|
|
|
{
|
2020-04-16 18:41:25 +10:00
|
|
|
if(!$invitation)
|
|
|
|
|
$invitation = $this->invitations->where('client_contact_id', $this->client->primary_contact()->first()->id)->first();
|
2020-02-20 07:44:12 +11:00
|
|
|
|
2020-04-16 18:41:25 +10:00
|
|
|
$storage_path = Storage::url($this->client->quote_filepath() . $this->number . '.pdf');
|
|
|
|
|
|
|
|
|
|
if (Storage::exists($this->client->quote_filepath() . $this->number . '.pdf')) {
|
2020-02-20 07:44:12 +11:00
|
|
|
return $storage_path;
|
2020-03-21 16:37:30 +11:00
|
|
|
}
|
2020-02-20 07:44:12 +11:00
|
|
|
|
2020-07-08 22:02:16 +10:00
|
|
|
event(new QuoteWasUpdated($this, $this->company, Ninja::eventVars()));
|
2020-04-16 18:41:25 +10:00
|
|
|
|
|
|
|
|
CreateQuotePdf::dispatchNow($invitation);
|
2020-02-20 07:44:12 +11:00
|
|
|
|
|
|
|
|
return $storage_path;
|
|
|
|
|
}
|
2020-03-23 18:10:42 +01:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param int $status
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
public static function badgeForStatus(int $status)
|
|
|
|
|
{
|
|
|
|
|
switch ($status) {
|
|
|
|
|
case Quote::STATUS_DRAFT:
|
|
|
|
|
return '<h5><span class="badge badge-light">' . ctrans('texts.draft') . '</span></h5>';
|
|
|
|
|
break;
|
|
|
|
|
case Quote::STATUS_SENT:
|
2020-07-23 12:20:19 +02:00
|
|
|
return '<h5><span class="badge badge-primary">' . ctrans('texts.pending') . '</span></h5>';
|
2020-03-23 18:10:42 +01:00
|
|
|
break;
|
|
|
|
|
case Quote::STATUS_APPROVED:
|
|
|
|
|
return '<h5><span class="badge badge-success">' . ctrans('texts.approved') . '</span></h5>';
|
|
|
|
|
break;
|
|
|
|
|
case Quote::STATUS_EXPIRED:
|
|
|
|
|
return '<h5><span class="badge badge-danger">' . ctrans('texts.expired') . '</span></h5>';
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
# code...
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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;
|
|
|
|
|
}
|
2019-04-04 10:30:49 +11:00
|
|
|
}
|