akaunting/app/Models/Income/InvoiceItem.php

78 lines
1.5 KiB
PHP
Raw Normal View History

2017-09-14 22:21:00 +03:00
<?php
namespace App\Models\Income;
2019-11-16 10:21:14 +03:00
use App\Abstracts\Model;
2017-09-14 22:21:00 +03:00
use App\Traits\Currencies;
2019-11-16 10:21:14 +03:00
use Bkwld\Cloner\Cloneable;
2017-09-14 22:21:00 +03:00
class InvoiceItem extends Model
{
2019-11-16 10:21:14 +03:00
use Cloneable, Currencies;
2017-09-14 22:21:00 +03:00
protected $table = 'invoice_items';
/**
* Attributes that should be mass-assignable.
*
* @var array
*/
2019-11-16 10:21:14 +03:00
protected $fillable = ['company_id', 'invoice_id', 'item_id', 'name', 'quantity', 'price', 'total', 'tax'];
/**
* Clonable relationships.
*
* @var array
*/
public $cloneable_relations = ['taxes'];
2017-09-14 22:21:00 +03:00
public function invoice()
{
return $this->belongsTo('App\Models\Income\Invoice');
}
public function item()
{
2018-06-10 02:48:51 +03:00
return $this->belongsTo('App\Models\Common\Item');
2017-09-14 22:21:00 +03:00
}
2019-01-07 18:38:34 +03:00
public function taxes()
2018-10-22 16:14:17 +03:00
{
return $this->hasMany('App\Models\Income\InvoiceItemTax', 'invoice_item_id', 'id');
}
2017-10-21 14:23:57 +03:00
/**
* Convert price to double.
*
* @param string $value
* @return void
*/
public function setPriceAttribute($value)
{
$this->attributes['price'] = (double) $value;
2017-10-21 14:23:57 +03:00
}
/**
* Convert total to double.
*
* @param string $value
* @return void
*/
public function setTotalAttribute($value)
{
$this->attributes['total'] = (double) $value;
}
/**
* Convert tax to double.
*
* @param string $value
* @return void
*/
public function setTaxAttribute($value)
{
$this->attributes['tax'] = (double) $value;
2017-10-21 14:23:57 +03:00
}
2017-09-14 22:21:00 +03:00
}