mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
f0176b6e37
* remove jobs table * Working on notifications * Working on notifications * Fix for pdf_variables * Fixes for notification * Fixes for viewing invoice with NO company custom_fields * Fixes for company settings object creation * Working on group settings * Fixes for storing the correct currency_id on client creation * Fix for invoicetransformer * fix for store client * Update PaymentAppliedValidAmount.php (#38) * update company schema descriptions * Update PaymentAppliedValidAmount.php Co-authored-by: David Bomba <turbo124@gmail.com> * Cast invoice designs to the Hashes * Fixes for setting invoice/credit/design_ids to hashed * Fixes for quote transformer Co-authored-by: michael-hampton <michaelhamptondesign@yahoo.com>
71 lines
1.6 KiB
PHP
71 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Repositories;
|
|
|
|
use App\Models\Company;
|
|
use Illuminate\Http\Request;
|
|
|
|
/**
|
|
* CompanyRepository
|
|
*/
|
|
class CompanyRepository extends BaseRepository
|
|
{
|
|
public function __construct()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Gets the class name.
|
|
*
|
|
* @return string The class name.
|
|
*/
|
|
public function getClassName()
|
|
{
|
|
return Company::class;
|
|
}
|
|
|
|
/**
|
|
* Saves the client and its contacts
|
|
*
|
|
* @param array $data The data
|
|
* @param \App\Models\Company $client The Company
|
|
*
|
|
* @return Client|\App\Models\Company|null Company Object
|
|
*/
|
|
public function save(array $data, Company $company) : ?Company
|
|
{
|
|
if (isset($data['custom_fields']) && is_array($data['custom_fields'])) {
|
|
$data['custom_fields'] = $this->parseCustomFields($data['custom_fields']);
|
|
}
|
|
|
|
$company->fill($data);
|
|
|
|
if(array_key_exists('settings', $data))
|
|
$company->saveSettings($data['settings'], $company);
|
|
|
|
$company->save();
|
|
|
|
//\Log::error(print_r($company->settings,1));
|
|
|
|
return $company;
|
|
}
|
|
|
|
private function parseCustomFields($fields) :array
|
|
{
|
|
foreach ($fields as &$value) {
|
|
$value = (string)$value;
|
|
}
|
|
|
|
return $fields;
|
|
}
|
|
}
|