mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
124 lines
4.0 KiB
PHP
124 lines
4.0 KiB
PHP
<?php
|
|
|
|
namespace App\Ninja\Repositories;
|
|
|
|
use App\Models\Vendor;
|
|
use DB;
|
|
use Utils;
|
|
|
|
// vendor
|
|
class VendorRepository extends BaseRepository
|
|
{
|
|
public function getClassName()
|
|
{
|
|
return 'App\Models\Vendor';
|
|
}
|
|
|
|
public function all()
|
|
{
|
|
return Vendor::scope()
|
|
->with('user', 'vendor_contacts', 'country')
|
|
->withTrashed()
|
|
->where('is_deleted', '=', false)
|
|
->get();
|
|
}
|
|
|
|
public function find($filter = null)
|
|
{
|
|
$query = DB::table('vendors')
|
|
->join('accounts', 'accounts.id', '=', 'vendors.account_id')
|
|
->join('vendor_contacts', 'vendor_contacts.vendor_id', '=', 'vendors.id')
|
|
->where('vendors.account_id', '=', \Auth::user()->account_id)
|
|
->where('vendor_contacts.is_primary', '=', true)
|
|
->where('vendor_contacts.deleted_at', '=', null)
|
|
->select(
|
|
DB::raw('COALESCE(vendors.currency_id, accounts.currency_id) currency_id'),
|
|
DB::raw('COALESCE(vendors.country_id, accounts.country_id) country_id'),
|
|
'vendors.public_id',
|
|
'vendors.name',
|
|
'vendor_contacts.first_name',
|
|
'vendor_contacts.last_name',
|
|
'vendors.created_at',
|
|
'vendors.work_phone',
|
|
'vendors.city',
|
|
'vendor_contacts.email',
|
|
'vendors.deleted_at',
|
|
'vendors.is_deleted',
|
|
'vendors.user_id',
|
|
'vendors.private_notes'
|
|
);
|
|
|
|
$this->applyFilters($query, ENTITY_VENDOR);
|
|
|
|
if ($filter) {
|
|
$query->where(function ($query) use ($filter) {
|
|
$query->where('vendors.name', 'like', '%'.$filter.'%')
|
|
->orWhere('vendor_contacts.first_name', 'like', '%'.$filter.'%')
|
|
->orWhere('vendor_contacts.last_name', 'like', '%'.$filter.'%')
|
|
->orWhere('vendor_contacts.email', 'like', '%'.$filter.'%');
|
|
});
|
|
}
|
|
|
|
return $query;
|
|
}
|
|
|
|
public function save($data, $vendor = null)
|
|
{
|
|
$publicId = isset($data['public_id']) ? $data['public_id'] : false;
|
|
|
|
if ($vendor) {
|
|
// do nothing
|
|
} elseif (! $publicId || $publicId == '-1') {
|
|
$vendor = Vendor::createNew();
|
|
} else {
|
|
$vendor = Vendor::scope($publicId)->with('vendor_contacts')->firstOrFail();
|
|
if (Utils::isNinjaDev()) {
|
|
\Log::warning('Entity not set in vendor repo save');
|
|
}
|
|
}
|
|
|
|
if ($vendor->is_deleted) {
|
|
return $vendor;
|
|
}
|
|
|
|
$vendor->fill($data);
|
|
$vendor->save();
|
|
|
|
$first = true;
|
|
if (isset($data['vendor_contact'])) {
|
|
$vendorcontacts = [$data['vendor_contact']];
|
|
} elseif (isset($data['vendor_contacts'])) {
|
|
$vendorcontacts = $data['vendor_contacts'];
|
|
} else {
|
|
$vendorcontacts = [[]];
|
|
}
|
|
|
|
$vendorcontactIds = [];
|
|
|
|
// If the primary is set ensure it's listed first
|
|
usort($vendorcontacts, function ($left, $right) {
|
|
if (isset($right['is_primary']) && isset($left['is_primary'])) {
|
|
return $right['is_primary'] - $left['is_primary'];
|
|
} else {
|
|
return 0;
|
|
}
|
|
});
|
|
|
|
foreach ($vendorcontacts as $vendorcontact) {
|
|
$vendorcontact = $vendor->addVendorContact($vendorcontact, $first);
|
|
$vendorcontactIds[] = $vendorcontact->public_id;
|
|
$first = false;
|
|
}
|
|
|
|
if (! $vendor->wasRecentlyCreated) {
|
|
foreach ($vendor->vendor_contacts as $contact) {
|
|
if (! in_array($contact->public_id, $vendorcontactIds)) {
|
|
$contact->delete();
|
|
}
|
|
}
|
|
}
|
|
|
|
return $vendor;
|
|
}
|
|
}
|