201 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			201 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Models;
 | 
						|
 | 
						|
use App\Http\Traits\UniqueUndeletedTrait;
 | 
						|
use App\Models\Traits\Searchable;
 | 
						|
use Illuminate\Database\Eloquent\Factories\HasFactory;
 | 
						|
use Illuminate\Database\Eloquent\SoftDeletes;
 | 
						|
use Watson\Validating\ValidatingTrait;
 | 
						|
 | 
						|
class Supplier extends SnipeModel
 | 
						|
{
 | 
						|
    use HasFactory;
 | 
						|
    use SoftDeletes;
 | 
						|
 | 
						|
    protected $table = 'suppliers';
 | 
						|
 | 
						|
    protected $rules = [
 | 
						|
        'name'               => 'required|min:1|max:255|unique_undeleted',
 | 
						|
        'fax'               => 'min:7|max:35|nullable',
 | 
						|
        'phone'             => 'min:7|max:35|nullable',
 | 
						|
        'contact'           => 'max:100|nullable',
 | 
						|
        'notes'             => 'max:191|nullable', // Default string length is 191 characters..
 | 
						|
        'email'             => 'email|max:150|nullable',
 | 
						|
        'address'            => 'max:250|nullable',
 | 
						|
        'address2'           => 'max:250|nullable',
 | 
						|
        'city'               => 'max:191|nullable',
 | 
						|
        'state'              => 'min:2|max:191|nullable',
 | 
						|
        'country'            => 'min:2|max:191|nullable',
 | 
						|
        'zip'               => 'max:10|nullable',
 | 
						|
        'url'               => 'sometimes|nullable|string|max:250',
 | 
						|
    ];
 | 
						|
 | 
						|
    /**
 | 
						|
     * Whether the model should inject it's identifier to the unique
 | 
						|
     * validation rules before attempting validation. If this property
 | 
						|
     * is not set in the model it will default to true.
 | 
						|
     *
 | 
						|
     * @var bool
 | 
						|
     */
 | 
						|
    protected $injectUniqueIdentifier = true;
 | 
						|
    use ValidatingTrait;
 | 
						|
    use UniqueUndeletedTrait;
 | 
						|
    use Searchable;
 | 
						|
 | 
						|
    /**
 | 
						|
     * The attributes that should be included when searching the model.
 | 
						|
     *
 | 
						|
     * @var array
 | 
						|
     */
 | 
						|
    protected $searchableAttributes = ['name'];
 | 
						|
 | 
						|
    /**
 | 
						|
     * The relations and their attributes that should be included when searching the model.
 | 
						|
     *
 | 
						|
     * @var array
 | 
						|
     */
 | 
						|
    protected $searchableRelations = [];
 | 
						|
 | 
						|
    /**
 | 
						|
     * The attributes that are mass assignable.
 | 
						|
     *
 | 
						|
     * @var array
 | 
						|
     */
 | 
						|
    protected $fillable = ['name', 'address', 'address2', 'city', 'state', 'country', 'zip', 'phone', 'fax', 'email', 'contact', 'url', 'notes'];
 | 
						|
 | 
						|
    /**
 | 
						|
     * Eager load counts
 | 
						|
     *
 | 
						|
     * We do this to eager load the "count" of seats from the controller.
 | 
						|
     * Otherwise calling "count()" on each model results in n+1.
 | 
						|
     *
 | 
						|
     * @author A. Gianotto <snipe@snipe.net>
 | 
						|
     * @since [v4.0]
 | 
						|
     * @return \Illuminate\Database\Eloquent\Relations\Relation
 | 
						|
     */
 | 
						|
    public function assetsRelation()
 | 
						|
    {
 | 
						|
        return $this->hasMany(Asset::class)->whereNull('deleted_at')->selectRaw('supplier_id, count(*) as count')->groupBy('supplier_id');
 | 
						|
    }
 | 
						|
    
 | 
						|
 | 
						|
    /**
 | 
						|
     * Establishes the supplier -> assets relationship
 | 
						|
     *
 | 
						|
     * @author A. Gianotto <snipe@snipe.net>
 | 
						|
     * @since [v1.0]
 | 
						|
     * @return \Illuminate\Database\Eloquent\Relations\Relation
 | 
						|
     */
 | 
						|
    public function assets()
 | 
						|
    {
 | 
						|
        return $this->hasMany(\App\Models\Asset::class, 'supplier_id');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Establishes the supplier -> accessories relationship
 | 
						|
     *
 | 
						|
     * @author A. Gianotto <snipe@snipe.net>
 | 
						|
     * @since [v1.0]
 | 
						|
     * @return \Illuminate\Database\Eloquent\Relations\Relation
 | 
						|
     */
 | 
						|
    public function accessories()
 | 
						|
    {
 | 
						|
        return $this->hasMany(\App\Models\Accessory::class, 'supplier_id');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Establishes the supplier -> component relationship
 | 
						|
     *
 | 
						|
     * @author A. Gianotto <snipe@snipe.net>
 | 
						|
     * @since [v6.1.1]
 | 
						|
     * @return \Illuminate\Database\Eloquent\Relations\Relation
 | 
						|
     */
 | 
						|
    public function components()
 | 
						|
    {
 | 
						|
        return $this->hasMany(\App\Models\Component::class, 'supplier_id');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Establishes the supplier -> component relationship
 | 
						|
     *
 | 
						|
     * @author A. Gianotto <snipe@snipe.net>
 | 
						|
     * @since [v6.1.1]
 | 
						|
     * @return \Illuminate\Database\Eloquent\Relations\Relation
 | 
						|
     */
 | 
						|
    public function consumables()
 | 
						|
    {
 | 
						|
        return $this->hasMany(\App\Models\Consumable::class, 'supplier_id');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Establishes the supplier -> asset maintenances relationship
 | 
						|
     *
 | 
						|
     * @author A. Gianotto <snipe@snipe.net>
 | 
						|
     * @since [v1.0]
 | 
						|
     * @return \Illuminate\Database\Eloquent\Relations\Relation
 | 
						|
     */
 | 
						|
    public function asset_maintenances()
 | 
						|
    {
 | 
						|
        return $this->hasMany(\App\Models\AssetMaintenance::class, 'supplier_id');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Return the number of assets by supplier
 | 
						|
     *
 | 
						|
     * @author A. Gianotto <snipe@snipe.net>
 | 
						|
     * @since [v1.0]
 | 
						|
     * @return int
 | 
						|
     */
 | 
						|
    public function num_assets()
 | 
						|
    {
 | 
						|
        if ($this->assetsRelation->first()) {
 | 
						|
            return $this->assetsRelation->first()->count;
 | 
						|
        }
 | 
						|
 | 
						|
        return 0;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Establishes the supplier -> license relationship
 | 
						|
     *
 | 
						|
     * @author A. Gianotto <snipe@snipe.net>
 | 
						|
     * @since [v1.0]
 | 
						|
     * @return \Illuminate\Database\Eloquent\Relations\Relation
 | 
						|
     */
 | 
						|
    public function licenses()
 | 
						|
    {
 | 
						|
        return $this->hasMany(\App\Models\License::class, 'supplier_id');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Return the number of licenses by supplier
 | 
						|
     *
 | 
						|
     * @author A. Gianotto <snipe@snipe.net>
 | 
						|
     * @since [v1.0]
 | 
						|
     * @return int
 | 
						|
     */
 | 
						|
    public function num_licenses()
 | 
						|
    {
 | 
						|
        return $this->licenses()->count();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Add http to the url in suppliers if the user didn't give one
 | 
						|
     *
 | 
						|
     * @todo this should be handled via validation, no?
 | 
						|
     *
 | 
						|
     * @author A. Gianotto <snipe@snipe.net>
 | 
						|
     * @since [v3.0]
 | 
						|
     * @return \Illuminate\Database\Eloquent\Relations\Relation
 | 
						|
     */
 | 
						|
    public function addhttp($url)
 | 
						|
    {
 | 
						|
        if (($url!='') && (! preg_match('~^(?:f|ht)tps?://~i', $url))) {
 | 
						|
            $url = 'http://'.$url;
 | 
						|
        }
 | 
						|
 | 
						|
        return $url;
 | 
						|
    }
 | 
						|
}
 |