1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Ninja/Transformers/ClientTransformer.php

63 lines
2.2 KiB
PHP
Raw Normal View History

2015-11-03 15:21:17 +01:00
<?php namespace App\Ninja\Transformers;
2015-11-08 22:12:50 +01:00
use App\Models\Account;
2015-11-03 15:21:17 +01:00
use App\Models\Client;
use App\Models\Contact;
use League\Fractal;
2015-11-08 22:12:50 +01:00
class ClientTransformer extends EntityTransformer
2015-11-03 15:21:17 +01:00
{
protected $defaultIncludes = [
'contacts',
'invoices',
2015-11-03 20:03:24 +01:00
'quotes',
2015-11-03 15:21:17 +01:00
];
2015-11-08 22:12:50 +01:00
public function includeContacts(Client $client)
2015-11-03 15:21:17 +01:00
{
2015-11-08 22:12:50 +01:00
return $this->collection($client->contacts, new ContactTransformer($this->account));
2015-11-03 15:21:17 +01:00
}
2015-11-08 22:12:50 +01:00
public function includeInvoices(Client $client)
2015-11-03 15:21:17 +01:00
{
2015-11-08 22:12:50 +01:00
return $this->collection($client->getInvoices, new InvoiceTransformer($this->account, $client));
2015-11-03 20:03:24 +01:00
}
2015-11-08 22:12:50 +01:00
public function includeQuotes(Client $client)
2015-11-03 20:03:24 +01:00
{
2015-11-08 22:12:50 +01:00
return $this->collection($client->getQuotes, new QuoteTransformer($this->account, $client));
2015-11-03 15:21:17 +01:00
}
public function transform(Client $client)
{
return [
2015-11-07 13:15:37 +01:00
'public_id' => (int) $client->public_id,
2015-11-03 15:21:17 +01:00
'name' => $client->name,
'balance' => (float) $client->balance,
'paid_to_date' => (float) $client->paid_to_date,
2015-11-07 13:15:37 +01:00
'user_id' => (int) $client->user_id,
2015-11-08 22:12:50 +01:00
'account_key' => $this->account->account_key,
2015-11-07 13:15:37 +01:00
'updated_at' => $client->updated_at,
'deleted_at' => $client->deleted_at,
'address1' => $client->address1,
'address2' => $client->address2,
'city' => $client->city,
'state' => $client->state,
'postal_code' => $client->postal_code,
'country_id' => (int) $client->country_id,
'work_phone' => $client->work_phone,
'private_notes' => $client->private_notes,
'balance' => (float) $client->balance,
'paid_to_date' => $client->paid_to_date,
'last_login' => $client->last_login,
'website' => $client->website,
'industry_id' => (int) $client->industry_id,
'size_id' => (int) $client->size_id,
'is_deleted' => (bool) $client->is_deleted,
'payment_terms' => (int) $client->payment_terms,
'vat_number' => $client->vat_number,
'id_number' => $client->id_number,
'language_id' => (int) $client->language_id
2015-11-03 15:21:17 +01:00
];
}
}