2020-01-20 02:31:58 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-01-20 02:31:58 +01:00
|
|
|
*
|
|
|
|
* @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\Factory\VendorFactory;
|
|
|
|
use App\Models\Vendor;
|
|
|
|
use App\Utils\Traits\GeneratesCounter;
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* VendorRepository.
|
2020-01-20 02:31:58 +01:00
|
|
|
*/
|
|
|
|
class VendorRepository extends BaseRepository
|
|
|
|
{
|
|
|
|
use GeneratesCounter;
|
2020-11-03 14:27:41 +01:00
|
|
|
|
2020-01-20 02:31:58 +01:00
|
|
|
protected $contact_repo;
|
|
|
|
|
|
|
|
/**
|
2020-11-03 14:27:41 +01:00
|
|
|
* VendorContactRepository constructor.
|
2020-01-20 02:31:58 +01:00
|
|
|
*/
|
|
|
|
public function __construct(VendorContactRepository $contact_repo)
|
|
|
|
{
|
|
|
|
$this->contact_repo = $contact_repo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Saves the vendor and its contacts.
|
2020-01-20 02:31:58 +01:00
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param array $data The data
|
2020-11-03 14:27:41 +01:00
|
|
|
* @param \App\Models\Vendor $vendor The vendor
|
2020-01-20 02:31:58 +01:00
|
|
|
*
|
2020-11-03 14:27:41 +01:00
|
|
|
* @return vendor|\App\Models\Vendor|null Vendor Object
|
2020-10-28 11:10:49 +01:00
|
|
|
* @throws \Laracasts\Presenter\Exceptions\PresenterException
|
2020-01-20 02:31:58 +01:00
|
|
|
*/
|
|
|
|
public function save(array $data, Vendor $vendor) : ?Vendor
|
|
|
|
{
|
|
|
|
$vendor->fill($data);
|
|
|
|
|
|
|
|
$vendor->save();
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if ($vendor->id_number == '' || ! $vendor->id_number) {
|
2020-01-20 02:31:58 +01:00
|
|
|
$vendor->id_number = $this->getNextVendorNumber($vendor);
|
|
|
|
} //todo write tests for this and make sure that custom vendor numbers also works as expected from here
|
|
|
|
|
|
|
|
$vendor->save();
|
|
|
|
|
|
|
|
if (isset($data['contacts'])) {
|
2020-11-03 14:27:41 +01:00
|
|
|
$this->contact_repo->save($data, $vendor);
|
2020-01-20 02:31:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($data['name'])) {
|
|
|
|
$data['name'] = $vendor->present()->name();
|
|
|
|
}
|
|
|
|
|
2020-10-12 22:42:02 +02:00
|
|
|
if (array_key_exists('documents', $data)) {
|
|
|
|
$this->saveDocuments($data['documents'], $vendor);
|
|
|
|
}
|
|
|
|
|
2020-01-20 02:31:58 +01:00
|
|
|
return $vendor;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store vendors in bulk.
|
|
|
|
*
|
|
|
|
* @param array $vendor
|
|
|
|
* @return vendor|null
|
|
|
|
*/
|
|
|
|
public function create($vendor): ?Vendor
|
|
|
|
{
|
|
|
|
return $this->save(
|
|
|
|
$vendor,
|
|
|
|
VendorFactory::create(auth()->user()->company()->id, auth()->user()->id)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|