mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
eddb9adc73
* Clean up Client Show * Working on Show Client menu action * working on client view permissions * Finishing up Client Statement View * Workig on client settings * add mix manifest * css for client settings * Client Settings * Working on Client Settings * Implement StartupCheck and static seeders * Implement cached statics in view composers * Working on client settings * Payment Terms * Working on Payment Terms View Composer * Payment Terms builder * Client Settings * refactor companies table * Refactor for company settings, move settings to json * Set object cast on settings column of Company table * Fixes for refactor of companies and clients table * Test * Client Settings Datamapper * Client Settings * Default client language * Client Settings * Working on client settings options * Client Settings * Settings Json serialization/deserialization handling
64 lines
1.2 KiB
PHP
64 lines
1.2 KiB
PHP
<?php
|
|
|
|
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'];
|
|
|
|
public function getNumDays()
|
|
{
|
|
return $this->num_days == -1 ? 0 : $this->num_days;
|
|
}
|
|
|
|
public static function getCompanyTerms()
|
|
{
|
|
$default_terms = collect(unserialize(CACHED_PAYMENT_TERMS));
|
|
|
|
$terms = self::scope()->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');
|
|
*/
|
|
}
|
|
}
|