159 lines
3.5 KiB
PHP
159 lines
3.5 KiB
PHP
<?php
|
|
|
|
namespace App\Models\Common;
|
|
|
|
use App\Models\Model;
|
|
use App\Traits\Currencies;
|
|
use Bkwld\Cloner\Cloneable;
|
|
use Sofa\Eloquence\Eloquence;
|
|
use App\Traits\Media;
|
|
|
|
class Item extends Model
|
|
{
|
|
use Cloneable, Currencies, Eloquence, Media;
|
|
|
|
protected $table = 'items';
|
|
|
|
/**
|
|
* The accessors to append to the model's array form.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $appends = ['item_id'];
|
|
|
|
/**
|
|
* Attributes that should be mass-assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = ['company_id', 'name', 'sku', 'description', 'sale_price', 'purchase_price', 'quantity', 'category_id', 'tax_id', 'enabled'];
|
|
|
|
/**
|
|
* Sortable columns.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $sortable = ['name', 'category', 'quantity', 'sale_price', 'purchase_price', 'enabled'];
|
|
|
|
/**
|
|
* Searchable rules.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $searchableColumns = [
|
|
'name' => 10,
|
|
'sku' => 5,
|
|
'description' => 2,
|
|
];
|
|
|
|
public function category()
|
|
{
|
|
return $this->belongsTo('App\Models\Setting\Category');
|
|
}
|
|
|
|
public function tax()
|
|
{
|
|
return $this->belongsTo('App\Models\Setting\Tax');
|
|
}
|
|
|
|
public function bill_items()
|
|
{
|
|
return $this->hasMany('App\Models\Expense\BillItem');
|
|
}
|
|
|
|
public function invoice_items()
|
|
{
|
|
return $this->hasMany('App\Models\Income\InvoiceItem');
|
|
}
|
|
|
|
/**
|
|
* Convert sale price to double.
|
|
*
|
|
* @param string $value
|
|
* @return void
|
|
*/
|
|
public function setSalePriceAttribute($value)
|
|
{
|
|
$this->attributes['sale_price'] = (double) $value;
|
|
}
|
|
|
|
/**
|
|
* Convert purchase price to double.
|
|
*
|
|
* @param string $value
|
|
* @return void
|
|
*/
|
|
public function setPurchasePriceAttribute($value)
|
|
{
|
|
$this->attributes['purchase_price'] = (double) $value;
|
|
}
|
|
|
|
/**
|
|
* Get the item id.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getItemIdAttribute()
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
/**
|
|
* Scope autocomplete.
|
|
*
|
|
* @param \Illuminate\Database\Eloquent\Builder $query
|
|
* @param array $filter
|
|
* @return \Illuminate\Database\Eloquent\Builder
|
|
*/
|
|
public function scopeAutocomplete($query, $filter)
|
|
{
|
|
return $query->where(function ($query) use ($filter) {
|
|
foreach ($filter as $key => $value) {
|
|
$query->orWhere($key, 'LIKE', "%" . $value . "%");
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Scope quantity.
|
|
*
|
|
* @param \Illuminate\Database\Eloquent\Builder $query
|
|
* @return \Illuminate\Database\Eloquent\Builder
|
|
*/
|
|
public function scopeQuantity($query)
|
|
{
|
|
return $query->where('quantity', '>', '0');
|
|
}
|
|
|
|
/**
|
|
* Sort by category name
|
|
*
|
|
* @param \Illuminate\Database\Eloquent\Builder $query
|
|
* @param $direction
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Builder
|
|
*/
|
|
public function categorySortable($query, $direction)
|
|
{
|
|
return $query->join('categories', 'categories.id', '=', 'items.category_id')
|
|
->orderBy('name', $direction)
|
|
->select('items.*');
|
|
}
|
|
|
|
/**
|
|
* Get the current balance.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getPictureAttribute($value)
|
|
{
|
|
if (!empty($value) && !$this->hasMedia('picture')) {
|
|
return $value;
|
|
} elseif (!$this->hasMedia('picture')) {
|
|
return false;
|
|
}
|
|
|
|
return $this->getMedia('picture')->last();
|
|
}
|
|
}
|