2015-12-13 21:12:54 +01:00
|
|
|
<?php namespace App\Ninja\Import\Zoho;
|
|
|
|
|
|
|
|
use App\Ninja\Import\BaseTransformer;
|
|
|
|
use League\Fractal\Resource\Item;
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* Class InvoiceTransformer
|
|
|
|
*/
|
2015-12-13 21:12:54 +01:00
|
|
|
class InvoiceTransformer extends BaseTransformer
|
|
|
|
{
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @param $data
|
|
|
|
* @return bool|Item
|
|
|
|
*/
|
2015-12-13 21:12:54 +01:00
|
|
|
public function transform($data)
|
|
|
|
{
|
|
|
|
if ( ! $this->getClientId($data->customer_name)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->hasInvoice($data->invoice_number)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return new Item($data, function ($data) {
|
|
|
|
return [
|
|
|
|
'client_id' => $this->getClientId($data->customer_name),
|
|
|
|
'invoice_number' => $this->getInvoiceNumber($data->invoice_number),
|
|
|
|
'paid' => (float) $data->total - (float) $data->balance,
|
2016-01-06 08:52:26 +01:00
|
|
|
'po_number' => $this->getString($data, 'purchaseorder'),
|
2015-12-13 21:12:54 +01:00
|
|
|
'due_date_sql' => $data->due_date,
|
|
|
|
'invoice_date_sql' => $data->invoice_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, 'item_desc'),
|
2015-12-13 21:12:54 +01:00
|
|
|
'cost' => (float) $data->total,
|
|
|
|
'qty' => 1,
|
|
|
|
]
|
|
|
|
],
|
|
|
|
];
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|