mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
|
<?php namespace App\Ninja\Import\Ronin;
|
||
|
|
||
|
use App\Ninja\Import\BaseTransformer;
|
||
|
use League\Fractal\Resource\Item;
|
||
|
|
||
|
class InvoiceTransformer extends BaseTransformer
|
||
|
{
|
||
|
public function transform($data)
|
||
|
{
|
||
|
if ( ! $this->getClientId($data->client)) {
|
||
|
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,
|
||
|
'public_notes' => $data->subject,
|
||
|
'invoice_date_sql' => $data->date_sent,
|
||
|
'due_date_sql' => $data->date_due,
|
||
|
'invoice_items' => [
|
||
|
[
|
||
|
'notes' => $data->line_item,
|
||
|
'cost' => (float) $data->total,
|
||
|
'qty' => 1,
|
||
|
]
|
||
|
],
|
||
|
];
|
||
|
});
|
||
|
}
|
||
|
}
|