mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
19080933b6
Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions. You may customize the code style applied by adding a [PHP CS Fixer][1] or [PHP CodeSniffer][2] ruleset to your project root. Feel free to use [Shift's Laravel ruleset][3] to help you get started. For more information on customizing the code style applied by Shift, [watch this short video][4]. [1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer [2]: https://github.com/squizlabs/PHP_CodeSniffer [3]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200 [4]: https://laravelshift.com/videos/shift-code-style
66 lines
2.4 KiB
PHP
66 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* client Ninja (https://clientninja.com).
|
|
*
|
|
* @link https://github.com/clientninja/clientninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2022. client Ninja LLC (https://clientninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Import\Transformers\Csv;
|
|
|
|
use App\Import\ImportException;
|
|
use App\Import\Transformers\BaseTransformer;
|
|
|
|
/**
|
|
* Class PaymentTransformer.
|
|
*/
|
|
class PaymentTransformer extends BaseTransformer
|
|
{
|
|
/**
|
|
* @param $data
|
|
*
|
|
* @return array
|
|
*/
|
|
public function transform($data)
|
|
{
|
|
$client_id =
|
|
$this->getClient($this->getString($data, 'payment.client_id'), $this->getString($data, 'payment.client_id'));
|
|
|
|
if (empty($client_id)) {
|
|
throw new ImportException('Could not find client.');
|
|
}
|
|
|
|
$transformed = [
|
|
'company_id' => $this->maps['company']->id,
|
|
'number' => $this->getString($data, 'payment.number'),
|
|
'user_id' => $this->getString($data, 'payment.user_id'),
|
|
'amount' => $this->getFloat($data, 'payment.amount'),
|
|
'refunded' => $this->getFloat($data, 'payment.refunded'),
|
|
'applied' => $this->getFloat($data, 'payment.applied'),
|
|
'transaction_reference' => $this->getString($data, 'payment.transaction_reference '),
|
|
'date' => $this->getString($data, 'payment.date'),
|
|
'private_notes' => $this->getString($data, 'payment.private_notes'),
|
|
'custom_value1' => $this->getString($data, 'payment.custom_value1'),
|
|
'custom_value2' => $this->getString($data, 'payment.custom_value2'),
|
|
'custom_value3' => $this->getString($data, 'payment.custom_value3'),
|
|
'custom_value4' => $this->getString($data, 'payment.custom_value4'),
|
|
'client_id' => $client_id,
|
|
];
|
|
|
|
if (isset($data['payment.invoice_number']) &&
|
|
$invoice_id = $this->getInvoiceId($data['payment.invoice_number'])) {
|
|
$transformed['invoices'] = [
|
|
[
|
|
'invoice_id' => $invoice_id,
|
|
'amount' => $transformed['amount'] ?? null,
|
|
],
|
|
];
|
|
}
|
|
|
|
return $transformed;
|
|
}
|
|
}
|