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

137 lines
2.9 KiB
PHP
Raw Normal View History

<?php
namespace App\DataMapper;
use App\DataMapper\ClientSettings;
use App\DataMapper\CompanySettings;
use App\Models\Client;
use App\Utils\TranslationHelper;
/**
* ClientSettings
*
* Client settings are built as a superset of Company Settings
*
* If no client settings is specified, the default company setting is used.
*
* Client settings are passed down to the entity level where they can be further customized and then saved
* into the settings column of the entity, so there is no need to create additional entity level settings handlers.
*
*/
class ClientSettings extends BaseSettings
{
/**
* Settings which also have a parent company setting
*/
public $timezone_id;
public $date_format_id;
public $datetime_format_id;
public $military_time;
public $start_of_week;
public $financial_year_start;
2019-04-29 00:40:38 +02:00
public $payment_terms;
public $language_id;
public $currency_id;
public $default_task_rate;
public $send_reminders;
public $show_tasks_in_portal;
public $custom_message_dashboard;
public $custom_message_unpaid_invoice;
public $custom_message_paid_invoice;
public $custom_message_unapproved_quote;
public $show_currency_symbol;
public $show_currency_code;
public $inclusive_taxes;
2019-04-18 00:00:04 +02:00
public $custom_taxes1;
public $custom_taxes2;
public $lock_sent_invoices;
2019-04-23 14:22:13 +02:00
public $auto_bill;
2019-04-18 00:00:04 +02:00
2019-04-29 00:40:38 +02:00
/**
* Counter Variables
*/
public $invoice_number_prefix;
public $invoice_number_pattern;
public $invoice_number_counter;
2019-04-29 00:40:38 +02:00
public $quote_number_prefix;
public $quote_number_pattern;
public $quote_number_counter;
2019-04-29 00:40:38 +02:00
public $client_number_prefix;
public $client_number_pattern;
2019-04-29 14:14:11 +02:00
2019-04-29 00:40:38 +02:00
public $credit_number_prefix;
public $credit_number_pattern;
public $credit_number_counter;
2019-04-29 00:40:38 +02:00
public $shared_invoice_quote_counter;
2019-04-29 14:14:11 +02:00
public $counter_padding;
2019-04-29 00:40:38 +02:00
/**
2019-04-29 02:54:26 +02:00
* Settings which which are unique to client settings
*/
public $industry_id;
public $size_id;
public $invoice_email_list; //default comma separated list of contact ids to email
/**
* Cast object values and return entire class
* prevents missing properties from not being returned
* and always ensure an up to date class is returned
*
* @return \stdClass
*/
public function __construct($obj)
{
parent::__construct($obj);
}
/**
*
* Default Client Settings scaffold
*
* @return \stdClass
*
*/
public static function defaults() : \stdClass
{
return (object)[
'entity' => Client::class,
2019-04-29 00:40:38 +02:00
'industry_id' => NULL,
'size_id' => NULL,
'invoice_email_list' => NULL,
];
}
/**
* Merges settings from Company to Client
*
* @param \stdClass $company_settings
* @param \stdClass $client_settings
* @return \stdClass of merged settings
*/
public static function buildClientSettings($company_settings, $client_settings)
{
foreach($client_settings as $key => $value)
{
2019-04-24 12:01:40 +02:00
if(!isset($client_settings->{$key}) && property_exists($company_settings, $key)) {
$client_settings->{$key} = $company_settings->{$key};
2019-04-24 12:01:40 +02:00
}
}
return $client_settings;
}
}