invoiceninja/app/Ninja/Transformers/ExpenseTransformer.php

72 lines
3.8 KiB
PHP
Raw Normal View History

2017-01-30 21:40:43 +02:00
<?php
namespace App\Ninja\Transformers;
use App\Models\Expense;
/**
* @SWG\Definition(definition="Expense", @SWG\Xml(name="Expense"))
*/
class ExpenseTransformer extends EntityTransformer
{
/**
* @SWG\Property(property="id", type="integer", example=1, readOnly=true)
* @SWG\Property(property="private_notes", type="string", example="Notes...")
* @SWG\Property(property="public_notes", type="string", example="Notes...")
* @SWG\Property(property="should_be_invoiced", type="boolean", example=false)
* @SWG\Property(property="updated_at", type="integer", example=1451160233, readOnly=true)
* @SWG\Property(property="archived_at", type="integer", example=1451160233, readOnly=true)
* @SWG\Property(property="transaction_id", type="integer", example=1)
* @SWG\Property(property="bank_id", type="integer", example=1)
* @SWG\Property(property="expense_currency_id", type="integer", example=1)
* @SWG\Property(property="expense_category_id", type="integer", example=1)
* @SWG\Property(property="amount", type="number", format="float,", example="17.5")
* @SWG\Property(property="expense_date", type="string", format="date", example="2016-01-01")
* @SWG\Property(property="exchange_rate", type="number", format="float", example="")
* @SWG\Property(property="invoice_currency_id", type="integer", example=1)
* @SWG\Property(property="is_deleted", type="boolean", example=false)
* @SWG\Property(property="tax_name1", type="string", example="VAT")
* @SWG\Property(property="tax_name2", type="string", example="Upkeep")
* @SWG\Property(property="tax_rate1", type="number", format="float", example="17.5")
* @SWG\Property(property="tax_rate2", type="number", format="float", example="30.0")
* @SWG\Property(property="client_id", type="integer", example=1)
* @SWG\Property(property="invoice_id", type="integer", example=1)
* @SWG\Property(property="vendor_id", type="integer", example=1)
*/
2016-05-03 09:46:24 +03:00
public function __construct($account = null, $serializer = null, $client = null)
{
2016-05-03 09:46:24 +03:00
parent::__construct($account, $serializer);
2016-11-29 19:47:26 +02:00
2016-05-03 09:46:24 +03:00
$this->client = $client;
}
2016-02-17 21:16:13 +11:00
2016-05-03 09:46:24 +03:00
public function transform(Expense $expense)
{
2016-05-03 23:02:29 +03:00
return array_merge($this->getDefaults($expense), [
'id' => (int) $expense->public_id,
'private_notes' => $expense->private_notes,
'public_notes' => $expense->public_notes,
'should_be_invoiced' => (bool) $expense->should_be_invoiced,
'updated_at' => $this->getTimestamp($expense->updated_at),
'archived_at' => $this->getTimestamp($expense->deleted_at),
'transaction_id' => $expense->transaction_id,
'bank_id' => $expense->bank_id,
'expense_currency_id' => (int) $expense->expense_currency_id,
2016-11-29 19:47:26 +02:00
'expense_category_id' => $expense->expense_category ? (int) $expense->expense_category->public_id : null,
'amount' => (float) $expense->amount,
'expense_date' => $expense->expense_date,
'exchange_rate' => (float) $expense->exchange_rate,
'invoice_currency_id' => (int) $expense->invoice_currency_id,
'is_deleted' => (bool) $expense->is_deleted,
2016-10-19 12:59:01 +11:00
'tax_name1' => $expense->tax_name1,
'tax_name2' => $expense->tax_name2,
'tax_rate1' => $expense->tax_rate1,
'tax_rate2' => $expense->tax_rate2,
2016-05-03 09:46:24 +03:00
'client_id' => $this->client ? $this->client->public_id : (isset($expense->client->public_id) ? (int) $expense->client->public_id : null),
2016-02-17 21:16:13 +11:00
'invoice_id' => isset($expense->invoice->public_id) ? (int) $expense->invoice->public_id : null,
'vendor_id' => isset($expense->vendor->public_id) ? (int) $expense->vendor->public_id : null,
2016-05-03 23:02:29 +03:00
]);
}
2016-11-29 19:47:26 +02:00
}