akaunting/app/Models/Setting/Currency.php
2018-10-13 17:15:52 +03:00

147 lines
3.1 KiB
PHP

<?php
namespace App\Models\Setting;
use App\Models\Model;
class Currency extends Model
{
protected $table = 'currencies';
/**
* Attributes that should be mass-assignable.
*
* @var array
*/
protected $fillable = ['company_id', 'name', 'code', 'rate', 'enabled', 'precision', 'symbol', 'symbol_first', 'decimal_mark', 'thousands_separator'];
/**
* Sortable columns.
*
* @var array
*/
public $sortable = ['name', 'code', 'rate', 'enabled'];
public function accounts()
{
return $this->hasMany('App\Models\Banking\Account', 'currency_code', 'code');
}
public function customers()
{
return $this->hasMany('App\Models\Income\Customer', 'currency_code', 'code');
}
public function invoices()
{
return $this->hasMany('App\Models\Income\Invoice', 'currency_code', 'code');
}
public function invoice_payments()
{
return $this->hasMany('App\Models\Income\InvoicePayment', 'currency_code', 'code');
}
public function revenues()
{
return $this->hasMany('App\Models\Income\Revenue', 'currency_code', 'code');
}
public function bills()
{
return $this->hasMany('App\Models\Expense\Bill', 'currency_code', 'code');
}
public function bill_payments()
{
return $this->hasMany('App\Models\Expense\BillPayment', 'currency_code', 'code');
}
public function payments()
{
return $this->hasMany('App\Models\Expense\Payment', 'currency_code', 'code');
}
/**
* Convert rate to double.
*
* @param string $value
* @return void
*/
public function setRateAttribute($value)
{
$this->attributes['rate'] = (double) $value;
}
/**
* Get the current precision.
*
* @return string
*/
public function getPrecisionAttribute($value)
{
if (is_null($value)) {
return config('money.' . $this->code . '.precision');
}
return $value;
}
/**
* Get the current symbol.
*
* @return string
*/
public function getSymbolAttribute($value)
{
if (is_null($value)) {
return config('money.' . $this->code . '.symbol');
}
return $value;
}
/**
* Get the current symbol_first.
*
* @return string
*/
public function getSymbolFirstAttribute($value)
{
if (is_null($value)) {
return config('money.' . $this->code . '.symbol_first');
}
return $value;
}
/**
* Get the current decimal_mark.
*
* @return string
*/
public function getDecimalMarkAttribute($value)
{
if (is_null($value)) {
return config('money.' . $this->code . '.decimal_mark');
}
return $value;
}
/**
* Get the current thousands_separator.
*
* @return string
*/
public function getThousandsSeparatorAttribute($value)
{
if (is_null($value)) {
return config('money.' . $this->code . '.thousands_separator');
}
return $value;
}
}