1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/Export/CSV/InvoiceItemExport.php

264 lines
8.3 KiB
PHP
Raw Normal View History

2022-04-08 10:10:14 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2024-04-12 06:15:41 +02:00
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
2022-04-08 10:10:14 +02:00
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Export\CSV;
2023-12-02 04:09:50 +01:00
use App\Export\Decorators\Decorator;
2022-04-08 10:10:14 +02:00
use App\Libraries\MultiDB;
use App\Models\Company;
use App\Models\Invoice;
use App\Transformers\InvoiceTransformer;
use App\Utils\Ninja;
2023-09-12 03:01:14 +02:00
use Illuminate\Database\Eloquent\Builder;
2022-04-08 10:10:14 +02:00
use Illuminate\Support\Facades\App;
use League\Csv\Writer;
2022-04-27 08:29:38 +02:00
class InvoiceItemExport extends BaseExport
2022-04-08 10:10:14 +02:00
{
private $invoice_transformer;
2023-03-01 13:19:15 +01:00
public string $date_key = 'date';
2022-04-27 08:29:38 +02:00
2023-03-08 21:49:18 +01:00
public Writer $csv;
2023-12-02 04:09:50 +01:00
private Decorator $decorator;
2023-07-06 04:34:35 +02:00
private bool $force_keys = false;
2023-08-28 14:44:04 +02:00
private array $storage_array = [];
2022-04-08 10:10:14 +02:00
2023-09-12 03:01:14 +02:00
private array $storage_item_array = [];
2022-04-08 10:10:14 +02:00
private array $decorate_keys = [
'client',
2022-05-10 08:13:06 +02:00
'currency_id',
'status'
2022-04-08 10:10:14 +02:00
];
2022-04-27 08:29:38 +02:00
public function __construct(Company $company, array $input)
2022-04-08 10:10:14 +02:00
{
$this->company = $company;
2022-04-27 08:29:38 +02:00
$this->input = $input;
2022-04-08 10:10:14 +02:00
$this->invoice_transformer = new InvoiceTransformer();
2023-12-02 04:09:50 +01:00
$this->decorator = new Decorator();
2022-04-08 10:10:14 +02:00
}
2023-08-28 14:44:04 +02:00
public function init(): Builder
2022-04-08 10:10:14 +02:00
{
2023-08-28 14:44:04 +02:00
2022-04-08 10:10:14 +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-02-16 02:36:09 +01:00
if (count($this->input['report_keys']) == 0) {
2023-07-06 04:34:35 +02:00
$this->force_keys = true;
2023-08-28 14:44:04 +02:00
$this->input['report_keys'] = array_values($this->mergeItemsKeys('invoice_report_keys'));
2023-02-16 02:36:09 +01:00
}
2022-05-07 09:10:23 +02:00
2023-10-18 06:22:38 +02:00
$this->input['report_keys'] = array_merge($this->input['report_keys'], array_diff($this->forced_client_fields, $this->input['report_keys']));
2022-04-27 08:29:38 +02:00
$query = Invoice::query()
2022-11-04 20:54:05 +01:00
->withTrashed()
2023-09-12 03:01:14 +02:00
->with('client')
2024-04-25 12:07:42 +02:00
->whereHas('client', function ($q){
$q->where('is_deleted', false);
})
2023-09-12 03:01:14 +02:00
->where('company_id', $this->company->id)
->where('is_deleted', $this->input['include_deleted'] ?? false);
2022-04-27 08:29:38 +02:00
$query = $this->addDateRange($query);
2024-03-26 04:12:32 +01:00
$clients = &$this->input['client_id'];
if($clients) {
$query = $this->addClientFilter($query, $clients);
}
2024-03-05 03:58:26 +01:00
if($this->input['status'] ?? false) {
$query = $this->addInvoiceStatusFilter($query, $this->input['status']);
}
$query = $this->applyProductFilters($query);
2024-02-13 05:25:18 +01:00
if($this->input['document_email_attachment'] ?? false) {
$this->queueDocuments($query);
}
2023-08-28 14:44:04 +02:00
return $query;
}
public function returnJson()
{
$query = $this->init();
$headerdisplay = $this->buildHeader();
2023-10-26 04:57:44 +02:00
$header = collect($this->input['report_keys'])->map(function ($key, $value) use ($headerdisplay) {
return ['identifier' => $key, 'display_value' => $headerdisplay[$value]];
})->toArray();
2023-08-28 14:44:04 +02:00
2023-09-12 03:01:14 +02:00
$query->cursor()
->each(function ($resource) {
2023-08-28 14:44:04 +02:00
$this->iterateItems($resource);
2024-01-14 05:05:00 +01:00
2023-09-12 03:01:14 +02:00
foreach($this->storage_array as $row) {
2023-09-12 03:22:59 +02:00
$this->storage_item_array[] = $this->processItemMetaData($row, $resource);
2023-09-12 03:01:14 +02:00
}
2023-09-11 14:15:24 +02:00
$this->storage_array = [];
2024-01-14 05:05:00 +01:00
2023-09-12 03:01:14 +02:00
});
2024-01-14 05:05:00 +01:00
2023-09-12 03:01:14 +02:00
return array_merge(['columns' => $header], $this->storage_item_array);
2024-01-14 05:05:00 +01:00
2023-08-28 14:44:04 +02:00
}
public function run()
{
$query = $this->init();
2024-01-14 05:05:00 +01:00
2023-08-28 14:44:04 +02:00
//load the CSV document from a string
$this->csv = Writer::createFromString();
//insert the header
$this->csv->insertOne($this->buildHeader());
2022-04-27 08:29:38 +02:00
$query->cursor()
2023-02-16 02:36:09 +01:00
->each(function ($invoice) {
2022-04-27 08:29:38 +02:00
$this->iterateItems($invoice);
2023-02-16 02:36:09 +01:00
});
2022-04-08 10:10:14 +02:00
2023-08-28 14:44:04 +02:00
$this->csv->insertAll($this->storage_array);
2024-01-14 05:05:00 +01:00
2023-02-16 02:36:09 +01:00
return $this->csv->toString();
2022-04-08 10:10:14 +02:00
}
private function iterateItems(Invoice $invoice)
{
$transformed_invoice = $this->buildRow($invoice);
$transformed_items = [];
2023-02-16 02:36:09 +01:00
foreach ($invoice->line_items as $item) {
2023-10-26 04:57:44 +02:00
$item_array = [];
2023-07-06 07:55:26 +02:00
2023-08-28 14:44:04 +02:00
foreach (array_values(array_intersect($this->input['report_keys'], $this->item_report_keys)) as $key) { //items iterator produces item array
2024-01-14 05:05:00 +01:00
2023-02-16 02:36:09 +01:00
if (str_contains($key, "item.")) {
2023-07-06 05:53:24 +02:00
2023-10-20 00:22:33 +02:00
$tmp_key = str_replace("item.", "", $key);
2024-01-14 05:05:00 +01:00
2023-10-26 04:57:44 +02:00
if($tmp_key == 'type_id') {
2023-10-20 00:22:33 +02:00
$tmp_key = 'type';
2023-10-26 04:57:44 +02:00
}
2023-07-06 05:53:24 +02:00
2023-10-26 04:57:44 +02:00
if($tmp_key == 'tax_id') {
2023-10-20 00:22:33 +02:00
$tmp_key = 'tax_category';
2023-10-26 04:57:44 +02:00
}
2023-07-06 05:11:35 +02:00
2023-10-20 00:22:33 +02:00
if (property_exists($item, $tmp_key)) {
$item_array[$key] = $item->{$tmp_key};
2023-10-26 04:57:44 +02:00
} else {
2023-08-28 14:44:04 +02:00
$item_array[$key] = '';
2023-02-16 02:36:09 +01:00
}
2022-04-08 10:10:14 +02:00
}
}
2024-01-14 05:05:00 +01:00
2022-05-10 08:13:06 +02:00
$transformed_items = array_merge($transformed_invoice, $item_array);
$entity = $this->decorateAdvancedFields($invoice, $transformed_items);
2024-01-14 05:05:00 +01:00
2023-10-20 00:22:33 +02:00
$entity = array_merge(array_flip(array_values($this->input['report_keys'])), $entity);
2022-05-10 08:13:06 +02:00
2023-08-28 14:44:04 +02:00
$this->storage_array[] = $entity;
2022-04-08 10:10:14 +02:00
}
}
2024-01-14 05:05:00 +01:00
private function buildRow(Invoice $invoice): array
2022-04-08 10:10:14 +02:00
{
$transformed_invoice = $this->invoice_transformer->transform($invoice);
$entity = [];
2023-02-16 02:36:09 +01:00
foreach (array_values($this->input['report_keys']) as $key) {
2024-01-14 05:05:00 +01:00
2023-08-28 14:44:04 +02:00
$parts = explode('.', $key);
2023-10-26 04:57:44 +02:00
if(is_array($parts) && $parts[0] == 'item') {
2023-08-28 14:44:04 +02:00
continue;
2023-10-26 04:57:44 +02:00
}
2023-08-28 14:44:04 +02:00
if (is_array($parts) && $parts[0] == 'invoice' && array_key_exists($parts[1], $transformed_invoice)) {
$entity[$key] = $transformed_invoice[$parts[1]];
2023-10-26 04:57:44 +02:00
} elseif (array_key_exists($key, $transformed_invoice)) {
2023-08-28 14:44:04 +02:00
$entity[$key] = $transformed_invoice[$key];
2023-10-26 04:57:44 +02:00
} else {
2023-12-02 04:09:50 +01:00
// nlog($key);
$entity[$key] = $this->decorator->transform($key, $invoice);
// $entity[$key] = '';
// $entity[$key] = $this->resolveKey($key, $invoice, $this->invoice_transformer);
2023-02-16 02:36:09 +01:00
}
2022-04-08 10:10:14 +02:00
}
2023-12-12 00:46:23 +01:00
// return $entity;
return $this->decorateAdvancedFields($invoice, $entity);
2022-04-08 10:10:14 +02:00
}
2024-01-14 05:05:00 +01:00
private function decorateAdvancedFields(Invoice $invoice, array $entity): array
2022-04-08 10:10:14 +02:00
{
2023-12-12 00:46:23 +01:00
// if (in_array('currency_id', $this->input['report_keys'])) {
// $entity['currency'] = $invoice->client->currency() ? $invoice->client->currency()->code : $invoice->company->currency()->code;
// }
2022-04-08 10:10:14 +02:00
2023-12-12 00:46:23 +01:00
// if(array_key_exists('type', $entity)) {
// $entity['type'] = $invoice->typeIdString($entity['type']);
// }
2023-07-06 05:53:24 +02:00
2023-12-12 00:46:23 +01:00
// if(array_key_exists('tax_category', $entity)) {
// $entity['tax_category'] = $invoice->taxTypeString($entity['tax_category']);
// }
2023-07-06 05:53:24 +02:00
2023-12-12 00:46:23 +01:00
// if (in_array('invoice.country_id', $this->input['report_keys'])) {
// $entity['invoice.country_id'] = $invoice->client->country ? ctrans("texts.country_{$invoice->client->country->name}") : '';
// }
2023-10-18 06:22:38 +02:00
2023-12-12 00:46:23 +01:00
// if (in_array('invoice.currency_id', $this->input['report_keys'])) {
// $entity['invoice.currency_id'] = $invoice->client->currency() ? $invoice->client->currency()->code : $invoice->company->currency()->code;
// }
2023-10-18 06:22:38 +02:00
2023-12-12 00:46:23 +01:00
// if (in_array('invoice.client_id', $this->input['report_keys'])) {
// $entity['invoice.client_id'] = $invoice->client->present()->name();
// }
2023-10-18 06:22:38 +02:00
2023-12-12 00:46:23 +01:00
// if (in_array('invoice.status', $this->input['report_keys'])) {
// $entity['invoice.status'] = $invoice->stringStatus($invoice->status_id);
// }
2023-10-18 06:22:38 +02:00
2024-03-05 06:30:54 +01:00
if (in_array('invoice.recurring_id', $this->input['report_keys'])) {
$entity['invoice.recurring_id'] = $invoice->recurring_invoice->number ?? '';
}
2023-10-18 06:22:38 +02:00
if (in_array('invoice.assigned_user_id', $this->input['report_keys'])) {
2024-01-14 05:05:00 +01:00
$entity['invoice.assigned_user_id'] = $invoice->assigned_user ? $invoice->assigned_user->present()->name() : '';
}
2024-01-14 05:05:00 +01:00
if (in_array('invoice.user_id', $this->input['report_keys'])) {
2024-01-14 05:05:00 +01:00
$entity['invoice.user_id'] = $invoice->user ? $invoice->user->present()->name() : '';
}
2023-10-18 06:22:38 +02:00
2022-04-08 10:10:14 +02:00
return $entity;
}
2023-09-11 14:15:24 +02:00
2022-04-08 10:10:14 +02:00
}