mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
30 lines
653 B
PHP
30 lines
653 B
PHP
<?php
|
|
|
|
namespace App\Ninja\Import\Zoho;
|
|
|
|
use App\Ninja\Import\BaseTransformer;
|
|
use League\Fractal\Resource\Item;
|
|
|
|
/**
|
|
* Class PaymentTransformer.
|
|
*/
|
|
class PaymentTransformer extends BaseTransformer
|
|
{
|
|
/**
|
|
* @param $data
|
|
*
|
|
* @return Item
|
|
*/
|
|
public function transform($data)
|
|
{
|
|
return new Item($data, function ($data) {
|
|
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,
|
|
];
|
|
});
|
|
}
|
|
}
|