1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 09:51:35 +02:00
invoiceninja/app/ninja/repositories/ClientRepository.php

78 lines
2.1 KiB
PHP
Raw Normal View History

2013-12-25 22:34:42 +01:00
<?php namespace ninja\repositories;
use Client;
use Contact;
class ClientRepository
{
public function save($publicId, $data)
{
if ($publicId == "-1")
{
$client = Client::createNew();
$contact = Contact::createNew();
$contact->is_primary = true;
}
else
{
$client = Client::scope($publicId)->with('contacts')->firstOrFail();
$contact = $client->contacts()->where('is_primary', '=', true)->firstOrFail();
}
$client->name = trim($data['name']);
$client->work_phone = trim($data['work_phone']);
$client->address1 = trim($data['address1']);
$client->address2 = trim($data['address2']);
$client->city = trim($data['city']);
$client->state = trim($data['state']);
$client->postal_code = trim($data['postal_code']);
$client->country_id = $data['country_id'] ? $data['country_id'] : null;
2013-12-30 21:17:45 +01:00
$client->private_notes = trim($data['private_notes']);
2013-12-25 22:34:42 +01:00
$client->client_size_id = $data['client_size_id'] ? $data['client_size_id'] : null;
$client->client_industry_id = $data['client_industry_id'] ? $data['client_industry_id'] : null;
2013-12-29 18:40:11 +01:00
$client->currency_id = $data['currency_id'] ? $data['currency_id'] : null;
2013-12-31 10:43:39 +01:00
$client->payment_terms = $data['payment_terms'];
2013-12-25 22:34:42 +01:00
$client->website = trim($data['website']);
$client->save();
$isPrimary = true;
$contactIds = [];
foreach ($data['contacts'] as $record)
{
$record = (array) $record;
2013-12-31 10:43:39 +01:00
if ($publicId != "-1" && isset($record['public_id']) && $record['public_id'])
2013-12-25 22:34:42 +01:00
{
$contact = Contact::scope($record['public_id'])->firstOrFail();
}
else
{
$contact = Contact::createNew();
}
$contact->email = trim($record['email']);
$contact->first_name = trim($record['first_name']);
$contact->last_name = trim($record['last_name']);
$contact->phone = trim($record['phone']);
$contact->is_primary = $isPrimary;
$contact->send_invoice = $record['send_invoice'];
$isPrimary = false;
$client->contacts()->save($contact);
$contactIds[] = $contact->public_id;
}
foreach ($client->contacts as $contact)
{
if (!in_array($contact->public_id, $contactIds))
{
$contact->forceDelete();
}
}
2014-01-02 00:12:33 +01:00
$client->save();
2013-12-25 22:34:42 +01:00
return $client;
}
}