1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Repositories/ClientRepository.php

80 lines
1.8 KiB
PHP
Raw Normal View History

<?php
2019-05-11 05:32:07 +02:00
/**
* 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\Client;
use App\Repositories\ClientContactRepository;
use App\Utils\Traits\GeneratesCounter;
use Illuminate\Http\Request;
/**
2019-05-10 08:08:33 +02:00
* ClientRepository
*/
class ClientRepository extends BaseRepository
{
use GeneratesCounter;
2019-04-16 07:28:30 +02:00
/**
* @var ClientContactRepository
*/
2019-05-10 08:08:33 +02:00
protected $contact_repo;
2019-04-16 07:28:30 +02:00
/**
* ClientController constructor.
2019-05-10 08:08:33 +02:00
* @param ClientContactRepository $contact_repo
2019-04-16 07:28:30 +02:00
*/
2019-05-10 08:08:33 +02:00
public function __construct(ClientContactRepository $contact_repo)
2019-04-16 07:28:30 +02:00
{
2019-05-10 08:08:33 +02:00
$this->contact_repo = $contact_repo;
2019-04-16 07:28:30 +02:00
}
2019-05-10 08:08:33 +02:00
/**
* Gets the class name.
*
* @return string The class name.
*/
public function getClassName()
{
2019-05-10 08:08:33 +02:00
return Client::class;
2019-05-10 08:08:33 +02:00
}
2019-05-10 08:08:33 +02:00
/**
* Saves the client and its contacts
*
* @param array $data The data
* @param \App\Models\Client $client The client
*
* @return Client|\App\Models\Client|null Client Object
*/
public function save(array $data, Client $client) : ?Client
{
2019-05-10 08:08:33 +02:00
$client->fill($data);
$client->save();
2019-10-08 13:14:23 +02:00
// if($client->id_number == "")
// $client->id_number = $this->getNextClientNumber($client); //todo write tests for this and make sure that custom client numbers also works as expected from here
2019-05-10 08:08:33 +02:00
$client->save();
2019-05-10 08:08:33 +02:00
if(isset($data['contacts']))
$contacts = $this->contact_repo->save($data['contacts'], $client);
2019-04-16 07:28:30 +02:00
2019-01-26 22:24:16 +01:00
return $client;
2019-05-10 08:08:33 +02:00
}
}