1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/Ninja/Import/Nutcache/InvoiceTransformer.php

46 lines
1.4 KiB
PHP
Raw Normal View History

2015-12-14 21:07:48 +01:00
<?php namespace App\Ninja\Import\Nutcache;
use App\Ninja\Import\BaseTransformer;
use League\Fractal\Resource\Item;
/**
* Class InvoiceTransformer
*/
2015-12-14 21:07:48 +01:00
class InvoiceTransformer extends BaseTransformer
{
/**
* @param $data
* @return bool|Item
*/
2015-12-14 21:07:48 +01:00
public function transform($data)
{
if ( ! $this->getClientId($data->client)) {
return false;
}
if ($this->hasInvoice($data->document_no)) {
return false;
}
return new Item($data, function ($data) {
return [
'client_id' => $this->getClientId($data->client),
'invoice_number' => $this->getInvoiceNumber($data->document_no),
'paid' => (float) $data->paid_to_date,
2016-01-06 08:52:26 +01:00
'po_number' => $this->getString($data, 'purchase_order'),
'terms' => $this->getString($data, 'terms'),
'public_notes' => $this->getString($data, 'notes'),
2015-12-14 21:07:48 +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, 'description'),
2015-12-14 21:07:48 +01:00
'cost' => (float) $data->total,
'qty' => 1,
]
],
];
});
}
}