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

560 lines
23 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).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-11 05:32:07 +02:00
*/
2019-04-04 01:30:49 +02:00
namespace App\Models;
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;
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;
use App\Utils\Traits\MakesInvoiceValues;
use App\Utils\Traits\MakesReminders;
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
2023-03-08 08:33:42 +01:00
/**
* App\Models\Quote
*
* @property int $id
* @property int $client_id
* @property int $user_id
* @property int|null $assigned_user_id
* @property int $company_id
* @property int $status_id
* @property int|null $project_id
* @property int|null $vendor_id
* @property int|null $recurring_id
* @property int|null $design_id
* @property int|null $invoice_id
* @property string|null $number
* @property float $discount
* @property bool $is_amount_discount
* @property string|null $po_number
* @property string|null $date
* @property string|null $last_sent_date
* @property string|null $due_date
* @property string|null $next_send_date
* @property bool $is_deleted
* @property object|null $line_items
* @property object|null $backup
* @property string|null $footer
* @property string|null $public_notes
* @property string|null $private_notes
* @property string|null $terms
* @property string|null $tax_name1
* @property string $tax_rate1
* @property string|null $tax_name2
* @property string $tax_rate2
* @property string|null $tax_name3
* @property string $tax_rate3
* @property string $total_taxes
* @property int $uses_inclusive_taxes
* @property string|null $custom_value1
* @property string|null $custom_value2
* @property string|null $custom_value3
* @property string|null $custom_value4
* @property string|null $custom_surcharge1
* @property string|null $custom_surcharge2
* @property string|null $custom_surcharge3
* @property string|null $custom_surcharge4
* @property int $custom_surcharge_tax1
* @property int $custom_surcharge_tax2
* @property int $custom_surcharge_tax3
* @property int $custom_surcharge_tax4
2023-04-26 11:25:33 +02:00
* @property float $exchange_rate
* @property float $amount
* @property float $balance
* @property float|null $partial
2023-03-08 08:33:42 +01:00
* @property string|null $partial_due_date
* @property string|null $last_viewed
* @property int|null $created_at
* @property int|null $updated_at
* @property int|null $deleted_at
* @property string|null $reminder1_sent
* @property string|null $reminder2_sent
* @property string|null $reminder3_sent
* @property string|null $reminder_last_sent
* @property string $paid_to_date
* @property int|null $subscription_id
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
* @property-read int|null $activities_count
* @property-read \App\Models\User|null $assigned_user
* @property-read \App\Models\Client $client
* @property-read \App\Models\Company $company
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
* @property-read int|null $documents_count
* @property-read mixed $balance_due
* @property-read mixed $hashed_id
* @property-read mixed $total
* @property-read mixed $valid_until
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Backup> $history
* @property-read int|null $history_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\QuoteInvitation> $invitations
* @property-read int|null $invitations_count
* @property-read \App\Models\Invoice|null $invoice
* @property-read \App\Models\Project|null $project
* @property-read \App\Models\User $user
* @property-read \App\Models\Vendor|null $vendor
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel company()
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel exclude($columns)
* @method static \Database\Factories\QuoteFactory factory($count = null, $state = [])
* @method static \Illuminate\Database\Eloquent\Builder|Quote filter(\App\Filters\QueryFilters $filters)
* @method static \Illuminate\Database\Eloquent\Builder|Quote newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Quote newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Quote onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|Quote query()
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel scope()
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereAmount($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereAssignedUserId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereBackup($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereBalance($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereClientId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereCompanyId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereCustomSurcharge1($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereCustomSurcharge2($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereCustomSurcharge3($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereCustomSurcharge4($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereCustomSurchargeTax1($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereCustomSurchargeTax2($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereCustomSurchargeTax3($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereCustomSurchargeTax4($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereCustomValue1($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereCustomValue2($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereCustomValue3($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereCustomValue4($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereDate($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereDesignId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereDiscount($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereDueDate($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereExchangeRate($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereFooter($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereInvoiceId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereIsAmountDiscount($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereIsDeleted($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereLastSentDate($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereLastViewed($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereLineItems($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereNextSendDate($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereNumber($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote wherePaidToDate($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote wherePartial($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote wherePartialDueDate($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote wherePoNumber($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote wherePrivateNotes($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereProjectId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote wherePublicNotes($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereRecurringId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereReminder1Sent($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereReminder2Sent($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereReminder3Sent($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereReminderLastSent($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereStatusId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereSubscriptionId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereTaxName1($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereTaxName2($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereTaxName3($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereTaxRate1($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereTaxRate2($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereTaxRate3($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereTerms($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereTotalTaxes($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereUserId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereUsesInclusiveTaxes($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote whereVendorId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Quote withTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|Quote withoutTrashed()
2023-03-16 05:20:38 +01:00
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
2023-03-27 05:47:01 +02:00
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Backup> $history
2023-03-29 05:23:06 +02:00
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\QuoteInvitation> $invitations
2023-04-26 00:43:54 +02:00
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Backup> $history
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\QuoteInvitation> $invitations
2023-04-26 08:55:49 +02:00
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Backup> $history
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\QuoteInvitation> $invitations
2023-03-29 05:23:06 +02:00
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Backup> $history
2023-04-10 09:37:40 +02:00
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\QuoteInvitation> $invitations
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Backup> $history
2023-04-13 07:39:12 +02:00
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\QuoteInvitation> $invitations
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Backup> $history
2023-03-27 05:47:01 +02:00
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\QuoteInvitation> $invitations
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
2023-03-27 22:47:07 +02:00
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Backup> $history
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\QuoteInvitation> $invitations
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
2023-03-29 04:13:50 +02:00
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Backup> $history
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\QuoteInvitation> $invitations
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
2023-03-16 05:20:38 +01:00
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Backup> $history
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\QuoteInvitation> $invitations
2023-03-24 02:12:12 +01:00
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Backup> $history
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\QuoteInvitation> $invitations
2023-03-24 08:02:34 +01:00
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Backup> $history
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\QuoteInvitation> $invitations
2023-03-21 12:37:06 +01:00
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Backup> $history
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\QuoteInvitation> $invitations
2023-03-08 08:33:42 +01:00
* @mixin \Eloquent
*/
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;
2020-10-28 11:10:49 +01:00
protected $presenter = QuotePresenter::class;
2020-07-23 05:55:11 +02:00
protected $touches = [];
protected $fillable = [
'number',
'discount',
'po_number',
'date',
'due_date',
'terms',
'public_notes',
'private_notes',
'tax_name1',
'tax_rate1',
'tax_name2',
'tax_rate2',
'tax_name3',
'tax_rate3',
'is_amount_discount',
'partial',
'partial_due_date',
2021-02-23 02:17:09 +01:00
'project_id',
'custom_value1',
'custom_value2',
'custom_value3',
'custom_value4',
'line_items',
'client_id',
'footer',
2021-02-23 02:17:09 +01:00
'custom_surcharge1',
'custom_surcharge2',
'custom_surcharge3',
'custom_surcharge4',
'design_id',
2021-02-23 02:17:09 +01:00
'assigned_user_id',
'exchange_rate',
2021-03-10 01:08:58 +01:00
'subscription_id',
'uses_inclusive_taxes',
'vendor_id',
];
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',
2022-01-07 05:03:42 +01:00
'is_deleted' => 'boolean',
2022-02-27 07:49:49 +01:00
'is_amount_discount' => 'bool',
2019-05-02 13:24:00 +02:00
];
2022-06-21 12:03:51 +02:00
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 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);
}
2022-01-07 05:03:42 +01:00
public function getStatusIdAttribute($value)
{
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 05:03:42 +01:00
}
return $value;
}
2019-04-04 01:30:49 +02:00
public function company()
{
return $this->belongsTo(Company::class);
}
public function vendor()
{
return $this->belongsTo(Vendor::class);
}
2020-08-14 00:08:10 +02:00
public function history()
{
return $this->hasManyThrough(Backup::class, Activity::class);
}
2021-05-07 13:00:55 +02:00
public function activities()
{
2021-08-22 08:23:00 +02:00
return $this->hasMany(Activity::class)->orderBy('id', 'DESC')->take(50);
2021-05-07 13:00:55 +02:00
}
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();
}
2022-02-12 01:17:36 +01:00
public function invoice()
{
return $this->belongsTo(Invoice::class)->withTrashed();
}
2020-07-26 07:12:40 +02:00
public function assigned_user()
{
return $this->belongsTo(User::class, 'assigned_user_id', 'id')->withTrashed();
}
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');
}
/**
* Access the quote calculator object.
*
2023-04-26 12:57:30 +02:00
* @return InvoiceSumInclusive | InvoiceSum The quote calculator object getters
*/
2023-04-26 12:57:30 +02:00
public function calc(): InvoiceSumInclusive | InvoiceSum
{
$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();
2023-01-31 15:06:21 +01:00
$invitation->saveQuietly();
}
});
}
public function service(): QuoteService
{
return new QuoteService($this);
}
2021-05-16 01:41:12 +02:00
public function pdf_file_path($invitation = null, string $type = 'path', bool $portal = false)
{
if (! $invitation) {
if ($this->invitations()->exists()) {
2021-05-15 04:19:36 +02:00
$invitation = $this->invitations()->first();
} else {
2021-05-15 04:19:36 +02:00
$this->service()->createInvitations();
$invitation = $this->invitations()->first();
}
}
if (! $invitation) {
2021-05-15 04:19:36 +02:00
throw new \Exception('Hard fail, could not create an invitation - is there a valid contact?');
}
2021-05-15 04:19:36 +02:00
2021-06-12 13:50:01 +02:00
$file_path = $this->client->quote_filepath($invitation).$this->numberFormatter().'.pdf';
if (Ninja::isHosted() && $portal && Storage::disk(config('filesystems.default'))->exists($file_path)) {
return Storage::disk(config('filesystems.default'))->{$type}($file_path);
} elseif (Ninja::isHosted() && $portal) {
$file_path = (new CreateEntityPdf($invitation, config('filesystems.default')))->handle();
return Storage::disk(config('filesystems.default'))->{$type}($file_path);
}
2023-04-26 11:25:33 +02:00
$file_exists = false;
2022-10-12 02:27:14 +02:00
try {
$file_exists = Storage::disk(config('filesystems.default'))->exists($file_path);
} catch (\Exception $e) {
nlog($e->getMessage());
}
if ($file_exists) {
return Storage::disk(config('filesystems.default'))->{$type}($file_path);
}
if (Storage::disk('public')->exists($file_path)) {
2021-05-16 01:41:12 +02:00
return Storage::disk('public')->{$type}($file_path);
}
2021-05-16 01:41:12 +02:00
$file_path = (new CreateEntityPdf($invitation))->handle();
return Storage::disk('public')->{$type}($file_path);
2021-05-15 04:19:36 +02:00
}
2020-03-23 18:10:42 +01:00
/**
* @param int $status
* @return string
*/
2023-04-26 11:25:33 +02:00
public static function badgeForStatus(int $status): string
2020-03-23 18:10:42 +01:00
{
switch ($status) {
case self::STATUS_DRAFT:
return '<h5><span class="badge badge-light">'.ctrans('texts.draft').'</span></h5>';
case self::STATUS_SENT:
return '<h5><span class="badge badge-primary">'.ctrans('texts.pending').'</span></h5>';
case self::STATUS_APPROVED:
return '<h5><span class="badge badge-success">'.ctrans('texts.approved').'</span></h5>';
case self::STATUS_EXPIRED:
return '<h5><span class="badge badge-danger">'.ctrans('texts.expired').'</span></h5>';
2021-01-14 14:22:01 +01:00
case self::STATUS_CONVERTED:
return '<h5><span class="badge badge-light">'.ctrans('texts.converted').'</span></h5>';
2020-03-23 18:10:42 +01:00
default:
2023-04-26 11:25:33 +02:00
return '<h5><span class="badge badge-light">'.ctrans('texts.draft').'</span></h5>';
2020-03-23 18:10:42 +01:00
}
}
2023-04-26 11:25:33 +02:00
public static function stringStatus(int $status): string
2022-04-28 06:02:59 +02:00
{
switch ($status) {
case self::STATUS_DRAFT:
return ctrans('texts.draft');
case self::STATUS_SENT:
return ctrans('texts.pending');
case self::STATUS_APPROVED:
return ctrans('texts.approved');
case self::STATUS_EXPIRED:
return ctrans('texts.expired');
case self::STATUS_CONVERTED:
return ctrans('texts.converted');
default:
2023-04-26 11:25:33 +02:00
return ctrans('texts.draft');
2022-04-28 06:02:59 +02:00
}
}
2020-03-23 18:10:42 +01:00
/**
* 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;
}
public function getValidUntilAttribute()
{
return $this->due_date;
}
public function getBalanceDueAttribute()
{
return $this->balance;
}
public function getTotalAttribute()
{
return $this->calc()->getTotal();
}
2022-04-06 02:38:01 +02:00
public function translate_entity()
{
return ctrans('texts.quote');
}
2023-02-15 01:04:47 +01:00
/**
* calculateTemplate
*
* @param string $entity_string
* @return string
*/
public function calculateTemplate(string $entity_string): string
{
return $entity_string;
}
2019-04-04 01:30:49 +02:00
}