2019-02-17 11:34:46 +01: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
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-02-17 11:34:46 +01:00
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class PaymentTerm.
|
|
|
|
*/
|
|
|
|
class PaymentTerm extends BaseModel
|
|
|
|
{
|
|
|
|
use SoftDeletes;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public $timestamps = true;
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $dates = ['deleted_at'];
|
|
|
|
|
2020-05-23 05:28:24 +02:00
|
|
|
protected $fillable = ['num_days'];
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-02-17 11:34:46 +01:00
|
|
|
public function getNumDays()
|
|
|
|
{
|
|
|
|
return $this->num_days == -1 ? 0 : $this->num_days;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function getCompanyTerms()
|
|
|
|
{
|
2019-09-11 01:31:55 +02:00
|
|
|
$default_terms = collect(config('ninja.payment_terms'));
|
2019-02-17 11:34:46 +01:00
|
|
|
|
2020-05-23 05:28:24 +02:00
|
|
|
$terms = self::whereCompanyId(auth()->user()->company()->id)->orWhere('company_id', null)->get();
|
2019-02-17 11:34:46 +01:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
$terms->map(function ($term) {
|
2019-02-17 11:34:46 +01:00
|
|
|
return $term['num_days'];
|
|
|
|
});
|
|
|
|
|
|
|
|
$default_terms->merge($terms)
|
|
|
|
->sort()
|
|
|
|
->values()
|
|
|
|
->all();
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-02-17 11:34:46 +01:00
|
|
|
return $default_terms;
|
|
|
|
}
|
|
|
|
|
|
|
|
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');
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
}
|