1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Models/Client.php

668 lines
19 KiB
PHP
Raw Normal View History

<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02: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)
2019-05-11 05:32:07 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-11 05:32:07 +02:00
*/
namespace App\Models;
use App\DataMapper\ClientSettings;
2019-04-29 02:54:26 +02:00
use App\DataMapper\CompanySettings;
use App\DataMapper\FeesAndLimits;
use App\Models\CompanyGateway;
2021-08-01 07:46:40 +02:00
use App\Models\Expense;
2020-10-28 11:10:49 +01:00
use App\Models\Presenters\ClientPresenter;
2021-08-01 07:46:40 +02:00
use App\Models\Project;
use App\Models\Quote;
use App\Models\Task;
use App\Services\Client\ClientService;
2021-06-10 05:56:02 +02:00
use App\Utils\Traits\AppSetup;
2022-04-03 11:39:55 +02:00
use App\Utils\Traits\ClientGroupSettingsSaver;
2019-06-03 07:31:20 +02:00
use App\Utils\Traits\GeneratesCounter;
2019-04-30 08:02:39 +02:00
use App\Utils\Traits\MakesDates;
use App\Utils\Traits\MakesHash;
2020-10-28 11:10:49 +01:00
use Exception;
use Illuminate\Contracts\Translation\HasLocalePreference;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Support\Facades\Cache;
use Laracasts\Presenter\PresentableTrait;
class Client extends BaseModel implements HasLocalePreference
{
use PresentableTrait;
use MakesHash;
2019-04-30 08:02:39 +02:00
use MakesDates;
use SoftDeletes;
2019-03-28 11:07:45 +01:00
use Filterable;
2019-06-03 07:31:20 +02:00
use GeneratesCounter;
2021-06-10 05:56:02 +02:00
use AppSetup;
2022-04-03 11:39:55 +02:00
use ClientGroupSettingsSaver;
2020-10-28 11:10:49 +01:00
protected $presenter = ClientPresenter::class;
2019-07-30 00:28:38 +02:00
protected $hidden = [
'id',
2019-07-30 00:28:38 +02:00
'private_notes',
'user_id',
'company_id',
'last_login',
];
protected $fillable = [
'assigned_user_id',
'name',
'website',
'private_notes',
'industry_id',
'size_id',
'address1',
'address2',
'city',
'state',
'postal_code',
'country_id',
'custom_value1',
'custom_value2',
'custom_value3',
'custom_value4',
'shipping_address1',
'shipping_address2',
'shipping_city',
'shipping_state',
'shipping_postal_code',
'shipping_country_id',
'settings',
'vat_number',
'id_number',
2019-10-07 22:49:16 +02:00
'group_settings_id',
'public_notes',
2021-01-25 11:34:12 +01:00
'phone',
'number',
];
2019-04-29 02:54:26 +02:00
protected $with = [
2021-10-10 11:37:57 +02:00
'gateway_tokens',
'documents',
'contacts.company',
2019-04-29 02:54:26 +02:00
];
protected $casts = [
'is_deleted' => 'boolean',
'country_id' => 'string',
'settings' => 'object',
'updated_at' => 'timestamp',
'created_at' => 'timestamp',
'deleted_at' => 'timestamp',
];
2020-07-23 05:55:11 +02:00
protected $touches = [];
/**
* Whitelisted fields for using from query parameters on subscriptions request.
*
* @var string[]
*/
public static $subscriptions_fillable = [
'assigned_user_id',
'address1',
'address2',
'city',
'state',
'postal_code',
'country_id',
'custom_value1',
'custom_value2',
'custom_value3',
'custom_value4',
'shipping_address1',
'shipping_address2',
'shipping_city',
'shipping_state',
'shipping_postal_code',
'shipping_country_id',
'payment_terms',
'vat_number',
'id_number',
'public_notes',
'phone',
];
public function getEntityType()
{
return self::class;
}
public function ledger()
{
2020-06-20 01:23:41 +02:00
return $this->hasMany(CompanyLedger::class)->orderBy('id', 'desc');
}
2020-07-01 07:51:19 +02:00
public function company_ledger()
{
return $this->morphMany(CompanyLedger::class, 'company_ledgerable');
}
2019-09-08 12:39:13 +02:00
public function gateway_tokens()
{
return $this->hasMany(ClientGatewayToken::class)->orderBy('is_default', 'DESC');
2019-09-08 12:39:13 +02:00
}
2021-08-01 07:46:40 +02:00
public function expenses()
{
return $this->hasMany(Expense::class)->withTrashed();
}
public function projects()
{
return $this->hasMany(Project::class)->withTrashed();
}
2019-09-13 00:33:48 +02:00
/**
* Retrieves the specific payment token per
* gateway - per payment method.
2019-09-13 00:33:48 +02:00
*
* Allows the storage of multiple tokens
* per client per gateway per payment_method
*
2019-09-25 04:07:33 +02:00
* @param int $company_gateway_id The company gateway ID
2019-09-13 00:33:48 +02:00
* @param int $payment_method_id The payment method ID
* @return ClientGatewayToken The client token record
*/
2019-09-25 04:07:33 +02:00
public function gateway_token($company_gateway_id, $payment_method_id)
2019-09-13 00:33:48 +02:00
{
2019-09-25 04:07:33 +02:00
return $this->gateway_tokens()
->whereCompanyGatewayId($company_gateway_id)
->whereGatewayTypeId($payment_method_id)
2019-09-13 00:33:48 +02:00
->first();
}
public function credits()
{
return $this->hasMany(Credit::class)->withTrashed();
}
public function activities()
{
2022-04-27 08:52:29 +02:00
return $this->hasMany(Activity::class)->take(50)->orderBy('id', 'desc');
}
public function contacts()
{
return $this->hasMany(ClientContact::class)->orderBy('is_primary', 'desc');
}
public function primary_contact()
{
return $this->hasMany(ClientContact::class)->where('is_primary', true);
}
public function company()
{
return $this->belongsTo(Company::class);
}
public function user()
{
2021-09-04 05:35:53 +02:00
return $this->belongsTo(User::class)->withTrashed();
}
public function assigned_user()
{
return $this->belongsTo(User::class, 'assigned_user_id', 'id')->withTrashed();
}
2019-01-26 10:34:38 +01:00
public function country()
{
return $this->belongsTo(Country::class);
}
public function invoices()
{
2020-07-07 09:54:21 +02:00
return $this->hasMany(Invoice::class)->withTrashed();
2019-01-26 10:34:38 +01:00
}
2021-08-01 07:46:40 +02:00
public function quotes()
{
return $this->hasMany(Quote::class)->withTrashed();
}
public function tasks()
{
return $this->hasMany(Task::class)->withTrashed();
}
2021-07-02 08:36:14 +02:00
public function recurring_invoices()
{
return $this->hasMany(RecurringInvoice::class)->withTrashed();
}
2022-01-30 00:46:39 +01:00
public function recurring_expenses()
{
return $this->hasMany(RecurringExpense::class)->withTrashed();
}
2019-01-26 10:34:38 +01:00
public function shipping_country()
{
return $this->belongsTo(Country::class, 'shipping_country_id', 'id');
}
2020-08-24 04:45:53 +02:00
public function system_logs()
{
2022-05-12 23:52:02 +02:00
return $this->hasMany(SystemLog::class)->take(50)->orderBy('id', 'desc');
2020-08-24 04:45:53 +02:00
}
2019-04-24 02:22:02 +02:00
public function timezone()
{
2019-09-11 07:32:47 +02:00
return Timezone::find($this->getSetting('timezone_id'));
2019-04-24 02:22:02 +02:00
}
public function language()
{
$languages = Cache::get('languages');
if (! $languages) {
2021-06-10 05:56:02 +02:00
$this->buildCache(true);
}
2021-06-10 05:56:02 +02:00
return $languages->filter(function ($item) {
return $item->id == $this->getSetting('language_id');
})->first();
}
public function locale()
{
if (! $this->language()) {
2022-01-17 08:53:39 +01:00
return 'en';
}
2022-01-17 08:53:39 +01:00
return $this->language()->locale ?: 'en';
}
public function date_format()
{
$date_formats = Cache::get('date_formats');
if (! $date_formats) {
2021-12-09 06:34:23 +01:00
$this->buildCache(true);
}
return $date_formats->filter(function ($item) {
return $item->id == $this->getSetting('date_format_id');
})->first()->format;
}
2019-08-28 04:36:53 +02:00
public function currency()
{
$currencies = Cache::get('currencies');
if (! $currencies) {
2021-06-10 05:56:02 +02:00
$this->buildCache(true);
}
2021-06-10 05:56:02 +02:00
return $currencies->filter(function ($item) {
return $item->id == $this->getSetting('currency_id');
})->first();
2019-08-28 04:36:53 +02:00
}
public function service() :ClientService
{
return new ClientService($this);
}
public function updateBalance($amount) :ClientService
{
return $this->service()->updateBalance($amount);
}
/**
* Adjusts client "balances" when a client
* makes a payment that goes on file, but does
* not effect the client.balance record.
*
* @param float $amount Adjustment amount
* @return Client
*/
// public function processUnappliedPayment($amount) :Client
// {
// return $this->service()->updatePaidToDate($amount)
// ->adjustCreditBalance($amount)
// ->save();
// }
2019-09-12 05:23:44 +02:00
/**
* Returns the entire filtered set
2019-09-12 05:23:44 +02:00
* of settings which have been merged from
* Client > Group > Company levels.
*
* @return stdClass stdClass object of settings
2019-09-12 05:23:44 +02:00
*/
public function getMergedSettings() :object
2019-04-29 02:54:26 +02:00
{
if ($this->group_settings !== null) {
2019-09-19 07:50:05 +02:00
$group_settings = ClientSettings::buildClientSettings($this->group_settings->settings, $this->settings);
2019-09-11 07:32:47 +02:00
2019-09-19 07:50:05 +02:00
return ClientSettings::buildClientSettings($this->company->settings, $group_settings);
2019-09-11 07:32:47 +02:00
}
return CompanySettings::setProperties(ClientSettings::buildClientSettings($this->company->settings, $this->settings));
}
2019-09-12 05:23:44 +02:00
/**
* Returns a single setting
* which cascades from
* Client > Group > Company.
*
2019-09-12 05:23:44 +02:00
* @param string $setting The Setting parameter
* @return mixed The setting requested
*/
2019-09-10 12:25:29 +02:00
public function getSetting($setting)
{
2019-09-19 07:50:05 +02:00
/*Client Settings*/
if ($this->settings && property_exists($this->settings, $setting) && isset($this->settings->{$setting})) {
/*need to catch empty string here*/
if (is_string($this->settings->{$setting}) && (iconv_strlen($this->settings->{$setting}) >= 1)) {
2019-09-19 07:50:05 +02:00
return $this->settings->{$setting};
} elseif (is_bool($this->settings->{$setting})) {
2021-09-11 00:43:40 +02:00
return $this->settings->{$setting};
}
2019-09-19 07:50:05 +02:00
}
2019-09-10 12:25:29 +02:00
2019-10-08 13:14:23 +02:00
/*Group Settings*/
if ($this->group_settings && (property_exists($this->group_settings->settings, $setting) !== false) && (isset($this->group_settings->settings->{$setting}) !== false)) {
return $this->group_settings->settings->{$setting};
2019-09-19 07:50:05 +02:00
}
2019-10-08 13:14:23 +02:00
/*Company Settings*/
elseif ((property_exists($this->company->settings, $setting) != false) && (isset($this->company->settings->{$setting}) !== false)) {
2019-09-11 05:46:23 +02:00
return $this->company->settings->{$setting};
} elseif (property_exists(CompanySettings::defaults(), $setting)) {
return CompanySettings::defaults()->{$setting};
}
return '';
// throw new \Exception("Settings corrupted", 1);
2019-10-08 13:14:23 +02:00
}
public function getSettingEntity($setting)
{
/*Client Settings*/
if ($this->settings && (property_exists($this->settings, $setting) !== false) && (isset($this->settings->{$setting}) !== false)) {
2019-10-08 13:14:23 +02:00
/*need to catch empty string here*/
if (is_string($this->settings->{$setting}) && (iconv_strlen($this->settings->{$setting}) >= 1)) {
2019-10-08 13:14:23 +02:00
return $this;
}
}
/*Group Settings*/
if ($this->group_settings && (property_exists($this->group_settings->settings, $setting) !== false) && (isset($this->group_settings->settings->{$setting}) !== false)) {
return $this->group_settings;
2019-10-08 13:14:23 +02:00
}
/*Company Settings*/
if ((property_exists($this->company->settings, $setting) != false) && (isset($this->company->settings->{$setting}) !== false)) {
2019-10-08 13:14:23 +02:00
return $this->company;
}
2020-10-28 11:10:49 +01:00
throw new Exception('Could not find a settings object', 1);
2019-09-10 12:25:29 +02:00
}
2019-04-28 07:31:32 +02:00
public function documents()
{
return $this->morphMany(Document::class, 'documentable');
}
2019-09-10 04:30:43 +02:00
public function group_settings()
{
return $this->belongsTo(GroupSetting::class);
}
2019-09-13 07:52:01 +02:00
/**
* Returns the first Credit Card Gateway.
*
* @return null|CompanyGateway The Priority Credit Card gateway
2019-09-13 07:52:01 +02:00
*/
public function getCreditCardGateway() :?CompanyGateway
{
$pms = $this->service()->getPaymentMethods(-1);
foreach ($pms as $pm) {
if ($pm['gateway_type_id'] == GatewayType::CREDIT_CARD) {
$cg = CompanyGateway::find($pm['company_gateway_id']);
if ($cg && ! property_exists($cg->fees_and_limits, GatewayType::CREDIT_CARD)) {
$fees_and_limits = $cg->fees_and_limits;
$fees_and_limits->{GatewayType::CREDIT_CARD} = new FeesAndLimits;
$cg->fees_and_limits = $fees_and_limits;
$cg->save();
}
2019-09-13 07:52:01 +02:00
if ($cg && $cg->fees_and_limits->{GatewayType::CREDIT_CARD}->is_enabled) {
return $cg;
}
}
}
2019-09-13 07:52:01 +02:00
return null;
2019-09-13 07:52:01 +02:00
}
//todo refactor this - it is only searching for existing tokens
2020-07-03 10:14:15 +02:00
public function getBankTransferGateway() :?CompanyGateway
2019-09-25 04:07:33 +02:00
{
$pms = $this->service()->getPaymentMethods(-1);
2020-07-03 10:14:15 +02:00
if ($this->currency()->code == 'USD' && in_array(GatewayType::BANK_TRANSFER, array_column($pms, 'gateway_type_id'))) {
foreach ($pms as $pm) {
if ($pm['gateway_type_id'] == GatewayType::BANK_TRANSFER) {
$cg = CompanyGateway::find($pm['company_gateway_id']);
if ($cg && ! property_exists($cg->fees_and_limits, GatewayType::BANK_TRANSFER)) {
$fees_and_limits = $cg->fees_and_limits;
$fees_and_limits->{GatewayType::BANK_TRANSFER} = new FeesAndLimits;
$cg->fees_and_limits = $fees_and_limits;
$cg->save();
}
if ($cg && $cg->fees_and_limits->{GatewayType::BANK_TRANSFER}->is_enabled) {
return $cg;
}
}
2020-07-03 10:14:15 +02:00
}
}
if ($this->currency()->code == 'EUR' && (in_array(GatewayType::BANK_TRANSFER, array_column($pms, 'gateway_type_id')) || in_array(GatewayType::SEPA, array_column($pms, 'gateway_type_id')))) {
foreach ($pms as $pm) {
if ($pm['gateway_type_id'] == GatewayType::SEPA) {
$cg = CompanyGateway::find($pm['company_gateway_id']);
if ($cg && $cg->fees_and_limits->{GatewayType::SEPA}->is_enabled) {
return $cg;
}
}
2020-07-03 10:14:15 +02:00
}
}
if ($this->country && $this->country->iso_3166_3 == 'GBR' && in_array(GatewayType::DIRECT_DEBIT, array_column($pms, 'gateway_type_id'))) {
foreach ($pms as $pm) {
if ($pm['gateway_type_id'] == GatewayType::DIRECT_DEBIT) {
$cg = CompanyGateway::find($pm['company_gateway_id']);
if ($cg && $cg->fees_and_limits->{GatewayType::DIRECT_DEBIT}->is_enabled) {
return $cg;
}
}
}
}
2020-07-03 10:14:15 +02:00
return null;
2019-09-25 04:07:33 +02:00
}
2020-07-03 02:56:36 +02:00
2020-07-03 14:39:29 +02:00
public function getBankTransferMethodType()
{
if ($this->currency()->code == 'USD') {
return GatewayType::BANK_TRANSFER;
}
if ($this->currency()->code == 'EUR') {
return GatewayType::SEPA;
}
if ($this->currency()->code == 'GBP') {
return GatewayType::DIRECT_DEBIT;
}
2020-07-03 14:39:29 +02:00
}
2020-07-03 10:14:15 +02:00
public function getCurrencyCode()
2020-07-03 02:56:36 +02:00
{
2020-07-03 10:14:15 +02:00
if ($this->currency()) {
return $this->currency()->code;
}
2020-07-03 02:56:36 +02:00
2020-07-03 10:14:15 +02:00
return 'USD';
2020-07-03 02:56:36 +02:00
}
public function validGatewayForAmount($fees_and_limits_for_payment_type, $amount) :bool
2020-10-12 06:10:34 +02:00
{
2020-11-25 15:19:52 +01:00
if (isset($fees_and_limits_for_payment_type)) {
$fees_and_limits = $fees_and_limits_for_payment_type;
} else {
return true;
}
2020-10-12 06:10:34 +02:00
2020-11-25 15:19:52 +01:00
if ((property_exists($fees_and_limits, 'min_limit')) && $fees_and_limits->min_limit !== null && $fees_and_limits->min_limit != -1 && $amount < $fees_and_limits->min_limit) {
return false;
}
2020-10-12 06:10:34 +02:00
2020-11-25 15:19:52 +01:00
if ((property_exists($fees_and_limits, 'max_limit')) && $fees_and_limits->max_limit !== null && $fees_and_limits->max_limit != -1 && $amount > $fees_and_limits->max_limit) {
return false;
}
2020-10-12 06:10:34 +02:00
2020-11-25 15:19:52 +01:00
return true;
2020-10-12 06:10:34 +02:00
}
public function preferredLocale()
{
$languages = Cache::get('languages');
if (! $languages) {
2021-06-10 05:56:02 +02:00
$this->buildCache(true);
}
return $languages->filter(function ($item) {
return $item->id == $this->getSetting('language_id');
})->first()->locale;
}
2021-10-20 05:05:46 +02:00
public function backup_path()
{
return $this->company->company_key.'/'.$this->client_hash.'/backups';
}
2021-06-12 13:50:01 +02:00
public function invoice_filepath($invitation)
{
2021-06-12 13:50:01 +02:00
$contact_key = $invitation->contact->contact_key;
2021-06-12 13:50:01 +02:00
return $this->company->company_key.'/'.$this->client_hash.'/'.$contact_key.'/invoices/';
}
2021-06-12 13:50:01 +02:00
public function quote_filepath($invitation)
{
2021-06-12 13:50:01 +02:00
$contact_key = $invitation->contact->contact_key;
2021-06-12 13:50:01 +02:00
return $this->company->company_key.'/'.$this->client_hash.'/'.$contact_key.'/quotes/';
}
2021-06-12 13:50:01 +02:00
public function credit_filepath($invitation)
{
2021-06-12 13:50:01 +02:00
$contact_key = $invitation->contact->contact_key;
2021-06-12 13:50:01 +02:00
return $this->company->company_key.'/'.$this->client_hash.'/'.$contact_key.'/credits/';
}
2021-06-12 13:50:01 +02:00
public function recurring_invoice_filepath($invitation)
{
2021-06-12 13:50:01 +02:00
$contact_key = $invitation->contact->contact_key;
2021-06-12 13:50:01 +02:00
return $this->company->company_key.'/'.$this->client_hash.'/'.$contact_key.'/recurring_invoices/';
}
public function company_filepath()
{
return $this->company->company_key.'/';
}
public function document_filepath()
{
return $this->company->company_key.'/documents/';
}
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;
}
2020-06-12 14:48:54 +02:00
public function payments()
{
2021-08-01 07:46:40 +02:00
return $this->hasMany(Payment::class)->withTrashed();
2020-06-12 14:48:54 +02:00
}
2021-06-10 23:34:03 +02:00
public function timezone_offset()
{
2021-06-11 23:41:02 +02:00
$offset = 0;
2021-06-10 23:34:03 +02:00
$entity_send_time = $this->getSetting('entity_send_time');
if ($entity_send_time == 0) {
2021-06-10 23:34:03 +02:00
return 0;
}
2021-06-10 23:34:03 +02:00
$timezone = $this->company->timezone();
2021-06-11 23:41:02 +02:00
$offset -= $timezone->utc_offset;
$offset += ($entity_send_time * 3600);
2021-06-10 23:34:03 +02:00
return $offset;
}
2022-03-10 01:32:04 +01:00
public function transaction_event()
{
2022-03-10 02:17:05 +01:00
$client = $this->fresh();
2022-03-10 01:32:04 +01:00
return [
'client_id' => $client->id,
'client_balance' => $client->balance ?: 0,
2022-03-10 02:17:05 +01:00
'client_paid_to_date' => $client->paid_to_date ?: 0,
'client_credit_balance' => $client->credit_balance ?: 0,
2022-03-10 01:32:04 +01:00
];
}
2022-04-06 02:38:01 +02:00
public function translate_entity()
{
return ctrans('texts.client');
}
}