2020-01-20 02:31:58 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-01-20 02:31:58 +01:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-01-20 02:31:58 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-01-20 02:31:58 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2020-10-28 11:10:49 +01:00
|
|
|
use App\Models\Presenters\VendorPresenter;
|
2020-09-23 02:16:19 +02:00
|
|
|
use App\Utils\Traits\GeneratesCounter;
|
2020-01-20 02:31:58 +01:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2020-10-19 23:18:09 +02:00
|
|
|
use Laracasts\Presenter\PresentableTrait;
|
2020-01-20 02:31:58 +01:00
|
|
|
|
|
|
|
class Vendor extends BaseModel
|
|
|
|
{
|
|
|
|
use SoftDeletes;
|
2020-01-20 05:53:40 +01:00
|
|
|
use Filterable;
|
2020-09-23 02:16:19 +02:00
|
|
|
use GeneratesCounter;
|
2020-10-19 23:18:09 +02:00
|
|
|
use PresentableTrait;
|
|
|
|
|
2020-01-20 02:31:58 +01:00
|
|
|
protected $fillable = [
|
|
|
|
'name',
|
2020-10-11 23:16:39 +02:00
|
|
|
'assigned_user_id',
|
2020-01-20 02:31:58 +01:00
|
|
|
'id_number',
|
|
|
|
'vat_number',
|
2020-10-29 01:17:10 +01:00
|
|
|
'phone',
|
2020-01-20 02:31:58 +01:00
|
|
|
'address1',
|
|
|
|
'address2',
|
|
|
|
'city',
|
|
|
|
'state',
|
|
|
|
'postal_code',
|
|
|
|
'country_id',
|
|
|
|
'private_notes',
|
2020-09-23 02:16:19 +02:00
|
|
|
'public_notes',
|
2020-01-20 02:31:58 +01:00
|
|
|
'currency_id',
|
|
|
|
'website',
|
|
|
|
'transaction_name',
|
|
|
|
'custom_value1',
|
|
|
|
'custom_value2',
|
|
|
|
'custom_value3',
|
|
|
|
'custom_value4',
|
2021-01-25 11:34:12 +01:00
|
|
|
'number',
|
2020-01-20 02:31:58 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
protected $casts = [
|
|
|
|
'country_id' => 'string',
|
|
|
|
'currency_id' => 'string',
|
|
|
|
'is_deleted' => 'boolean',
|
|
|
|
'updated_at' => 'timestamp',
|
|
|
|
'created_at' => 'timestamp',
|
|
|
|
'deleted_at' => 'timestamp',
|
|
|
|
];
|
|
|
|
|
2020-07-23 05:55:11 +02:00
|
|
|
protected $touches = [];
|
2020-07-16 13:01:39 +02:00
|
|
|
|
2020-02-06 10:35:51 +01:00
|
|
|
protected $with = [
|
2020-02-06 13:00:22 +01:00
|
|
|
// 'contacts',
|
2020-02-06 10:35:51 +01:00
|
|
|
];
|
|
|
|
|
2020-10-28 11:10:49 +01:00
|
|
|
protected $presenter = VendorPresenter::class;
|
2020-10-20 23:15:11 +02:00
|
|
|
|
2020-05-06 13:49:42 +02:00
|
|
|
public function getEntityType()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
return self::class;
|
2020-05-06 13:49:42 +02:00
|
|
|
}
|
|
|
|
|
2020-09-23 02:16:19 +02:00
|
|
|
public function primary_contact()
|
|
|
|
{
|
|
|
|
return $this->hasMany(VendorContact::class)->where('is_primary', true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-20 02:31:58 +01:00
|
|
|
public function documents()
|
|
|
|
{
|
|
|
|
return $this->morphMany(Document::class, 'documentable');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function assigned_user()
|
|
|
|
{
|
2021-09-08 01:29:20 +02:00
|
|
|
return $this->belongsTo(User::class, 'assigned_user_id', 'id')->withTrashed();
|
2020-01-20 02:31:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function contacts()
|
|
|
|
{
|
|
|
|
return $this->hasMany(VendorContact::class)->orderBy('is_primary', 'desc');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function activities()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Activity::class);
|
|
|
|
}
|
2020-07-16 23:50:02 +02:00
|
|
|
|
|
|
|
public function company()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Company::class);
|
|
|
|
}
|
2021-02-16 10:02:33 +01:00
|
|
|
|
|
|
|
public function user()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(User::class)->withTrashed();
|
|
|
|
}
|
2022-04-06 02:38:01 +02:00
|
|
|
|
|
|
|
public function translate_entity()
|
|
|
|
{
|
|
|
|
return ctrans('texts.vendor');
|
|
|
|
}
|
2020-01-20 02:31:58 +01:00
|
|
|
}
|