102 lines
2.0 KiB
PHP
102 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Models\Sale;
|
|
|
|
use App\Abstracts\Model;
|
|
use App\Traits\Currencies;
|
|
use Bkwld\Cloner\Cloneable;
|
|
|
|
class InvoiceItem extends Model
|
|
{
|
|
use Cloneable, Currencies;
|
|
|
|
protected $table = 'invoice_items';
|
|
|
|
/**
|
|
* Attributes that should be mass-assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = ['company_id', 'invoice_id', 'item_id', 'name', 'quantity', 'price', 'total', 'tax'];
|
|
|
|
/**
|
|
* Clonable relationships.
|
|
*
|
|
* @var array
|
|
*/
|
|
public $cloneable_relations = ['taxes'];
|
|
|
|
public static function boot()
|
|
{
|
|
parent::boot();
|
|
|
|
static::retrieved(function($model) {
|
|
$model->setTaxIds();
|
|
});
|
|
}
|
|
|
|
public function invoice()
|
|
{
|
|
return $this->belongsTo('App\Models\Sale\Invoice');
|
|
}
|
|
|
|
public function item()
|
|
{
|
|
return $this->belongsTo('App\Models\Common\Item')->withDefault(['name' => trans('general.na')]);
|
|
}
|
|
|
|
public function taxes()
|
|
{
|
|
return $this->hasMany('App\Models\Sale\InvoiceItemTax', 'invoice_item_id', 'id');
|
|
}
|
|
|
|
/**
|
|
* Convert price to double.
|
|
*
|
|
* @param string $value
|
|
* @return void
|
|
*/
|
|
public function setPriceAttribute($value)
|
|
{
|
|
$this->attributes['price'] = (double) $value;
|
|
}
|
|
|
|
/**
|
|
* 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;
|
|
}
|
|
|
|
/**
|
|
* Convert tax to Array.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function setTaxIds()
|
|
{
|
|
$tax_ids = [];
|
|
|
|
foreach ($this->taxes as $tax) {
|
|
$tax_ids[] = (string) $tax->tax_id;
|
|
}
|
|
|
|
$this->setAttribute('tax_id', $tax_ids);
|
|
}
|
|
}
|