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

234 lines
7.5 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;
2023-08-18 15:36:54 +02:00
use App\Utils\Ninja;
use App\Utils\Number;
2022-04-08 03:54:17 +02:00
use App\Models\Credit;
2023-08-18 15:36:54 +02:00
use League\Csv\Writer;
use App\Models\Company;
use App\Libraries\MultiDB;
use Illuminate\Support\Facades\App;
2022-04-08 03:25:53 +02:00
use App\Transformers\CreditTransformer;
2023-08-18 13:36:50 +02:00
use Illuminate\Contracts\Database\Eloquent\Builder;
2022-04-08 03:25:53 +02:00
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',
2023-08-20 23:46:14 +02:00
'country' => 'country_id',
2022-04-08 03:25:53 +02:00
'custom_surcharge1' => 'custom_surcharge1',
'custom_surcharge2' => 'custom_surcharge2',
'custom_surcharge3' => 'custom_surcharge3',
'custom_surcharge4' => 'custom_surcharge4',
2023-08-20 23:46:14 +02:00
'currency' => 'currency',
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',
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 15:36:54 +02:00
public function returnJson()
2023-08-18 13:36:50 +02:00
{
$query = $this->init();
2023-08-23 12:36:25 +02:00
$headerdisplay = $this->buildHeader();
$header = [];
foreach ($this->input['report_keys'] as $key => $value) {
$header[] = ['identifier' => $value, 'display_value' => $headerdisplay[$key]];
}
2023-08-18 13:36:50 +02:00
$report = $query->cursor()
2023-08-18 15:36:54 +02:00
->map(function ($credit) {
$row = $this->buildRow($credit);
return $this->processMetaData($row, $credit);
})->toArray();
2023-08-23 12:36:25 +02:00
nlog(array_merge(['column' => $header], $report));
2023-08-18 15:36:54 +02:00
2023-08-23 12:36:25 +02:00
return array_merge(['column' => $header], $report);
2023-08-18 15:36:54 +02:00
}
private function processMetaData(array $row, Credit $credit): array
{
$clean_row = [];
foreach ($this->input['report_keys'] as $key => $value) {
$report_keys = explode(".", $value);
$column_key = str_replace("credit.", "", $value);
2023-08-20 23:46:14 +02:00
$column_key = array_search($column_key, $this->entity_keys);
2023-08-18 15:36:54 +02:00
$clean_row[$key]['entity'] = $report_keys[0];
2023-08-20 23:46:14 +02:00
$clean_row[$key]['id'] = $report_keys[1] ?? $report_keys[0];
2023-08-18 15:36:54 +02:00
$clean_row[$key]['hashed_id'] = $report_keys[0] == 'credit' ? null : $credit->{$report_keys[0]}->hashed_id ?? null;
$clean_row[$key]['value'] = $row[$column_key];
2023-08-23 12:36:25 +02:00
$clean_row[$key]['identifier'] = $value;
2023-08-20 23:46:14 +02:00
if(in_array($clean_row[$key]['id'], ['amount', 'balance', 'partial', 'refunded', 'applied','unit_cost','cost','price']))
2023-08-18 15:36:54 +02:00
$clean_row[$key]['display_value'] = Number::formatMoney($row[$column_key], $credit->client);
else
$clean_row[$key]['display_value'] = $row[$column_key];
}
return $clean_row;
2023-08-18 13:36:50 +02:00
}
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 15:36:54 +02:00
if (count($this->input['report_keys']) == 0) {
2023-08-20 23:46:14 +02:00
$this->input['report_keys'] = array_values($this->entity_keys);
2023-08-18 15:36:54 +02:00
}
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;
}
2023-08-18 15:36:54 +02:00
public function run(): string
2023-08-18 13:36:50 +02:00
{
$query = $this->init();
2022-04-08 03:25:53 +02:00
//load the CSV document from a string
$this->csv = Writer::createFromString();
//insert the header
$this->csv->insertOne($this->buildHeader());
2023-08-20 23:46:14 +02:00
// nlog($this->input['report_keys']);
2022-04-08 03:25:53 +02:00
2022-04-27 07:41:52 +02:00
$query->cursor()
->each(function ($credit) {
2023-08-20 23:46:14 +02:00
// nlog($this->buildRow($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;
}
}