1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/app/Models/PaymentTerm.php
2019-01-30 22:25:37 +11:00

52 lines
942 B
PHP

<?php
namespace App\Models;
use Cache;
use Illuminate\Database\Eloquent\SoftDeletes;
/**
* Class PaymentTerm.
*/
class PaymentTerm extends EntityModel
{
use SoftDeletes;
/**
* @var bool
*/
public $timestamps = true;
/**
* @var array
*/
protected $dates = ['deleted_at'];
/**
* @return mixed
*/
public function getEntityType()
{
return ENTITY_PAYMENT_TERM;
}
public function getNumDays()
{
return $this->num_days == -1 ? 0 : $this->num_days;
}
public static function getSelectOptions()
{
$terms = PaymentTerm::whereAccountId(0)->get();
foreach (PaymentTerm::scope()->get() as $term) {
$terms->push($term);
}
foreach ($terms as $term) {
$term->name = trans('texts.payment_terms_net') . ' ' . $term->getNumDays();
}
return $terms->sortBy('num_days');
}
}