mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-01 14:27:36 -04:00
54 lines
2.0 KiB
PHP
54 lines
2.0 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' => $this->getString($data, 'product'),
|
|
'notes' => $this->getString($data, 'notes') ?: $this->getProduct($data, 'product', 'notes', ''),
|
|
'cost' => $this->getFloat($data, 'amount') ?: $this->getProduct($data, 'product', 'cost', 0),
|
|
'qty' => $this->getFloat($data, 'quantity') ?: 1,
|
|
'tax_name1' => $this->getTaxName($this->getString($data, 'tax1')),
|
|
'tax_rate1' => $this->getTaxRate($this->getString($data, 'tax1')),
|
|
'tax_name2' => $this->getTaxName($this->getString($data, 'tax2')),
|
|
'tax_rate2' => $this->getTaxRate($this->getString($data, 'tax2')),
|
|
],
|
|
],
|
|
];
|
|
});
|
|
}
|
|
}
|