1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-24 18:27:10 +02:00
invoiceninja/app/Ninja/Import/Hiveage/InvoiceTransformer.php

36 lines
1.1 KiB
PHP
Raw Normal View History

2015-12-08 11:10:20 +01:00
<?php namespace App\Ninja\Import\Hiveage;
use App\Ninja\Import\BaseTransformer;
use League\Fractal\Resource\Item;
class InvoiceTransformer extends BaseTransformer
{
public function transform($data)
{
if ( ! $this->getClientId($data->client)) {
return false;
}
if ($this->hasInvoice($data->statement_no)) {
return false;
}
return new Item($data, function ($data) {
return [
'client_id' => $this->getClientId($data->client),
2015-12-10 14:35:40 +01:00
'invoice_number' => $this->getInvoiceNumber($data->statement_no),
'paid' => (float) $data->paid_total,
2015-12-08 11:10:20 +01:00
'invoice_date_sql' => $this->getDate($data->date),
'due_date_sql' => $this->getDate($data->due_date),
'invoice_items' => [
[
2015-12-22 13:06:53 +01:00
'product_key' => '',
2016-01-06 08:52:26 +01:00
'notes' => $this->getString($data, 'summary'),
2015-12-08 11:10:20 +01:00
'cost' => (float) $data->billed_total,
'qty' => 1,
]
],
];
});
}
}