1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/app/Ninja/Import/Ronin/InvoiceTransformer.php

48 lines
1.3 KiB
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Ninja\Import\Ronin;
2015-12-10 14:35:40 +01:00
use App\Ninja\Import\BaseTransformer;
use League\Fractal\Resource\Item;
/**
2017-01-30 20:40:43 +01:00
* Class InvoiceTransformer.
*/
2015-12-10 14:35:40 +01:00
class InvoiceTransformer extends BaseTransformer
{
/**
* @param $data
2017-01-30 20:40:43 +01:00
*
* @return bool|Item
*/
2015-12-10 14:35:40 +01:00
public function transform($data)
{
2017-01-30 17:05:31 +01:00
if (! $this->getClientId($data->client)) {
2015-12-10 14:35:40 +01:00
return false;
}
if ($this->hasInvoice($data->number)) {
return false;
}
return new Item($data, function ($data) {
return [
'client_id' => $this->getClientId($data->client),
'invoice_number' => $this->getInvoiceNumber($data->number),
'paid' => (float) $data->total - (float) $data->balance,
2016-01-06 08:52:26 +01:00
'public_notes' => $this->getString($data, 'subject'),
2015-12-10 14:35:40 +01:00
'invoice_date_sql' => $data->date_sent,
'due_date_sql' => $data->date_due,
'invoice_items' => [
[
2015-12-22 13:06:53 +01:00
'product_key' => '',
2016-01-06 08:52:26 +01:00
'notes' => $this->getString($data, 'line_item'),
2015-12-10 14:35:40 +01:00
'cost' => (float) $data->total,
'qty' => 1,
2017-01-30 20:40:43 +01:00
],
2015-12-10 14:35:40 +01:00
],
];
});
}
2017-01-30 17:05:31 +01:00
}