1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Models/Vendor.php

108 lines
2.3 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
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;
use Illuminate\Database\Eloquent\SoftDeletes;
2020-10-19 23:18:09 +02:00
use Laracasts\Presenter\PresentableTrait;
class Vendor extends BaseModel
{
use SoftDeletes;
use Filterable;
2020-09-23 02:16:19 +02:00
use GeneratesCounter;
2020-10-19 23:18:09 +02:00
use PresentableTrait;
protected $fillable = [
'name',
'assigned_user_id',
'id_number',
'vat_number',
'phone',
'address1',
'address2',
'city',
'state',
'postal_code',
'country_id',
'private_notes',
2020-09-23 02:16:19 +02:00
'public_notes',
'currency_id',
'website',
'transaction_name',
'custom_value1',
'custom_value2',
'custom_value3',
'custom_value4',
2021-01-25 11:34:12 +01:00
'number',
];
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 = [];
protected $with = [
// 'contacts',
];
2020-10-28 11:10:49 +01:00
protected $presenter = VendorPresenter::class;
public function getEntityType()
{
return self::class;
}
2020-09-23 02:16:19 +02:00
public function primary_contact()
{
return $this->hasMany(VendorContact::class)->where('is_primary', true);
}
public function documents()
{
return $this->morphMany(Document::class, 'documentable');
}
public function assigned_user()
{
return $this->belongsTo(User::class, 'assigned_user_id', 'id');
}
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);
}
public function user()
{
return $this->belongsTo(User::class)->withTrashed();
}
}