mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
|
<?php namespace App\Ninja\Import\Wave;
|
||
|
|
||
|
use App\Ninja\Import\BaseTransformer;
|
||
|
use League\Fractal\Resource\Item;
|
||
|
|
||
|
class InvoiceTransformer extends BaseTransformer
|
||
|
{
|
||
|
public function transform($data)
|
||
|
{
|
||
|
if ( ! $this->getClientId($data->customer)) {
|
||
|
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),
|
||
|
'po_number' => $data->po_so,
|
||
|
'invoice_date_sql' => $this->getDate($data->invoice_date),
|
||
|
'due_date_sql' => $this->getDate($data->due_date),
|
||
|
'paid' => 0,
|
||
|
'invoice_items' => [
|
||
|
[
|
||
|
'product_key' => $data->product,
|
||
|
'notes' => $data->description,
|
||
|
'cost' => (float) $data->amount,
|
||
|
'qty' => (float) $data->quantity,
|
||
|
]
|
||
|
],
|
||
|
];
|
||
|
});
|
||
|
}
|
||
|
}
|