mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-15 15:42:51 +01:00
50 lines
1.5 KiB
PHP
50 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Ninja\Import\CSV;
|
|
|
|
use App\Ninja\Import\BaseTransformer;
|
|
use League\Fractal\Resource\Item;
|
|
|
|
/**
|
|
* Class InvoiceTransformer.
|
|
*/
|
|
class InvoiceTransformer extends BaseTransformer
|
|
{
|
|
/**
|
|
* @param $data
|
|
*
|
|
* @return bool|Item
|
|
*/
|
|
public function transform($data)
|
|
{
|
|
if (! $this->getClientId($data->name)) {
|
|
return false;
|
|
}
|
|
|
|
if (isset($data->invoice_number) && $this->hasInvoice($data->invoice_number)) {
|
|
return false;
|
|
}
|
|
|
|
return new Item($data, function ($data) {
|
|
return [
|
|
'client_id' => $this->getClientId($data->name),
|
|
'invoice_number' => isset($data->invoice_number) ? $this->getInvoiceNumber($data->invoice_number) : null,
|
|
'paid' => $this->getFloat($data, 'paid'),
|
|
'po_number' => $this->getString($data, 'po_number'),
|
|
'terms' => $this->getString($data, 'terms'),
|
|
'public_notes' => $this->getString($data, 'public_notes'),
|
|
'invoice_date_sql' => $this->getDate($data, 'invoice_date'),
|
|
'due_date_sql' => $this->getDate($data, 'due_date'),
|
|
'invoice_items' => [
|
|
[
|
|
'product_key' => '',
|
|
'notes' => $this->getString($data, 'notes'),
|
|
'cost' => $this->getFloat($data, 'amount'),
|
|
'qty' => 1,
|
|
],
|
|
],
|
|
];
|
|
});
|
|
}
|
|
}
|