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

75 lines
1.6 KiB
PHP
Raw Normal View History

<?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
*/
namespace App\Models;
use Illuminate\Database\Eloquent\SoftDeletes;
2019-09-11 01:31:55 +02:00
use Illuminate\Support\Facades\Log;
/**
* Class PaymentTerm.
*/
class PaymentTerm extends BaseModel
{
use SoftDeletes;
/**
* @var bool
*/
public $timestamps = true;
/**
* @var array
*/
protected $dates = ['deleted_at'];
protected $fillable = ['num_days'];
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'));
$terms = self::whereCompanyId(auth()->user()->company()->id)->orWhere('company_id', null)->get();
$terms->map(function ($term) {
return $term['num_days'];
});
$default_terms->merge($terms)
->sort()
->values()
->all();
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');
*/
}
}