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

48 lines
1.3 KiB
PHP
Raw Permalink 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 InvoiceTransformer.
*/
class InvoiceTransformer extends BaseTransformer
{
/**
* @param $data
2017-01-30 21:40:43 +02:00
*
* @return bool|Item
*/
public function transform($data)
{
2017-01-30 18:05:31 +02:00
if (! $this->getClientId($data->customer)) {
return false;
}
if ($this->hasInvoice($data->invoice_num)) {
return false;
}
return new Item($data, function ($data) {
return [
'client_id' => $this->getClientId($data->customer),
'invoice_number' => $this->getInvoiceNumber($data->invoice_num),
2016-01-06 09:52:26 +02:00
'po_number' => $this->getString($data, 'po_so'),
2017-01-15 21:48:31 +02:00
'invoice_date_sql' => $this->getDate($data, 'invoice_date'),
'due_date_sql' => $this->getDate($data, 'due_date'),
'paid' => 0,
'invoice_items' => [
[
2016-01-06 09:52:26 +02:00
'product_key' => $this->getString($data, 'product'),
'notes' => $this->getString($data, 'description'),
'cost' => (float) $data->amount,
'qty' => (float) $data->quantity,
2017-01-30 21:40:43 +02:00
],
],
];
});
}
2017-01-15 21:48:31 +02:00
}