mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 14:42:42 +01:00
5932a837dd
* Add support for payment imports * Add support for Wave Invoice import * Add ability to merge invoice line items into a single invoice
23 lines
717 B
PHP
23 lines
717 B
PHP
<?php namespace App\Ninja\Import\Wave;
|
|
|
|
use App\Ninja\Import\BaseTransformer;
|
|
use League\Fractal\Resource\Item;
|
|
|
|
class PaymentTransformer extends BaseTransformer
|
|
{
|
|
public function transform($data, $maps)
|
|
{
|
|
if ( ! $this->getInvoiceClientId($data->invoice_num)) {
|
|
return false;
|
|
}
|
|
|
|
return new Item($data, function ($data) use ($maps) {
|
|
return [
|
|
'amount' => (float) $data->amount,
|
|
'payment_date_sql' => $this->getDate($data->payment_date),
|
|
'client_id' => $this->getInvoiceClientId($data->invoice_num),
|
|
'invoice_id' => $this->getInvoiceId($data->invoice_num),
|
|
];
|
|
});
|
|
}
|
|
} |