2019-06-17 02:15:42 +02:00
|
|
|
<?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
|
|
|
|
{
|
|
|
|
|
2019-11-26 10:11:22 +01:00
|
|
|
if(isset($data['custom_fields']))
|
|
|
|
$data['custom_fields'] = $this->parseCustomFields($data['custom_fields']);
|
|
|
|
|
2019-06-17 02:15:42 +02:00
|
|
|
$company->fill($data);
|
|
|
|
|
|
|
|
$company->save();
|
|
|
|
|
|
|
|
return $company;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-11-26 10:11:22 +01:00
|
|
|
private function parseCustomFields($fields) :array
|
|
|
|
{
|
|
|
|
foreach($fields as &$value)
|
|
|
|
{
|
|
|
|
$value = (string)$value;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $fields;
|
|
|
|
}
|
|
|
|
|
2019-06-17 02:15:42 +02:00
|
|
|
}
|