2017-01-30 21:40:43 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Ninja\Import\Wave;
|
2015-12-31 16:11:44 +02:00
|
|
|
|
|
|
|
|
use App\Ninja\Import\BaseTransformer;
|
|
|
|
|
use League\Fractal\Resource\Item;
|
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
2017-01-30 21:40:43 +02:00
|
|
|
* Class InvoiceTransformer.
|
2016-07-03 18:11:58 +02:00
|
|
|
*/
|
2015-12-31 16:11:44 +02:00
|
|
|
class InvoiceTransformer extends BaseTransformer
|
|
|
|
|
{
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
|
* @param $data
|
2017-01-30 21:40:43 +02:00
|
|
|
*
|
2016-07-03 18:11:58 +02:00
|
|
|
* @return bool|Item
|
|
|
|
|
*/
|
2015-12-31 16:11:44 +02:00
|
|
|
public function transform($data)
|
|
|
|
|
{
|
2017-01-30 18:05:31 +02:00
|
|
|
if (! $this->getClientId($data->customer)) {
|
2015-12-31 16:11:44 +02:00
|
|
|
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'),
|
2015-12-31 16:11:44 +02:00
|
|
|
'paid' => 0,
|
|
|
|
|
'invoice_items' => [
|
|
|
|
|
[
|
2016-01-06 09:52:26 +02:00
|
|
|
'product_key' => $this->getString($data, 'product'),
|
|
|
|
|
'notes' => $this->getString($data, 'description'),
|
2015-12-31 16:11:44 +02:00
|
|
|
'cost' => (float) $data->amount,
|
|
|
|
|
'qty' => (float) $data->quantity,
|
2017-01-30 21:40:43 +02:00
|
|
|
],
|
2015-12-31 16:11:44 +02:00
|
|
|
],
|
|
|
|
|
];
|
|
|
|
|
});
|
|
|
|
|
}
|
2017-01-15 21:48:31 +02:00
|
|
|
}
|