mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
0fbda85a59
- Removed unused uses - Type hinting for method parameters - Removed commented code - Introduced comments for classes and methods - Short array syntax
43 lines
1.2 KiB
PHP
43 lines
1.2 KiB
PHP
<?php namespace App\Ninja\Import\Harvest;
|
|
|
|
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->client)) {
|
|
return false;
|
|
}
|
|
|
|
if ($this->hasInvoice($data->id)) {
|
|
return false;
|
|
}
|
|
|
|
return new Item($data, function ($data) {
|
|
return [
|
|
'client_id' => $this->getClientId($data->client),
|
|
'invoice_number' => $this->getInvoiceNumber($data->id),
|
|
'paid' => (float) $data->paid_amount,
|
|
'po_number' => $this->getString($data, 'po_number'),
|
|
'invoice_date_sql' => $this->getDate($data->issue_date, 'm/d/Y'),
|
|
'invoice_items' => [
|
|
[
|
|
'product_key' => '',
|
|
'notes' => $this->getString($data, 'subject'),
|
|
'cost' => (float) $data->invoice_amount,
|
|
'qty' => 1,
|
|
]
|
|
],
|
|
];
|
|
});
|
|
}
|
|
} |