with('user', 'contacts', 'country') ->withTrashed() ->where('is_deleted', '=', false) ->get(); } public function find($filter = null, $userId = false) { $query = DB::table('clients') ->join('accounts', 'accounts.id', '=', 'clients.account_id') ->join('contacts', 'contacts.client_id', '=', 'clients.id') ->where('clients.account_id', '=', \Auth::user()->account_id) ->where('contacts.is_primary', '=', true) ->where('contacts.deleted_at', '=', null) //->whereRaw('(clients.name != "" or contacts.first_name != "" or contacts.last_name != "" or contacts.email != "")') // filter out buy now invoices ->select( DB::raw('COALESCE(clients.currency_id, accounts.currency_id) currency_id'), DB::raw('COALESCE(clients.country_id, accounts.country_id) country_id'), DB::raw("CONCAT(contacts.first_name, ' ', contacts.last_name) contact"), 'clients.public_id', 'clients.name', 'contacts.first_name', 'contacts.last_name', 'clients.balance', 'clients.last_login', 'clients.created_at', 'clients.created_at as client_created_at', 'clients.work_phone', 'contacts.email', 'clients.deleted_at', 'clients.is_deleted', 'clients.user_id' ); $this->applyFilters($query, ENTITY_CLIENT); if ($filter) { $query->where(function ($query) use ($filter) { $query->where('clients.name', 'like', '%'.$filter.'%') ->orWhere('contacts.first_name', 'like', '%'.$filter.'%') ->orWhere('contacts.last_name', 'like', '%'.$filter.'%') ->orWhere('contacts.email', 'like', '%'.$filter.'%'); }); } if ($userId) { $query->where('clients.user_id', '=', $userId); } return $query; } public function save($data, $client = null) { $publicId = isset($data['public_id']) ? $data['public_id'] : false; if ($client) { // do nothing } elseif (!$publicId || $publicId == '-1') { $client = Client::createNew(); if (Auth::check() && Auth::user()->account->client_number_counter && empty($data['id_number'])) { $data['id_number'] = Auth::user()->account->getNextNumber(); } } else { $client = Client::scope($publicId)->with('contacts')->firstOrFail(); } if ($client->is_deleted) { return $client; } // convert currency code to id if (isset($data['currency_code'])) { $currencyCode = strtolower($data['currency_code']); $currency = Cache::get('currencies')->filter(function($item) use ($currencyCode) { return strtolower($item->code) == $currencyCode; })->first(); if ($currency) { $data['currency_id'] = $currency->id; } } $client->fill($data); $client->save(); /* if ( ! isset($data['contact']) && ! isset($data['contacts'])) { return $client; } */ $first = true; $contacts = isset($data['contact']) ? [$data['contact']] : $data['contacts']; $contactIds = []; // If the primary is set ensure it's listed first usort($contacts, function ($left, $right) { if (isset($right['is_primary']) && isset($left['is_primary'])) { return $right['is_primary'] - $left['is_primary']; } else { return 0; } }); foreach ($contacts as $contact) { $contact = $client->addContact($contact, $first); $contactIds[] = $contact->public_id; $first = false; } if ( ! $client->wasRecentlyCreated) { foreach ($client->contacts as $contact) { if (!in_array($contact->public_id, $contactIds)) { $contact->delete(); } } } if (!$publicId || $publicId == '-1') { event(new ClientWasCreated($client)); } else { event(new ClientWasUpdated($client)); } return $client; } public function findPhonetically($clientName) { $clientNameMeta = metaphone($clientName); $map = []; $max = SIMILAR_MIN_THRESHOLD; $clientId = 0; $clients = Client::scope()->get(['id', 'name', 'public_id']); foreach ($clients as $client) { $map[$client->id] = $client; if ( ! $client->name) { continue; } $similar = similar_text($clientNameMeta, metaphone($client->name), $percent); if ($percent > $max) { $clientId = $client->id; $max = $percent; } } $contacts = Contact::scope()->get(['client_id', 'first_name', 'last_name', 'public_id']); foreach ($contacts as $contact) { if ( ! $contact->getFullName() || ! isset($map[$contact->client_id])) { continue; } $similar = similar_text($clientNameMeta, metaphone($contact->getFullName()), $percent); if ($percent > $max) { $clientId = $contact->client_id; $max = $percent; } } return ($clientId && isset($map[$clientId])) ? $map[$clientId] : null; } }