akaunting/app/Models/Purchase/BillItem.php

167 lines
3.3 KiB
PHP
Raw Normal View History

2017-09-14 22:21:00 +03:00
<?php
2019-12-31 15:49:09 +03:00
namespace App\Models\Purchase;
2017-09-14 22:21:00 +03:00
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 BillItem extends Model
{
2019-11-16 10:21:14 +03:00
use Cloneable, Currencies;
2017-09-14 22:21:00 +03:00
protected $table = 'bill_items';
2020-03-26 16:20:31 +03:00
/**
* The accessors to append to the model's array form.
*
* @var array
*/
protected $appends = ['discount'];
2017-09-14 22:21:00 +03:00
/**
* 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',
];
2019-11-16 10:21:14 +03:00
/**
* Clonable relationships.
*
* @var array
*/
public $cloneable_relations = ['taxes'];
2017-09-14 22:21:00 +03:00
public static function boot()
{
parent::boot();
static::retrieved(function($model) {
$model->setTaxIds();
});
}
2017-09-14 22:21:00 +03:00
public function bill()
{
2019-12-31 15:49:09 +03:00
return $this->belongsTo('App\Models\Purchase\Bill');
2017-09-14 22:21:00 +03:00
}
public function item()
{
2020-01-20 23:50:29 +03:00
return $this->belongsTo('App\Models\Common\Item')->withDefault(['name' => trans('general.na')]);
2017-09-14 22:21:00 +03:00
}
2019-01-07 18:38:34 +03:00
public function taxes()
2018-10-22 16:57:35 +03:00
{
2019-12-31 15:49:09 +03:00
return $this->hasMany('App\Models\Purchase\BillItemTax', 'bill_item_id', 'id');
2018-10-22 16:57:35 +03:00
}
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
}
/**
* Get the formatted discount.
*
* @return string
*/
2020-03-26 16:20:31 +03:00
public function getDiscountAttribute()
{
if (setting('localisation.percent_position', 'after') === 'after') {
2020-03-26 16:20:31 +03:00
$text = ($this->discount_type === 'normal') ? $this->discount_rate . '%' : $this->discount_rate;
} else {
2020-03-26 16:20:31 +03:00
$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);
}
2020-03-16 13:44:15 +03:00
public function onCloning($src, $child = null)
{
unset($this->tax_id);
}
2017-09-14 22:21:00 +03:00
}