invoiceninja/app/Ninja/Import/Nutcache/PaymentTransformer.php

30 lines
644 B
PHP
Raw Normal View History

2017-01-30 21:40:43 +02:00
<?php
namespace App\Ninja\Import\Nutcache;
2015-12-14 22:07:48 +02:00
use App\Ninja\Import\BaseTransformer;
use League\Fractal\Resource\Item;
/**
2017-01-30 21:40:43 +02:00
* Class PaymentTransformer.
*/
2015-12-14 22:07:48 +02:00
class PaymentTransformer extends BaseTransformer
{
/**
* @param $data
2017-01-30 21:40:43 +02:00
*
* @return Item
*/
2016-06-02 22:03:59 +03:00
public function transform($data)
2015-12-14 22:07:48 +02:00
{
2016-06-02 22:03:59 +03:00
return new Item($data, function ($data) {
2015-12-14 22:07:48 +02:00
return [
'amount' => (float) $data->paid_to_date,
2017-01-15 21:48:31 +02:00
'payment_date_sql' => $this->getDate($data, 'date'),
2015-12-14 22:07:48 +02:00
'client_id' => $data->client_id,
'invoice_id' => $data->invoice_id,
2015-12-14 22:07:48 +02:00
];
});
}
2016-06-02 22:03:59 +03:00
}