79 lines
1.5 KiB
PHP
79 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Models\Income;
|
|
|
|
use App\Models\Model;
|
|
use App\Models\Setting\Tax;
|
|
use App\Traits\DateTime;
|
|
|
|
class InvoiceTotal extends Model
|
|
{
|
|
use DateTime;
|
|
|
|
protected $table = 'invoice_totals';
|
|
|
|
/**
|
|
* Attributes that should be mass-assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = ['company_id', 'invoice_id', 'code', 'name', 'amount', 'sort_order'];
|
|
|
|
public function invoice()
|
|
{
|
|
return $this->belongsTo('App\Models\Income\Invoice');
|
|
}
|
|
|
|
/**
|
|
* Convert amount to double.
|
|
*
|
|
* @param string $value
|
|
* @return void
|
|
*/
|
|
public function setAmountAttribute($value)
|
|
{
|
|
$this->attributes['amount'] = (double) $value;
|
|
}
|
|
|
|
/**
|
|
* Get the formatted name.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getNameAttribute($value)
|
|
{
|
|
$name = $value;
|
|
|
|
$percent = 0;
|
|
|
|
// Discount
|
|
if ($this->code == 'discount') {
|
|
$name = trans($name);
|
|
$percent = $this->invoice->discount;
|
|
}
|
|
|
|
// Tax
|
|
if ($this->code == 'tax') {
|
|
$rate = Tax::where('name', $name)->value('rate');
|
|
|
|
if (!empty($rate)) {
|
|
$percent = $rate;
|
|
}
|
|
}
|
|
|
|
if (!empty($percent)) {
|
|
$name .= ' (';
|
|
|
|
if (setting('general.percent_position', 'after') == 'after') {
|
|
$name .= $percent . '%';
|
|
} else {
|
|
$name .= '%' . $percent;
|
|
}
|
|
|
|
$name .= ')';
|
|
}
|
|
|
|
return $name;
|
|
}
|
|
}
|