2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
|
2016-12-26 15:17:46 -08:00
|
|
|
use App\Helpers\Helper;
|
2018-07-16 14:13:07 -07:00
|
|
|
use App\Models\Traits\Searchable;
|
2016-03-25 01:18:05 -07:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
use Watson\Validating\ValidatingTrait;
|
|
|
|
|
2016-04-07 13:21:09 -07:00
|
|
|
/**
|
|
|
|
* Model for Asset Maintenances.
|
|
|
|
*
|
|
|
|
* @version v1.0
|
|
|
|
*/
|
2016-03-25 01:18:05 -07:00
|
|
|
class AssetMaintenance extends Model implements ICompanyableChild
|
|
|
|
{
|
|
|
|
use SoftDeletes;
|
|
|
|
use CompanyableChildTrait;
|
2016-06-16 19:22:07 -07:00
|
|
|
use ValidatingTrait;
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
|
2018-07-16 14:13:07 -07:00
|
|
|
protected $dates = [ 'deleted_at', 'start_date' , 'completion_date'];
|
2016-03-25 01:18:05 -07:00
|
|
|
protected $table = 'asset_maintenances';
|
|
|
|
protected $rules = [
|
|
|
|
'asset_id' => 'required|integer',
|
|
|
|
'supplier_id' => 'required|integer',
|
|
|
|
'asset_maintenance_type' => 'required',
|
|
|
|
'title' => 'required|max:100',
|
|
|
|
'is_warranty' => 'boolean',
|
2018-07-19 10:19:55 -07:00
|
|
|
'start_date' => 'required|date',
|
|
|
|
'completion_date' => 'nullable|date',
|
2016-12-19 11:04:28 -08:00
|
|
|
'notes' => 'string|nullable',
|
2016-12-15 04:11:31 -08:00
|
|
|
'cost' => 'numeric|nullable'
|
2016-03-25 01:18:05 -07:00
|
|
|
];
|
|
|
|
|
2018-07-16 14:13:07 -07:00
|
|
|
use Searchable;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The attributes that should be included when searching the model.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $searchableAttributes = ['title', 'notes', 'asset_maintenance_type', 'cost', 'start_date', 'completion_date'];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The relations and their attributes that should be included when searching the model.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2018-08-01 18:24:52 -07:00
|
|
|
protected $searchableRelations = [
|
|
|
|
'asset' => ['name', 'asset_tag'],
|
|
|
|
'asset.model' => ['name', 'model_number'],
|
|
|
|
];
|
2018-07-16 14:13:07 -07:00
|
|
|
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
public function getCompanyableParents()
|
|
|
|
{
|
|
|
|
return [ 'asset' ];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* getImprovementOptions
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
* @author Vincent Sposato <vincent.sposato@gmail.com>
|
|
|
|
* @version v1.0
|
|
|
|
*/
|
|
|
|
public static function getImprovementOptions()
|
|
|
|
{
|
|
|
|
|
|
|
|
return [
|
2016-07-10 21:07:59 -07:00
|
|
|
trans('admin/asset_maintenances/general.maintenance') => trans('admin/asset_maintenances/general.maintenance'),
|
|
|
|
trans('admin/asset_maintenances/general.repair') => trans('admin/asset_maintenances/general.repair'),
|
2018-04-04 17:33:02 -07:00
|
|
|
trans('admin/asset_maintenances/general.upgrade') => trans('admin/asset_maintenances/general.upgrade'),
|
|
|
|
'PAT test' => 'PAT test',
|
2019-01-24 15:17:33 -08:00
|
|
|
trans('admin/asset_maintenances/general.calibration') => trans('admin/asset_maintenances/general.calibration'),
|
2019-09-24 01:34:23 -07:00
|
|
|
'Software Support' => trans('admin/asset_maintenances/general.software_support'),
|
|
|
|
'Hardware Support' => trans('admin/asset_maintenances/general.hardware_support'),
|
2016-03-25 01:18:05 -07:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2016-12-26 15:17:46 -08:00
|
|
|
public function setIsWarrantyAttribute($value)
|
|
|
|
{
|
2016-12-29 14:02:18 -08:00
|
|
|
if ($value == '') {
|
2016-12-26 15:17:46 -08:00
|
|
|
$value = 0;
|
|
|
|
}
|
|
|
|
$this->attributes['is_warranty'] = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $value
|
|
|
|
*/
|
|
|
|
public function setCostAttribute($value)
|
|
|
|
{
|
|
|
|
$value = Helper::ParseFloat($value);
|
2016-12-29 14:02:18 -08:00
|
|
|
if ($value == '0.0') {
|
2016-12-26 15:17:46 -08:00
|
|
|
$value = null;
|
|
|
|
}
|
|
|
|
$this->attributes['cost'] = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $value
|
|
|
|
*/
|
|
|
|
public function setNotesAttribute($value)
|
|
|
|
{
|
2016-12-29 14:02:18 -08:00
|
|
|
if ($value == '') {
|
2016-12-26 15:17:46 -08:00
|
|
|
$value = null;
|
|
|
|
}
|
|
|
|
$this->attributes['notes'] = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $value
|
|
|
|
*/
|
|
|
|
public function setCompletionDateAttribute($value)
|
|
|
|
{
|
2016-12-29 14:02:18 -08:00
|
|
|
if ($value == '' || $value == "0000-00-00") {
|
2016-12-26 15:17:46 -08:00
|
|
|
$value = null;
|
|
|
|
}
|
|
|
|
$this->attributes['completion_date'] = $value;
|
|
|
|
}
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
/**
|
|
|
|
* asset
|
|
|
|
* Get asset for this improvement
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
* @author Vincent Sposato <vincent.sposato@gmail.com>
|
|
|
|
* @version v1.0
|
|
|
|
*/
|
|
|
|
public function asset()
|
|
|
|
{
|
|
|
|
|
|
|
|
return $this->belongsTo('\App\Models\Asset', 'asset_id')
|
|
|
|
->withTrashed();
|
|
|
|
}
|
|
|
|
|
2016-06-22 17:04:47 -07:00
|
|
|
/**
|
|
|
|
* Get the admin who created the maintenance
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
* @author A. Gianotto <snipe@snipe.net>
|
|
|
|
* @version v3.0
|
|
|
|
*/
|
|
|
|
public function admin()
|
|
|
|
{
|
|
|
|
|
|
|
|
return $this->belongsTo('\App\Models\User', 'user_id')
|
|
|
|
->withTrashed();
|
|
|
|
}
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
public function supplier()
|
|
|
|
{
|
|
|
|
|
|
|
|
return $this->belongsTo('\App\Models\Supplier', 'supplier_id')
|
|
|
|
->withTrashed();
|
|
|
|
}
|
|
|
|
|
2018-08-01 18:24:52 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
/**
|
2016-06-22 17:04:47 -07:00
|
|
|
* -----------------------------------------------
|
|
|
|
* BEGIN QUERY SCOPES
|
|
|
|
* -----------------------------------------------
|
2018-07-16 14:13:07 -07:00
|
|
|
**/
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-06-22 17:04:47 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Query builder scope to order on admin user
|
|
|
|
*
|
2018-08-01 18:24:52 -07:00
|
|
|
* @param \Illuminate\Database\Query\Builder $query Query builder instance
|
|
|
|
* @param string $order Order
|
2016-06-22 17:04:47 -07:00
|
|
|
*
|
2018-08-01 18:24:52 -07:00
|
|
|
* @return \Illuminate\Database\Query\Builder Modified query builder
|
2016-06-22 17:04:47 -07:00
|
|
|
*/
|
|
|
|
public function scopeOrderAdmin($query, $order)
|
|
|
|
{
|
|
|
|
return $query->leftJoin('users', 'asset_maintenances.user_id', '=', 'users.id')
|
|
|
|
->orderBy('users.first_name', $order)
|
|
|
|
->orderBy('users.last_name', $order);
|
|
|
|
}
|
2018-03-05 16:26:40 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Query builder scope to order on asset tag
|
|
|
|
*
|
2018-08-01 18:24:52 -07:00
|
|
|
* @param \Illuminate\Database\Query\Builder $query Query builder instance
|
|
|
|
* @param string $order Order
|
2018-03-05 16:26:40 -08:00
|
|
|
*
|
2018-08-01 18:24:52 -07:00
|
|
|
* @return \Illuminate\Database\Query\Builder Modified query builder
|
2018-03-05 16:26:40 -08:00
|
|
|
*/
|
|
|
|
public function scopeOrderByTag($query, $order)
|
|
|
|
{
|
|
|
|
return $query->leftJoin('assets', 'asset_maintenances.asset_id', '=', 'assets.id')
|
|
|
|
->orderBy('assets.asset_tag', $order);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Query builder scope to order on asset tag
|
|
|
|
*
|
2018-08-01 18:24:52 -07:00
|
|
|
* @param \Illuminate\Database\Query\Builder $query Query builder instance
|
|
|
|
* @param string $order Order
|
2018-03-05 16:26:40 -08:00
|
|
|
*
|
2018-08-01 18:24:52 -07:00
|
|
|
* @return \Illuminate\Database\Query\Builder Modified query builder
|
2018-03-05 16:26:40 -08:00
|
|
|
*/
|
|
|
|
public function scopeOrderByAssetName($query, $order)
|
|
|
|
{
|
|
|
|
return $query->leftJoin('assets', 'asset_maintenances.asset_id', '=', 'assets.id')
|
|
|
|
->orderBy('assets.name', $order);
|
|
|
|
}
|
2018-08-01 18:24:52 -07:00
|
|
|
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|