167 lines
3.3 KiB
PHP
167 lines
3.3 KiB
PHP
<?php
|
|
|
|
namespace App\Models\Purchase;
|
|
|
|
use App\Abstracts\Model;
|
|
use App\Traits\Currencies;
|
|
use Bkwld\Cloner\Cloneable;
|
|
|
|
class BillItem extends Model
|
|
{
|
|
|
|
use Cloneable, Currencies;
|
|
|
|
protected $table = 'bill_items';
|
|
|
|
/**
|
|
* The accessors to append to the model's array form.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $appends = ['discount'];
|
|
|
|
/**
|
|
* Attributes that should be mass-assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'company_id',
|
|
'bill_id',
|
|
'item_id',
|
|
'name',
|
|
'quantity',
|
|
'price',
|
|
'total',
|
|
'tax',
|
|
'discount_rate',
|
|
'discount_type',
|
|
];
|
|
|
|
/**
|
|
* Clonable relationships.
|
|
*
|
|
* @var array
|
|
*/
|
|
public $cloneable_relations = ['taxes'];
|
|
|
|
public static function boot()
|
|
{
|
|
parent::boot();
|
|
|
|
static::retrieved(function($model) {
|
|
$model->setTaxIds();
|
|
});
|
|
}
|
|
|
|
public function bill()
|
|
{
|
|
return $this->belongsTo('App\Models\Purchase\Bill');
|
|
}
|
|
|
|
public function item()
|
|
{
|
|
return $this->belongsTo('App\Models\Common\Item')->withDefault(['name' => trans('general.na')]);
|
|
}
|
|
|
|
public function taxes()
|
|
{
|
|
return $this->hasMany('App\Models\Purchase\BillItemTax', 'bill_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;
|
|
}
|
|
|
|
/**
|
|
* Get the formatted discount.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getDiscountAttribute()
|
|
{
|
|
if (setting('localisation.percent_position', 'after') === 'after') {
|
|
$text = ($this->discount_type === 'normal') ? $this->discount_rate . '%' : $this->discount_rate;
|
|
} else {
|
|
$text = ($this->discount_type === 'normal') ? '%' . $this->discount_rate : $this->discount_rate;
|
|
}
|
|
|
|
return $text;
|
|
}
|
|
|
|
/**
|
|
* Get the formatted discount.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getDiscountRateAttribute($value = 0)
|
|
{
|
|
$discount_rate = 0;
|
|
|
|
switch (setting('localisation.discount_location', 'total')) {
|
|
case 'no':
|
|
case 'total':
|
|
$discount_rate = 0;
|
|
break;
|
|
case 'item':
|
|
$discount_rate = $value;
|
|
break;
|
|
case 'both':
|
|
$discount_rate = $value;
|
|
break;
|
|
}
|
|
|
|
return $discount_rate;
|
|
}
|
|
|
|
/**
|
|
* 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);
|
|
}
|
|
|
|
public function onCloning($src, $child = null)
|
|
{
|
|
unset($this->tax_id);
|
|
}
|
|
}
|