mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
9f1df5e924
+ Take @hillelcoren remarks into account
33 lines
1.2 KiB
PHP
33 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Ninja\Transformers;
|
|
|
|
use App\Models\TaxRate;
|
|
|
|
/**
|
|
* @SWG\Definition(definition="TaxRate", @SWG\Xml(name="TaxRate"))
|
|
*/
|
|
class TaxRateTransformer extends EntityTransformer
|
|
{
|
|
/**
|
|
* @SWG\Property(property="id", type="integer", example=1, readOnly=true)
|
|
* @SWG\Property(property="name", type="string", example="GST")
|
|
* @SWG\Property(property="account_key", type="string", example="asimplestring", readOnly=true)
|
|
* @SWG\Property(property="rate", type="number", format="float", example=17.5)
|
|
* @SWG\Property(property="is_inclusive", 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)
|
|
*/
|
|
public function transform(TaxRate $taxRate)
|
|
{
|
|
return array_merge($this->getDefaults($taxRate), [
|
|
'id' => (int) $taxRate->public_id,
|
|
'name' => $taxRate->name,
|
|
'rate' => (float) $taxRate->rate,
|
|
'is_inclusive' => (bool) $taxRate->is_inclusive,
|
|
'updated_at' => $this->getTimestamp($taxRate->updated_at),
|
|
'archived_at' => $this->getTimestamp($taxRate->deleted_at),
|
|
]);
|
|
}
|
|
}
|