mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
120 lines
3.0 KiB
PHP
120 lines
3.0 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Transformers;
|
|
|
|
|
|
use App\Models\Account;
|
|
use App\Models\Client;
|
|
use App\Models\Company;
|
|
use App\Models\User;
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
/**
|
|
* Class AccountTranCompanyTransformersformer.
|
|
*/
|
|
class CompanyTransformer extends EntityTransformer
|
|
{
|
|
use MakesHash;
|
|
|
|
/**
|
|
* @SWG\Property(property="account_key", type="string", example="123456")
|
|
*/
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $defaultIncludes = [
|
|
];
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $availableIncludes = [
|
|
'users',
|
|
'account',
|
|
'clients',
|
|
'contacts',
|
|
'invoices',
|
|
'tax_rates',
|
|
'products',
|
|
'country',
|
|
'timezone',
|
|
'language',
|
|
'expenses',
|
|
'payments',
|
|
];
|
|
|
|
|
|
/**
|
|
* @param Company $company
|
|
*
|
|
* @return array
|
|
*/
|
|
public function transform(Company $company)
|
|
{
|
|
return [
|
|
'id' => $this->encodePrimaryKey($company->id),
|
|
'name' => $company->name,
|
|
'company_key' => $company->company_key,
|
|
'last_login' => $company->last_login,
|
|
'address1' => $company->address1,
|
|
'address2' => $company->address2,
|
|
'city' => $company->city,
|
|
'state' => $company->state,
|
|
'postal_code' => $company->postal_code,
|
|
'work_phone' => $company->work_phone,
|
|
'work_email' => $company->work_email,
|
|
'country_id' => (int) $company->country_id,
|
|
'subdomain' => $company->subdomain,
|
|
'db' => $company->db,
|
|
'vat_number' => $company->vat_number,
|
|
'id_number' => $company->id_number,
|
|
'size_id' => (int) $company->size_id,
|
|
'industry_id' => (int) $company->industry_id,
|
|
'settings' => $company->settings,
|
|
'updated_at' => $company->updated_at,
|
|
'deleted_at' => $company->deleted_at,
|
|
];
|
|
}
|
|
|
|
|
|
public function includeUsers(Company $company)
|
|
{
|
|
$transformer = new UserTransformer($this->serializer);
|
|
|
|
return $this->includeCollection($company->users, $transformer, User::class);
|
|
}
|
|
|
|
public function includeClients(Company $company)
|
|
{
|
|
$transformer = new ClientTransformer($this->serializer);
|
|
|
|
return $this->includeCollection($company->clients, $transformer, Client::class);
|
|
}
|
|
|
|
public function includeInvoices(Company $company)
|
|
{
|
|
$transformer = new InvoiceTransformer($this->serializer);
|
|
|
|
return $this->includeCollection($company->invoices, $transformer, Invoice::class);
|
|
}
|
|
|
|
public function includeAccount(Company $company)
|
|
{
|
|
|
|
$transformer = new AccountTransformer($this->serializer);
|
|
|
|
return $this->includeItem($company->account, $transformer, Account::class);
|
|
|
|
}
|
|
}
|