1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Export/CSV/PaymentExport.php

161 lines
4.8 KiB
PHP
Raw Normal View History

2022-04-27 10:05:54 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2022-04-27 10:05:54 +02:00
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Export\CSV;
use App\Libraries\MultiDB;
use App\Models\Company;
use App\Models\Document;
use App\Models\Payment;
use App\Transformers\PaymentTransformer;
use App\Utils\Ninja;
use Illuminate\Support\Facades\App;
use League\Csv\Writer;
class PaymentExport extends BaseExport
{
private Company $company;
protected array $input;
private $entity_transformer;
protected $date_key = 'date';
protected array $entity_keys = [
'amount' => 'amount',
'applied' => 'applied',
'client' => 'client_id',
'currency' => 'currency_id',
'custom_value1' => 'custom_value1',
'custom_value2' => 'custom_value2',
'custom_value3' => 'custom_value3',
'custom_value4' => 'custom_value4',
'date' => 'date',
'exchange_currency' => 'exchange_currency_id',
2022-05-10 08:27:04 +02:00
'gateway' => 'gateway_type_id',
2022-04-27 10:05:54 +02:00
'number' => 'number',
'private_notes' => 'private_notes',
'project' => 'project_id',
'refunded' => 'refunded',
'status' => 'status_id',
'transaction_reference' => 'transaction_reference',
'type' => 'type_id',
'vendor' => 'vendor_id',
];
private array $decorate_keys = [
'vendor',
'status',
'project',
'client',
'currency',
'exchange_currency',
'type',
];
public function __construct(Company $company, array $input)
{
$this->company = $company;
$this->input = $input;
$this->entity_transformer = new PaymentTransformer();
}
public function run()
{
MultiDB::setDb($this->company->db);
App::forgetInstance('translator');
App::setLocale($this->company->locale());
$t = app('translator');
$t->replace(Ninja::transformTranslations($this->company->settings));
//load the CSV document from a string
$this->csv = Writer::createFromString();
if (count($this->input['report_keys']) == 0) {
2022-05-10 08:27:04 +02:00
$this->input['report_keys'] = array_values($this->entity_keys);
}
2022-05-07 09:10:23 +02:00
2022-04-27 10:05:54 +02:00
//insert the header
$this->csv->insertOne($this->buildHeader());
2022-11-04 20:54:05 +01:00
$query = Payment::query()
->withTrashed()
->where('company_id', $this->company->id)
->where('is_deleted', 0);
2022-04-27 10:05:54 +02:00
$query = $this->addDateRange($query);
$query->cursor()
->each(function ($entity) {
$this->csv->insertOne($this->buildRow($entity));
});
2022-04-27 10:05:54 +02:00
return $this->csv->toString();
2022-04-27 10:05:54 +02:00
}
private function buildRow(Payment $payment) :array
{
$transformed_entity = $this->entity_transformer->transform($payment);
$entity = [];
foreach (array_values($this->input['report_keys']) as $key) {
2022-05-10 08:27:04 +02:00
$keyval = array_search($key, $this->entity_keys);
if (array_key_exists($key, $transformed_entity)) {
2022-05-10 08:27:04 +02:00
$entity[$keyval] = $transformed_entity[$key];
} else {
2022-05-10 08:27:04 +02:00
$entity[$keyval] = '';
}
2022-04-27 10:05:54 +02:00
}
return $this->decorateAdvancedFields($payment, $entity);
}
private function decorateAdvancedFields(Payment $payment, array $entity) :array
{
if (in_array('status_id', $this->input['report_keys'])) {
2022-05-10 08:27:04 +02:00
$entity['status'] = $payment->stringStatus($payment->status_id);
}
2022-05-10 08:27:04 +02:00
if (in_array('vendor_id', $this->input['report_keys'])) {
2022-05-10 08:27:04 +02:00
$entity['vendor'] = $payment->vendor()->exists() ? $payment->vendor->name : '';
}
2022-04-27 10:05:54 +02:00
if (in_array('project_id', $this->input['report_keys'])) {
2022-05-10 08:27:04 +02:00
$entity['project'] = $payment->project()->exists() ? $payment->project->name : '';
}
2022-04-27 10:05:54 +02:00
if (in_array('currency_id', $this->input['report_keys'])) {
2022-05-10 08:27:04 +02:00
$entity['currency'] = $payment->currency()->exists() ? $payment->currency->code : '';
}
2022-04-27 10:05:54 +02:00
if (in_array('exchange_currency_id', $this->input['report_keys'])) {
2022-05-10 08:27:04 +02:00
$entity['exchange_currency'] = $payment->exchange_currency()->exists() ? $payment->exchange_currency->code : '';
}
2022-04-27 10:05:54 +02:00
if (in_array('client_id', $this->input['report_keys'])) {
2022-05-10 08:27:04 +02:00
$entity['client'] = $payment->client->present()->name();
}
2022-04-27 10:05:54 +02:00
if (in_array('type_id', $this->input['report_keys'])) {
2022-05-10 08:27:04 +02:00
$entity['type'] = $payment->translatedType();
}
2022-04-27 10:05:54 +02:00
if (in_array('gateway_type_id', $this->input['report_keys'])) {
$entity['gateway'] = $payment->gateway_type ? $payment->gateway_type->name : 'Unknown Type';
}
2022-04-27 10:05:54 +02:00
return $entity;
}
}