mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
<?php namespace App\Ninja\Import\Hiveage;
|
|
|
|
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->statement_no)) {
|
|
return false;
|
|
}
|
|
|
|
return new Item($data, function ($data) {
|
|
return [
|
|
'client_id' => $this->getClientId($data->client),
|
|
'invoice_number' => $this->getInvoiceNumber($data->statement_no),
|
|
'paid' => (float) $data->paid_total,
|
|
'invoice_date_sql' => $this->getDate($data->date),
|
|
'due_date_sql' => $this->getDate($data->due_date),
|
|
'invoice_items' => [
|
|
[
|
|
'product_key' => '',
|
|
'notes' => $this->getString($data, 'summary'),
|
|
'cost' => (float) $data->billed_total,
|
|
'qty' => 1,
|
|
]
|
|
],
|
|
];
|
|
});
|
|
}
|
|
} |