2019-04-29 14:14:11 +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
|
|
|
|
*
|
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-29 14:14:11 +02:00
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2020-01-07 01:13:47 +01:00
|
|
|
use App\Helpers\Invoice\InvoiceSum;
|
2023-10-26 04:57:44 +02:00
|
|
|
use App\Helpers\Invoice\InvoiceSumInclusive;
|
|
|
|
use App\Models\Presenters\CreditPresenter;
|
2020-02-25 09:33:53 +01:00
|
|
|
use App\Services\Credit\CreditService;
|
2020-04-08 12:48:31 +02:00
|
|
|
use App\Services\Ledger\LedgerService;
|
2023-10-26 04:57:44 +02:00
|
|
|
use App\Utils\Traits\MakesDates;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
2023-08-04 08:40:44 +02:00
|
|
|
use App\Utils\Traits\MakesInvoiceValues;
|
2023-10-26 04:57:44 +02:00
|
|
|
use App\Utils\Traits\MakesReminders;
|
2023-08-04 08:40:44 +02:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2023-10-26 04:57:44 +02:00
|
|
|
use Illuminate\Support\Carbon;
|
|
|
|
use Laracasts\Presenter\PresentableTrait;
|
2019-04-29 14:14:11 +02:00
|
|
|
|
2023-03-08 08:33:42 +01:00
|
|
|
/**
|
|
|
|
* App\Models\Credit
|
|
|
|
*
|
|
|
|
* @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 int $is_deleted
|
2023-04-26 11:25:33 +02:00
|
|
|
* @property array|null $line_items
|
2023-03-08 08:33:42 +01:00
|
|
|
* @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
|
2023-08-03 00:24:30 +02:00
|
|
|
* @property float $tax_rate1
|
2023-03-08 08:33:42 +01:00
|
|
|
* @property string|null $tax_name2
|
2023-08-03 00:24:30 +02:00
|
|
|
* @property float $tax_rate2
|
2023-03-08 08:33:42 +01:00
|
|
|
* @property string|null $tax_name3
|
2023-08-03 00:24:30 +02:00
|
|
|
* @property float $tax_rate3
|
2023-03-08 08:33:42 +01:00
|
|
|
* @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 $next_send_date
|
|
|
|
* @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
|
2023-08-03 00:24:30 +02:00
|
|
|
* @property float $paid_to_date
|
2023-03-08 08:33:42 +01:00
|
|
|
* @property int|null $subscription_id
|
2023-08-11 06:18:58 +02:00
|
|
|
* @property \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
|
|
|
|
* @property int|null $activities_count
|
|
|
|
* @property \App\Models\User|null $assigned_user
|
|
|
|
* @property \App\Models\Client $client
|
|
|
|
* @property \App\Models\Company $company
|
|
|
|
* @property \App\Models\CreditInvitation $invitation
|
|
|
|
* @property \Illuminate\Database\Eloquent\Collection<int, \App\Models\CompanyLedger> $company_ledger
|
|
|
|
* @property int|null $company_ledger_count
|
|
|
|
* @property \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property int|null $documents_count
|
|
|
|
* @property mixed $hashed_id
|
|
|
|
* @property \Illuminate\Database\Eloquent\Collection<int, \App\Models\Backup> $history
|
|
|
|
* @property int|null $history_count
|
|
|
|
* @property \Illuminate\Database\Eloquent\Collection<int, \App\Models\CreditInvitation> $invitations
|
|
|
|
* @property int|null $invitations_count
|
|
|
|
* @property \App\Models\Invoice|null $invoice
|
|
|
|
* @property \Illuminate\Database\Eloquent\Collection<int, \App\Models\Invoice> $invoices
|
|
|
|
* @property int|null $invoices_count
|
|
|
|
* @property \Illuminate\Database\Eloquent\Collection<int, \App\Models\Payment> $payments
|
|
|
|
* @property int|null $payments_count
|
|
|
|
* @property \App\Models\Project|null $project
|
|
|
|
* @property \App\Models\User $user
|
|
|
|
* @property \App\Models\Client $client
|
|
|
|
* @property \App\Models\Vendor|null $vendor
|
2023-08-03 00:10:36 +02:00
|
|
|
* @property-read mixed $pivot
|
2023-03-16 05:20:38 +01:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
|
2023-04-13 07:39:12 +02:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\CompanyLedger> $company_ledger
|
2023-04-26 08:55:49 +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\CreditInvitation> $invitations
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Invoice> $invoices
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Payment> $payments
|
2023-10-26 04:57:44 +02:00
|
|
|
*
|
2023-03-08 08:33:42 +01:00
|
|
|
* @mixin \Eloquent
|
|
|
|
*/
|
2019-04-29 14:14:11 +02:00
|
|
|
class Credit extends BaseModel
|
|
|
|
{
|
2019-12-25 13:22:10 +01:00
|
|
|
use MakesHash;
|
|
|
|
use Filterable;
|
|
|
|
use MakesDates;
|
|
|
|
use SoftDeletes;
|
2020-03-04 00:51:50 +01:00
|
|
|
use PresentableTrait;
|
|
|
|
use MakesInvoiceValues;
|
2020-11-04 10:32:49 +01:00
|
|
|
use MakesReminders;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2020-10-28 11:10:49 +01:00
|
|
|
protected $presenter = CreditPresenter::class;
|
2020-03-04 00:51:50 +01:00
|
|
|
|
2020-01-07 01:13:47 +01:00
|
|
|
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',
|
2021-02-23 02:17:09 +01:00
|
|
|
'partial_due_date',
|
|
|
|
'project_id',
|
2020-01-07 01:13:47 +01:00
|
|
|
'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',
|
2020-03-07 23:15:11 +01:00
|
|
|
'design_id',
|
2021-02-23 02:17:09 +01:00
|
|
|
'assigned_user_id',
|
2020-06-28 00:24:08 +02:00
|
|
|
'exchange_rate',
|
2021-03-10 01:08:58 +01:00
|
|
|
'subscription_id',
|
2022-02-08 11:39:59 +01:00
|
|
|
'vendor_id',
|
2020-01-07 01:13:47 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
protected $casts = [
|
|
|
|
'line_items' => 'object',
|
2020-06-15 01:34:18 +02:00
|
|
|
'backup' => 'object',
|
2020-01-07 01:13:47 +01:00
|
|
|
'updated_at' => 'timestamp',
|
|
|
|
'created_at' => 'timestamp',
|
|
|
|
'deleted_at' => 'timestamp',
|
2022-02-27 07:49:49 +01:00
|
|
|
'is_amount_discount' => 'bool',
|
|
|
|
|
2020-01-07 01:13:47 +01:00
|
|
|
];
|
|
|
|
|
2020-07-23 05:55:11 +02:00
|
|
|
protected $touches = [];
|
2020-07-16 13:01:39 +02:00
|
|
|
|
2020-01-07 01:13:47 +01:00
|
|
|
const STATUS_DRAFT = 1;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2020-03-03 10:44:26 +01:00
|
|
|
const STATUS_SENT = 2;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2020-03-03 10:44:26 +01:00
|
|
|
const STATUS_PARTIAL = 3;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2020-03-03 10:44:26 +01:00
|
|
|
const STATUS_APPLIED = 4;
|
2020-01-07 01:13:47 +01: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
|
|
|
}
|
|
|
|
|
2023-08-04 08:40:44 +02:00
|
|
|
public function assigned_user(): \Illuminate\Database\Eloquent\Relations\BelongsTo
|
2019-11-05 11:16:38 +01:00
|
|
|
{
|
2021-09-08 01:29:20 +02:00
|
|
|
return $this->belongsTo(User::class, 'assigned_user_id', 'id')->withTrashed();
|
2019-11-05 11:16:38 +01:00
|
|
|
}
|
2020-01-03 09:49:59 +01:00
|
|
|
|
2023-08-04 08:40:44 +02:00
|
|
|
public function vendor(): \Illuminate\Database\Eloquent\Relations\BelongsTo
|
2022-02-08 11:39:59 +01:00
|
|
|
{
|
|
|
|
return $this->belongsTo(Vendor::class);
|
|
|
|
}
|
|
|
|
|
2023-08-04 08:40:44 +02:00
|
|
|
public function history(): \Illuminate\Database\Eloquent\Relations\HasManyThrough
|
2020-08-14 00:08:10 +02:00
|
|
|
{
|
|
|
|
return $this->hasManyThrough(Backup::class, Activity::class);
|
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2023-08-04 08:40:44 +02:00
|
|
|
public function activities(): \Illuminate\Database\Eloquent\Relations\HasMany
|
2021-05-07 13:00:55 +02:00
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
2023-08-04 08:40:44 +02:00
|
|
|
public function company(): \Illuminate\Database\Eloquent\Relations\BelongsTo
|
2020-01-07 01:13:47 +01:00
|
|
|
{
|
|
|
|
return $this->belongsTo(Company::class);
|
|
|
|
}
|
|
|
|
|
2023-08-04 08:40:44 +02:00
|
|
|
public function user(): \Illuminate\Database\Eloquent\Relations\BelongsTo
|
2020-01-07 01:13:47 +01:00
|
|
|
{
|
|
|
|
return $this->belongsTo(User::class)->withTrashed();
|
|
|
|
}
|
|
|
|
|
2023-08-01 15:53:10 +02:00
|
|
|
public function client(): \Illuminate\Database\Eloquent\Relations\BelongsTo
|
2020-01-07 01:13:47 +01:00
|
|
|
{
|
|
|
|
return $this->belongsTo(Client::class)->withTrashed();
|
|
|
|
}
|
|
|
|
|
2023-08-04 08:40:44 +02:00
|
|
|
public function invitations(): \Illuminate\Database\Eloquent\Relations\HasMany
|
2020-01-07 01:13:47 +01:00
|
|
|
{
|
|
|
|
return $this->hasMany(CreditInvitation::class);
|
|
|
|
}
|
|
|
|
|
2023-08-04 08:40:44 +02:00
|
|
|
public function project(): \Illuminate\Database\Eloquent\Relations\BelongsTo
|
2021-02-26 22:37:56 +01:00
|
|
|
{
|
|
|
|
return $this->belongsTo(Project::class)->withTrashed();
|
|
|
|
}
|
|
|
|
|
2020-01-07 01:13:47 +01:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* The invoice which the credit has been created from.
|
2020-01-07 01:13:47 +01:00
|
|
|
*/
|
2023-08-04 08:40:44 +02:00
|
|
|
public function invoice(): \Illuminate\Database\Eloquent\Relations\BelongsTo
|
2020-01-07 01:13:47 +01:00
|
|
|
{
|
|
|
|
return $this->belongsTo(Invoice::class);
|
|
|
|
}
|
|
|
|
|
2023-08-11 09:58:43 +02:00
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\MorphMany<CompanyLedger>
|
|
|
|
*/
|
2023-08-04 08:40:44 +02:00
|
|
|
public function company_ledger(): \Illuminate\Database\Eloquent\Relations\MorphMany
|
2020-02-19 21:44:12 +01:00
|
|
|
{
|
|
|
|
return $this->morphMany(CompanyLedger::class, 'company_ledgerable');
|
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2023-08-04 08:40:44 +02:00
|
|
|
public function ledger(): \App\Services\Ledger\LedgerService
|
2020-04-08 12:48:31 +02:00
|
|
|
{
|
|
|
|
return new LedgerService($this);
|
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-01-07 01:13:47 +01:00
|
|
|
/**
|
|
|
|
* The invoice/s which the credit has
|
|
|
|
* been applied to.
|
|
|
|
*/
|
2023-08-04 08:40:44 +02:00
|
|
|
public function invoices(): \Illuminate\Database\Eloquent\Relations\BelongsToMany
|
2020-01-03 09:49:59 +01:00
|
|
|
{
|
2020-01-07 01:13:47 +01:00
|
|
|
return $this->belongsToMany(Invoice::class)->using(Paymentable::class);
|
|
|
|
}
|
|
|
|
|
2023-08-11 09:58:43 +02:00
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\MorphToMany<Payment>
|
|
|
|
*/
|
2023-08-04 08:40:44 +02:00
|
|
|
public function payments(): \Illuminate\Database\Eloquent\Relations\MorphToMany
|
2020-01-07 01:13:47 +01:00
|
|
|
{
|
|
|
|
return $this->morphToMany(Payment::class, 'paymentable');
|
|
|
|
}
|
|
|
|
|
2023-08-11 09:58:43 +02:00
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\MorphMany<Document>
|
|
|
|
*/
|
2023-08-04 08:40:44 +02:00
|
|
|
public function documents(): \Illuminate\Database\Eloquent\Relations\MorphMany
|
2020-06-22 07:52:20 +02:00
|
|
|
{
|
|
|
|
return $this->morphMany(Document::class, 'documentable');
|
|
|
|
}
|
|
|
|
|
2020-01-07 01:13:47 +01:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Access the invoice calculator object.
|
2020-01-07 01:13:47 +01:00
|
|
|
*
|
2023-04-26 12:57:30 +02:00
|
|
|
* @return InvoiceSumInclusive | InvoiceSum The invoice calculator object getters
|
2020-01-07 01:13:47 +01:00
|
|
|
*/
|
2023-04-26 12:57:30 +02:00
|
|
|
public function calc(): InvoiceSumInclusive | InvoiceSum
|
2020-01-07 01:13:47 +01:00
|
|
|
{
|
|
|
|
$credit_calc = null;
|
|
|
|
|
|
|
|
if ($this->uses_inclusive_taxes) {
|
|
|
|
$credit_calc = new InvoiceSumInclusive($this);
|
|
|
|
} else {
|
|
|
|
$credit_calc = new InvoiceSum($this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $credit_calc->build();
|
2020-01-03 09:49:59 +01:00
|
|
|
}
|
2020-01-09 21:15:10 +01:00
|
|
|
|
2023-08-04 08:40:44 +02:00
|
|
|
public function service(): \App\Services\Credit\CreditService
|
2020-02-25 09:33:53 +01:00
|
|
|
{
|
|
|
|
return new CreditService($this);
|
|
|
|
}
|
2020-01-09 21:15:10 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param float $balance_adjustment
|
|
|
|
*/
|
|
|
|
public function updateBalance($balance_adjustment)
|
|
|
|
{
|
|
|
|
if ($this->is_deleted) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$balance_adjustment = floatval($balance_adjustment);
|
|
|
|
|
|
|
|
$this->balance = $this->balance + $balance_adjustment;
|
|
|
|
|
|
|
|
if ($this->balance == 0) {
|
|
|
|
$this->status_id = self::STATUS_APPLIED;
|
2023-02-01 05:00:45 +01:00
|
|
|
$this->saveQuietly();
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2020-01-09 21:15:10 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-02-01 05:00:45 +01:00
|
|
|
$this->saveQuietly();
|
2020-01-09 21:15:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function setStatus($status)
|
|
|
|
{
|
|
|
|
$this->status_id = $status;
|
2023-02-01 05:00:45 +01:00
|
|
|
$this->saveQuietly();
|
2020-01-09 21:15:10 +01:00
|
|
|
}
|
2020-03-03 10:44:26 +01:00
|
|
|
|
|
|
|
public function markInvitationsSent()
|
|
|
|
{
|
|
|
|
$this->invitations->each(function ($invitation) {
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! isset($invitation->sent_date)) {
|
2020-03-03 10:44:26 +01:00
|
|
|
$invitation->sent_date = Carbon::now();
|
2023-02-01 05:00:45 +01:00
|
|
|
$invitation->saveQuietly();
|
2020-03-03 10:44:26 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2021-01-24 07:44:14 +01:00
|
|
|
|
2022-03-10 01:32:04 +01:00
|
|
|
public function transaction_event()
|
|
|
|
{
|
2022-03-10 02:17:05 +01:00
|
|
|
$credit = $this->fresh();
|
2022-03-10 01:32:04 +01:00
|
|
|
|
|
|
|
return [
|
2022-06-21 11:57:17 +02:00
|
|
|
'credit_id' => $credit->id,
|
|
|
|
'credit_amount' => $credit->amount ?: 0,
|
|
|
|
'credit_balance' => $credit->balance ?: 0,
|
2022-03-10 02:17:05 +01:00
|
|
|
'credit_status' => $credit->status_id ?: 1,
|
2022-03-10 01:32:04 +01:00
|
|
|
];
|
|
|
|
}
|
2022-04-06 02:38:01 +02:00
|
|
|
|
2023-08-04 08:40:44 +02:00
|
|
|
public function translate_entity(): string
|
2022-04-06 02:38:01 +02:00
|
|
|
{
|
|
|
|
return ctrans('texts.credit');
|
|
|
|
}
|
2022-05-10 06:25:16 +02:00
|
|
|
|
2023-08-04 08:40:44 +02:00
|
|
|
public static function stringStatus(int $status): string
|
2022-05-10 06:25:16 +02:00
|
|
|
{
|
|
|
|
switch ($status) {
|
|
|
|
case self::STATUS_DRAFT:
|
|
|
|
return ctrans('texts.draft');
|
|
|
|
case self::STATUS_SENT:
|
|
|
|
return ctrans('texts.sent');
|
|
|
|
case self::STATUS_PARTIAL:
|
|
|
|
return ctrans('texts.partial');
|
|
|
|
case self::STATUS_APPLIED:
|
|
|
|
return ctrans('texts.applied');
|
|
|
|
default:
|
2023-04-26 11:25:33 +02:00
|
|
|
return ctrans('texts.sent');
|
2022-05-10 06:25:16 +02:00
|
|
|
}
|
|
|
|
}
|
2019-04-29 14:14:11 +02:00
|
|
|
}
|