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

94 lines
4.1 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:57:28 +01:00
/**
* @SWG\Definition(definition="Client", @SWG\Xml(name="Client"))
*/
2015-11-08 22:12:50 +01:00
class ClientTransformer extends EntityTransformer
2015-11-03 15:21:17 +01:00
{
2015-11-08 22:57:28 +01:00
/**
* @SWG\Property(property="id", type="integer", example=1, readOnly=true)
* @SWG\Property(property="balance", type="float", example=10, readOnly=true)
* @SWG\Property(property="paid_to_date", type="float", example=10, readOnly=true)
2015-11-09 12:46:53 +01:00
* @SWG\Property(property="user_id", type="integer", example=1)
* @SWG\Property(property="account_key", type="string", example="123456")
* @SWG\Property(property="updated_at", type="date-time", example="2016-01-01 12:10:00")
* @SWG\Property(property="deleted_at", type="date-time", example="2016-01-01 12:10:00")
* @SWG\Property(property="address1", type="string", example="10 Main St.")
* @SWG\Property(property="address2", type="string", example="1st Floor")
* @SWG\Property(property="city", type="string", example="New York")
* @SWG\Property(property="state", type="string", example="NY")
* @SWG\Property(property="postal_code", type="string", example=10010)
* @SWG\Property(property="country_id", type="integer", example=840)
* @SWG\Property(property="work_phone", type="string", example="(212) 555-1212")
* @SWG\Property(property="private_notes", type="string", example="Notes...")
* @SWG\Property(property="last_login", type="date-time", example="2016-01-01 12:10:00")
* @SWG\Property(property="website", type="string", example="http://www.example.com")
* @SWG\Property(property="industry_id", type="integer", example=1)
* @SWG\Property(property="size_id", type="integer", example=1)
* @SWG\Property(property="is_deleted", type="boolean", example=false)
* @SWG\Property(property="payment_terms", type="", example=30)
* @SWG\Property(property="custom_value1", type="string", example="Value")
* @SWG\Property(property="custom_value2", type="string", example="Value")
* @SWG\Property(property="vat_number", type="string", example="123456")
* @SWG\Property(property="id_number", type="string", example="123456")
* @SWG\Property(property="language_id", type="integer", example=1)
2015-11-08 22:57:28 +01:00
*/
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,
'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
];
}
}