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

30 lines
653 B
PHP
Raw Normal View History

2017-01-30 21:40:43 +02:00
<?php
namespace App\Ninja\Import\Zoho;
2015-12-13 22:12:54 +02:00
use App\Ninja\Import\BaseTransformer;
use League\Fractal\Resource\Item;
/**
2017-01-30 21:40:43 +02:00
* Class PaymentTransformer.
*/
2015-12-13 22:12:54 +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-13 22:12:54 +02:00
{
2016-06-02 22:03:59 +03:00
return new Item($data, function ($data) {
2015-12-13 22:12:54 +02:00
return [
'amount' => (float) $data->total - (float) $data->balance,
'payment_date_sql' => $data->last_payment_date,
'client_id' => $data->client_id,
'invoice_id' => $data->invoice_id,
];
});
}
2016-06-02 22:03:59 +03:00
}