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

34 lines
798 B
PHP
Raw Normal View History

2017-01-30 21:40:43 +02:00
<?php
namespace App\Ninja\Import\Wave;
use App\Ninja\Import\BaseTransformer;
use League\Fractal\Resource\Item;
/**
2017-01-30 21:40:43 +02:00
* Class PaymentTransformer.
*/
class PaymentTransformer extends BaseTransformer
{
/**
* @param $data
2017-01-30 21:40:43 +02:00
*
* @return bool|Item
*/
2016-06-02 22:03:59 +03:00
public function transform($data)
{
2017-01-30 18:05:31 +02:00
if (! $this->getInvoiceClientId($data->invoice_num)) {
return false;
}
2016-06-02 22:03:59 +03:00
return new Item($data, function ($data) {
return [
'amount' => (float) $data->amount,
2017-01-15 21:48:31 +02:00
'payment_date_sql' => $this->getDate($data, 'payment_date'),
'client_id' => $this->getInvoiceClientId($data->invoice_num),
'invoice_id' => $this->getInvoiceId($data->invoice_num),
];
});
}
2016-06-02 22:03:59 +03:00
}