1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Export/CSV/CreditExport.php

195 lines
5.9 KiB
PHP
Raw Normal View History

2022-04-08 03:25:53 +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-08 03:25:53 +02:00
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Export\CSV;
use App\Libraries\MultiDB;
use App\Models\Company;
2022-04-08 03:54:17 +02:00
use App\Models\Credit;
2022-04-08 03:25:53 +02:00
use App\Transformers\CreditTransformer;
use App\Utils\Ninja;
2023-08-18 13:36:50 +02:00
use Illuminate\Contracts\Database\Eloquent\Builder;
2022-04-08 03:25:53 +02:00
use Illuminate\Support\Facades\App;
use League\Csv\Writer;
2022-04-27 07:41:52 +02:00
class CreditExport extends BaseExport
2022-04-08 03:25:53 +02:00
{
2022-04-27 07:41:52 +02:00
private CreditTransformer $credit_transformer;
2023-03-01 13:19:15 +01:00
public string $date_key = 'created_at';
2022-04-08 03:25:53 +02:00
2023-03-08 21:49:18 +01:00
public Writer $csv;
2023-03-01 13:27:14 +01:00
public array $entity_keys = [
2022-04-08 03:25:53 +02:00
'amount' => 'amount',
'balance' => 'balance',
'client' => 'client_id',
'custom_surcharge1' => 'custom_surcharge1',
'custom_surcharge2' => 'custom_surcharge2',
'custom_surcharge3' => 'custom_surcharge3',
'custom_surcharge4' => 'custom_surcharge4',
2022-04-08 03:54:17 +02:00
'country' => 'country_id',
2022-04-08 03:25:53 +02:00
'custom_value1' => 'custom_value1',
'custom_value2' => 'custom_value2',
'custom_value3' => 'custom_value3',
'custom_value4' => 'custom_value4',
'date' => 'date',
'discount' => 'discount',
'due_date' => 'due_date',
'exchange_rate' => 'exchange_rate',
'footer' => 'footer',
'invoice' => 'invoice_id',
'number' => 'number',
'paid_to_date' => 'paid_to_date',
'partial' => 'partial',
'partial_due_date' => 'partial_due_date',
'po_number' => 'po_number',
'private_notes' => 'private_notes',
'public_notes' => 'public_notes',
'status' => 'status_id',
'tax_name1' => 'tax_name1',
'tax_name2' => 'tax_name2',
'tax_name3' => 'tax_name3',
'tax_rate1' => 'tax_rate1',
2022-04-08 03:54:17 +02:00
'tax_rate2' => 'tax_rate2',
'tax_rate3' => 'tax_rate3',
'terms' => 'terms',
'total_taxes' => 'total_taxes',
'currency' => 'currency',
2022-04-08 03:25:53 +02:00
];
private array $decorate_keys = [
2022-04-08 03:54:17 +02:00
'country',
'client',
'invoice',
'currency',
2022-04-08 03:25:53 +02:00
];
2022-04-27 07:41:52 +02:00
public function __construct(Company $company, array $input)
2022-04-08 03:25:53 +02:00
{
$this->company = $company;
2022-04-27 07:41:52 +02:00
$this->input = $input;
2022-04-08 03:25:53 +02:00
$this->credit_transformer = new CreditTransformer();
}
2023-08-18 13:36:50 +02:00
public function returnJson(string $hash)
{
$query = $this->init();
$header = $this->buildHeader();
$report = $query->cursor()
->map(function ($credit) {
return $this->buildRow($credit);
})->toJson();
}
private function init(): Builder
2022-04-08 03:25:53 +02:00
{
2023-08-18 13:36:50 +02:00
2022-04-08 03:25:53 +02:00
MultiDB::setDb($this->company->db);
App::forgetInstance('translator');
App::setLocale($this->company->locale());
$t = app('translator');
$t->replace(Ninja::transformTranslations($this->company->settings));
2023-08-18 13:36:50 +02:00
$query = Credit::query()
->withTrashed()
->with('client')->where('company_id', $this->company->id)
->where('is_deleted', 0);
$query = $this->addDateRange($query);
return $query;
}
public function run()
{
$query = $this->init();
2022-04-08 03:25:53 +02:00
//load the CSV document from a string
$this->csv = Writer::createFromString();
if (count($this->input['report_keys']) == 0) {
2022-05-10 06:25:16 +02:00
$this->input['report_keys'] = array_values($this->entity_keys);
}
2022-04-08 03:25:53 +02:00
//insert the header
$this->csv->insertOne($this->buildHeader());
2023-08-18 13:36:50 +02:00
2022-04-08 03:25:53 +02:00
2022-04-27 07:41:52 +02:00
$query->cursor()
->each(function ($credit) {
$this->csv->insertOne($this->buildRow($credit));
});
2022-04-08 03:25:53 +02:00
return $this->csv->toString();
2022-04-08 03:25:53 +02:00
}
2022-04-08 03:54:17 +02:00
private function buildRow(Credit $credit) :array
2022-04-08 03:25:53 +02:00
{
2022-04-08 03:54:17 +02:00
$transformed_credit = $this->credit_transformer->transform($credit);
2022-04-08 03:25:53 +02:00
$entity = [];
foreach (array_values($this->input['report_keys']) as $key) {
2022-05-10 06:25:16 +02:00
$keyval = array_search($key, $this->entity_keys);
2023-07-05 04:56:37 +02:00
if(!$keyval)
$keyval = array_search(str_replace("credit.", "", $key), $this->entity_keys) ?? $key;
if(!$keyval)
$keyval = $key;
if (array_key_exists($key, $transformed_credit)) {
2022-05-10 06:25:16 +02:00
$entity[$keyval] = $transformed_credit[$key];
2023-07-05 04:56:37 +02:00
} elseif (array_key_exists($keyval, $transformed_credit)) {
$entity[$keyval] = $transformed_credit[$keyval];
}
else {
$entity[$keyval] = $this->resolveKey($keyval, $credit, $this->credit_transformer);
}
2022-04-08 03:25:53 +02:00
}
2022-04-08 03:54:17 +02:00
return $this->decorateAdvancedFields($credit, $entity);
2022-04-08 03:25:53 +02:00
}
2022-04-08 03:54:17 +02:00
private function decorateAdvancedFields(Credit $credit, array $entity) :array
2022-04-08 03:25:53 +02:00
{
if (in_array('country_id', $this->input['report_keys'])) {
$entity['country'] = $credit->client->country ? ctrans("texts.country_{$credit->client->country->name}") : '';
}
2023-07-05 04:56:37 +02:00
if (in_array('currency_id', $this->input['report_keys'])) {
2023-07-05 04:56:37 +02:00
$entity['currency_id'] = $credit->client->currency() ? $credit->client->currency()->code : $credit->company->currency()->code;
}
2022-04-08 03:54:17 +02:00
if (in_array('invoice_id', $this->input['report_keys'])) {
$entity['invoice'] = $credit->invoice ? $credit->invoice->number : '';
}
2022-05-10 06:25:16 +02:00
if (in_array('client_id', $this->input['report_keys'])) {
2022-05-10 06:25:16 +02:00
$entity['client'] = $credit->client->present()->name();
}
2022-04-08 03:25:53 +02:00
if (in_array('status_id', $this->input['report_keys'])) {
2022-05-10 06:25:16 +02:00
$entity['status'] = $credit->stringStatus($credit->status_id);
}
2022-04-08 03:25:53 +02:00
2023-07-05 04:56:37 +02:00
if(in_array('credit.status', $this->input['report_keys'])) {
$entity['credit.status'] = $credit->stringStatus($credit->status_id);
}
2022-04-08 03:25:53 +02:00
return $entity;
}
}