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
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. 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;
|
|
|
|
|
2022-05-31 00:28:32 +02:00
|
|
|
use App\DataMapper\CompanySettings;
|
2020-10-28 11:10:49 +01:00
|
|
|
use App\Models\Presenters\VendorPresenter;
|
2022-06-06 05:28:10 +02:00
|
|
|
use App\Utils\Traits\AppSetup;
|
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;
|
2022-06-06 05:28:10 +02:00
|
|
|
use Illuminate\Support\Facades\Cache;
|
2022-06-06 14:27:17 +02:00
|
|
|
use Laracasts\Presenter\PresentableTrait;
|
2020-01-20 02:31:58 +01:00
|
|
|
|
2023-03-08 08:33:42 +01:00
|
|
|
/**
|
|
|
|
* App\Models\Vendor
|
|
|
|
*
|
|
|
|
* @property int $id
|
|
|
|
* @property int|null $created_at
|
|
|
|
* @property int|null $updated_at
|
|
|
|
* @property int|null $deleted_at
|
|
|
|
* @property int $user_id
|
|
|
|
* @property int|null $assigned_user_id
|
|
|
|
* @property int $company_id
|
|
|
|
* @property string|null $currency_id
|
|
|
|
* @property string|null $name
|
|
|
|
* @property string|null $address1
|
|
|
|
* @property string|null $address2
|
|
|
|
* @property string|null $city
|
|
|
|
* @property string|null $state
|
|
|
|
* @property string|null $postal_code
|
|
|
|
* @property string|null $country_id
|
|
|
|
* @property string|null $phone
|
|
|
|
* @property string|null $private_notes
|
|
|
|
* @property string|null $website
|
|
|
|
* @property bool $is_deleted
|
|
|
|
* @property string|null $vat_number
|
|
|
|
* @property string|null $transaction_name
|
|
|
|
* @property string|null $number
|
|
|
|
* @property string|null $custom_value1
|
|
|
|
* @property string|null $custom_value2
|
|
|
|
* @property string|null $custom_value3
|
|
|
|
* @property string|null $custom_value4
|
|
|
|
* @property string|null $vendor_hash
|
|
|
|
* @property string|null $public_notes
|
|
|
|
* @property string|null $id_number
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
|
|
|
|
* @property-read int|null $activities_count
|
|
|
|
* @property-read \App\Models\User|null $assigned_user
|
|
|
|
* @property-read \App\Models\Company $company
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $contacts
|
|
|
|
* @property-read int|null $contacts_count
|
|
|
|
* @property-read \App\Models\Country|null $country
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property-read int|null $documents_count
|
|
|
|
* @property-read mixed $hashed_id
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $primary_contact
|
|
|
|
* @property-read int|null $primary_contact_count
|
|
|
|
* @property-read \App\Models\User $user
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel company()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel exclude($columns)
|
|
|
|
* @method static \Database\Factories\VendorFactory factory($count = null, $state = [])
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor filter(\App\Filters\QueryFilters $filters)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor newModelQuery()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor newQuery()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor onlyTrashed()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor query()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel scope()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereAddress1($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereAddress2($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereAssignedUserId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereCity($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereCompanyId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereCountryId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereCreatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereCurrencyId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereCustomValue1($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereCustomValue2($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereCustomValue3($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereCustomValue4($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereDeletedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereIdNumber($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereIsDeleted($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereName($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereNumber($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor wherePhone($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor wherePostalCode($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor wherePrivateNotes($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor wherePublicNotes($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereState($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereTransactionName($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereUpdatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereUserId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereVatNumber($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereVendorHash($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor whereWebsite($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor withTrashed()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Vendor withoutTrashed()
|
2023-03-24 02:12:12 +01:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $contacts
|
2023-04-26 00:43:54 +02:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $primary_contact
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $contacts
|
2023-04-26 08:55:49 +02:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $primary_contact
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $contacts
|
2023-03-27 22:47:07 +02:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $primary_contact
|
2023-04-10 09:37:40 +02:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $contacts
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $primary_contact
|
2023-04-13 07:39:12 +02:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $contacts
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $primary_contact
|
2023-03-27 22:47:07 +02:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $contacts
|
2023-03-29 04:13:50 +02:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $primary_contact
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $contacts
|
2023-03-29 05:23:06 +02:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $primary_contact
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $contacts
|
2023-03-24 02:12:12 +01:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $primary_contact
|
2023-03-24 08:02:34 +01:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $contacts
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $primary_contact
|
2023-03-27 05:47:01 +02:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $contacts
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $primary_contact
|
2023-03-16 05:20:38 +01:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $contacts
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $primary_contact
|
2023-03-21 12:37:06 +01:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $contacts
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\VendorContact> $primary_contact
|
2023-03-08 08:33:42 +01:00
|
|
|
* @mixin \Eloquent
|
|
|
|
*/
|
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;
|
2022-06-06 05:28:10 +02:00
|
|
|
use AppSetup;
|
2022-06-06 14:27:17 +02:00
|
|
|
|
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 = [
|
2022-09-09 01:27:29 +02:00
|
|
|
'contacts.company',
|
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
|
|
|
|
2022-06-06 05:28:10 +02:00
|
|
|
public function currency()
|
|
|
|
{
|
|
|
|
$currencies = Cache::get('currencies');
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (! $currencies) {
|
2022-06-06 05:28:10 +02:00
|
|
|
$this->buildCache(true);
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2022-06-06 05:28:10 +02:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (! $this->currency_id) {
|
2022-09-18 01:59:58 +02:00
|
|
|
return $this->company->currency();
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2022-06-07 13:07:14 +02:00
|
|
|
|
2022-06-06 05:28:10 +02:00
|
|
|
return $currencies->filter(function ($item) {
|
|
|
|
return $item->id == $this->currency_id;
|
|
|
|
})->first();
|
|
|
|
}
|
|
|
|
|
2022-12-21 02:27:47 +01:00
|
|
|
public function timezone()
|
|
|
|
{
|
|
|
|
return $this->company->timezone();
|
|
|
|
}
|
|
|
|
|
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');
|
|
|
|
}
|
2022-05-31 00:28:32 +02:00
|
|
|
|
|
|
|
public function setCompanyDefaults($data, $entity_name) :array
|
|
|
|
{
|
|
|
|
$defaults = [];
|
|
|
|
|
|
|
|
if (! (array_key_exists('terms', $data) && strlen($data['terms']) > 1)) {
|
|
|
|
$defaults['terms'] = $this->getSetting($entity_name.'_terms');
|
|
|
|
} elseif (array_key_exists('terms', $data)) {
|
|
|
|
$defaults['terms'] = $data['terms'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! (array_key_exists('footer', $data) && strlen($data['footer']) > 1)) {
|
|
|
|
$defaults['footer'] = $this->getSetting($entity_name.'_footer');
|
|
|
|
} elseif (array_key_exists('footer', $data)) {
|
|
|
|
$defaults['footer'] = $data['footer'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strlen($this->public_notes) >= 1) {
|
|
|
|
$defaults['public_notes'] = $this->public_notes;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $defaults;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getSetting($setting)
|
|
|
|
{
|
|
|
|
if ((property_exists($this->company->settings, $setting) != false) && (isset($this->company->settings->{$setting}) !== false)) {
|
|
|
|
return $this->company->settings->{$setting};
|
2022-06-21 11:57:17 +02:00
|
|
|
} elseif (property_exists(CompanySettings::defaults(), $setting)) {
|
2022-05-31 00:28:32 +02:00
|
|
|
return CompanySettings::defaults()->{$setting};
|
|
|
|
}
|
|
|
|
|
|
|
|
return '';
|
|
|
|
}
|
2022-06-05 12:48:49 +02:00
|
|
|
|
2022-12-23 03:22:01 +01:00
|
|
|
public function getMergedSettings() :object
|
|
|
|
{
|
|
|
|
return $this->company->settings;
|
2023-03-18 08:24:56 +01:00
|
|
|
}
|
2022-12-23 03:22:01 +01:00
|
|
|
|
2022-06-05 12:48:49 +02:00
|
|
|
public function purchase_order_filepath($invitation)
|
2022-06-21 11:57:17 +02:00
|
|
|
{
|
2022-06-05 12:48:49 +02:00
|
|
|
$contact_key = $invitation->contact->contact_key;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-06-05 12:48:49 +02:00
|
|
|
return $this->company->company_key.'/'.$this->vendor_hash.'/'.$contact_key.'/purchase_orders/';
|
|
|
|
}
|
2022-06-06 14:27:17 +02:00
|
|
|
|
2022-08-05 00:08:19 +02:00
|
|
|
public function locale()
|
|
|
|
{
|
|
|
|
return $this->company->locale();
|
|
|
|
}
|
|
|
|
|
2022-06-06 14:27:17 +02:00
|
|
|
public function country()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Country::class);
|
|
|
|
}
|
2022-08-11 00:59:03 +02:00
|
|
|
|
|
|
|
public function date_format()
|
|
|
|
{
|
|
|
|
return $this->company->date_format();
|
|
|
|
}
|
2020-01-20 02:31:58 +01:00
|
|
|
}
|