mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
4bc92a7aa1
* fix for blank client settings * Force all custom fields to strings * Fixes for bulk actions * Fixes for company POST route.. * Change text from Bitcoin to CRYPTO * Implement default_gateway_type_id in transformer * use scopes for company filtering * Implement validation for portal_domain * Add Google API client * Add activities to company transformer
72 lines
1.4 KiB
PHP
72 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2019. 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);
|
|
|
|
$company->save();
|
|
|
|
return $company;
|
|
|
|
}
|
|
|
|
private function parseCustomFields($fields) :array
|
|
{
|
|
foreach($fields as &$value)
|
|
{
|
|
$value = (string)$value;
|
|
}
|
|
|
|
return $fields;
|
|
}
|
|
|
|
} |