1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Models/Quote.php

264 lines
6.4 KiB
PHP
Raw Normal View History

2019-04-04 01:30:49 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @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
*/
2019-04-04 01:30:49 +02:00
namespace App\Models;
use App\Events\Quote\QuoteWasUpdated;
use App\Helpers\Invoice\InvoiceSum;
use App\Helpers\Invoice\InvoiceSumInclusive;
use App\Jobs\Invoice\CreateInvoicePdf;
use App\Jobs\Quote\CreateQuotePdf;
2019-05-02 13:24:00 +02:00
use App\Models\Filterable;
use App\Services\Quote\QuoteService;
2020-07-08 14:02:16 +02:00
use App\Utils\Ninja;
use App\Utils\Traits\Archivable;
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;
use App\Utils\Traits\MakesInvoiceValues;
use App\Utils\Traits\MakesReminders;
2019-04-04 01:30:49 +02:00
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Support\Carbon;
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;
use SoftDeletes;
use MakesReminders;
use PresentableTrait;
use MakesInvoiceValues;
protected $presenter = 'App\Models\Presenters\QuotePresenter';
2020-07-23 05:55:11 +02:00
protected $touches = [];
protected $fillable = [
'assigned_user_id',
'number',
'discount',
'po_number',
'date',
'due_date',
'terms',
'public_notes',
'private_notes',
'invoice_type_id',
'tax_name1',
'tax_rate1',
'tax_name2',
'tax_rate2',
'tax_name3',
'tax_rate3',
'is_amount_discount',
'footer',
'partial',
'partial_due_date',
'custom_value1',
'custom_value2',
'custom_value3',
'custom_value4',
'line_items',
'client_id',
'footer',
'design_id',
2020-06-28 00:24:08 +02:00
'exchange_rate'
];
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',
'line_items' => 'object',
'backup' => 'object',
'updated_at' => 'timestamp',
'created_at' => 'timestamp',
'deleted_at' => 'timestamp',
2019-05-02 13:24:00 +02:00
];
2020-08-14 14:21:46 +02:00
protected $dates = [];
2019-04-04 01:30:49 +02:00
const STATUS_DRAFT = 1;
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
public function getEntityType()
{
return Quote::class;
}
public function getDateAttribute($value)
{
2020-03-29 23:29:00 +02:00
if (!empty($value)) {
return (new Carbon($value))->format('Y-m-d');
}
2020-08-14 14:21:46 +02:00
return $value;
}
public function getDueDateAttribute($value)
{
2020-03-29 23:29:00 +02:00
if (!empty($value)) {
return (new Carbon($value))->format('Y-m-d');
}
2020-08-14 14:21:46 +02:00
return $value;
}
public function getPartialDueDateAttribute($value)
{
2020-03-29 23:29:00 +02:00
if (!empty($value)) {
return (new Carbon($value))->format('Y-m-d');
}
2020-08-14 14:21:46 +02:00
return $value;
}
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);
}
2019-04-04 01:30:49 +02:00
public function user()
{
return $this->belongsTo(User::class)->withTrashed();
2019-04-04 01:30:49 +02:00
}
public function client()
{
return $this->belongsTo(Client::class)->withTrashed();
}
2020-07-26 07:12:40 +02:00
// public function contacts()
// {
// return $this->hasManyThrough(ClientContact::class, Client::class);
// }
public function assigned_user()
{
return $this->belongsTo(User::class, 'assigned_user_id', 'id')->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');
}
/**
* Access the quote calculator object
*
* @return object The quote calculator object getters
*/
public function calc()
{
$quote_calc = null;
if ($this->uses_inclusive_taxes) {
$quote_calc = new InvoiceSumInclusive($this);
} else {
$quote_calc = new InvoiceSum($this);
}
return $quote_calc->build();
}
/**
* 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
{
return new QuoteService($this);
}
public function pdf_file_path($invitation = null)
{
if(!$invitation)
$invitation = $this->invitations->where('client_contact_id', $this->client->primary_contact()->first()->id)->first();
$storage_path = Storage::url($this->client->quote_filepath() . $this->number . '.pdf');
if (Storage::exists($this->client->quote_filepath() . $this->number . '.pdf')) {
return $storage_path;
}
2020-07-08 14:02:16 +02:00
event(new QuoteWasUpdated($this, $this->company, Ninja::eventVars()));
CreateQuotePdf::dispatchNow($invitation);
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:
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()
{
if ($this->status_id === $this::STATUS_APPROVED) {
2020-03-23 18:10:42 +01:00
return true;
}
return false;
}
2019-04-04 01:30:49 +02:00
}