invoiceninja/app/Ninja/Import/Invoiceable/InvoiceTransformer.php

49 lines
1.3 KiB
PHP
Raw Permalink Normal View History

2017-01-30 21:40:43 +02:00
<?php
namespace App\Ninja\Import\Invoiceable;
2015-12-10 12:57:51 +02:00
use App\Ninja\Import\BaseTransformer;
use League\Fractal\Resource\Item;
/**
2017-01-30 21:40:43 +02:00
* Class InvoiceTransformer.
*/
2015-12-10 12:57:51 +02:00
class InvoiceTransformer extends BaseTransformer
{
/**
* @param $data
2017-01-30 21:40:43 +02:00
*
* @return bool|Item
*/
2015-12-10 12:57:51 +02:00
public function transform($data)
{
2017-01-30 18:05:31 +02:00
if (! $this->getClientId($data->client_name)) {
2015-12-10 12:57:51 +02:00
return false;
}
if ($this->hasInvoice($data->ref)) {
return false;
}
return new Item($data, function ($data) {
return [
'client_id' => $this->getClientId($data->client_name),
2015-12-10 15:35:40 +02:00
'invoice_number' => $this->getInvoiceNumber($data->ref),
2016-01-06 09:52:26 +02:00
'po_number' => $this->getString($data, 'po_number'),
2015-12-10 12:57:51 +02:00
'invoice_date_sql' => $data->date,
'due_date_sql' => $data->due_date,
2016-01-06 09:52:26 +02:00
'invoice_footer' => $this->getString($data, 'footer'),
2015-12-10 12:57:51 +02:00
'paid' => (float) $data->paid,
'invoice_items' => [
[
2015-12-22 14:06:53 +02:00
'product_key' => '',
2016-01-06 09:52:26 +02:00
'notes' => $this->getString($data, 'description'),
2015-12-10 12:57:51 +02:00
'cost' => (float) $data->total,
'qty' => 1,
2017-01-30 21:40:43 +02:00
],
2015-12-10 12:57:51 +02:00
],
];
});
}
2017-01-30 18:05:31 +02:00
}