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

217 lines
6.8 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
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. 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;
use App\Libraries\MultiDB;
use App\Models\Client;
use App\Models\Company;
use App\Models\Invoice;
use App\Transformers\InvoiceTransformer;
use App\Utils\Ninja;
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
{
2022-04-27 08:29:38 +02:00
private Company $company;
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-03-01 13:27:14 +01:00
public array $entity_keys = [
2022-04-08 10:10:14 +02:00
'amount' => 'amount',
'balance' => 'balance',
'client' => 'client_id',
'client_number' => 'client.number',
'client_id_number' => 'client.id_number',
2022-04-08 10:10:14 +02:00
'custom_surcharge1' => 'custom_surcharge1',
'custom_surcharge2' => 'custom_surcharge2',
'custom_surcharge3' => 'custom_surcharge3',
'custom_surcharge4' => 'custom_surcharge4',
'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',
'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',
'tax_rate2' => 'tax_rate2',
'tax_rate3' => 'tax_rate3',
'terms' => 'terms',
'total_taxes' => 'total_taxes',
'currency' => 'currency_id',
2022-05-10 08:13:06 +02:00
'quantity' => 'item.quantity',
2022-04-08 10:10:14 +02:00
'unit_cost' => 'item.cost',
'product_key' => 'item.product_key',
'cost' => 'item.product_cost',
'notes' => 'item.notes',
'discount' => 'item.discount',
'is_amount_discount' => 'item.is_amount_discount',
'tax_rate1' => 'item.tax_rate1',
'tax_rate2' => 'item.tax_rate2',
'tax_rate3' => 'item.tax_rate3',
'tax_name1' => 'item.tax_name1',
'tax_name2' => 'item.tax_name2',
'tax_name3' => 'item.tax_name3',
'line_total' => 'item.line_total',
'gross_line_total' => 'item.gross_line_total',
'invoice1' => 'item.custom_value1',
'invoice2' => 'item.custom_value2',
'invoice3' => 'item.custom_value3',
'invoice4' => 'item.custom_value4',
];
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();
}
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();
2023-02-16 02:36:09 +01:00
if (count($this->input['report_keys']) == 0) {
2022-05-10 08:13:06 +02:00
$this->input['report_keys'] = array_values($this->entity_keys);
2023-02-16 02:36:09 +01:00
}
2022-05-07 09:10:23 +02:00
2022-04-08 10:10:14 +02:00
//insert the header
$this->csv->insertOne($this->buildHeader());
2022-04-27 08:29:38 +02:00
$query = Invoice::query()
2022-11-04 20:54:05 +01:00
->withTrashed()
2022-04-27 08:29:38 +02:00
->with('client')->where('company_id', $this->company->id)
2023-02-16 02:36:09 +01:00
->where('is_deleted', 0);
2022-04-27 08:29:38 +02:00
$query = $this->addDateRange($query);
$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-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) {
2022-04-08 10:10:14 +02:00
$item_array = [];
2023-07-06 04:00:23 +02:00
foreach (array_values($this->input['report_keys']) as $key) { //items iterator produces item array
2023-02-16 02:36:09 +01:00
if (str_contains($key, "item.")) {
2022-04-08 10:10:14 +02:00
$key = str_replace("item.", "", $key);
2022-07-20 07:12:47 +02:00
2023-02-16 02:36:09 +01:00
if (property_exists($item, $key)) {
2022-07-20 07:12:47 +02:00
$item_array[$key] = $item->{$key};
2023-02-16 02:36:09 +01:00
} else {
2022-07-20 07:12:47 +02:00
$item_array[$key] = '';
2023-02-16 02:36:09 +01:00
}
2022-04-08 10:10:14 +02:00
}
}
2023-07-06 04:00:23 +02:00
nlog("item array");
nlog($item_array);
2022-04-08 10:10:14 +02:00
$entity = [];
2023-02-16 02:36:09 +01:00
foreach (array_values($this->input['report_keys']) as $key) {
2023-07-06 04:00:23 +02:00
$keyval = array_search($key, $this->entity_keys);
2022-05-10 08:13:06 +02:00
2023-02-16 02:36:09 +01:00
if (array_key_exists($key, $transformed_items)) {
2022-05-10 08:13:06 +02:00
$entity[$keyval] = $transformed_items[$key];
2023-02-16 02:36:09 +01:00
} else {
2022-05-10 08:13:06 +02:00
$entity[$keyval] = "";
2023-02-16 02:36:09 +01:00
}
2022-04-08 10:10:14 +02:00
}
2023-07-06 04:00:23 +02:00
nlog("entity");
nlog($entity);
2022-05-10 08:13:06 +02:00
$transformed_items = array_merge($transformed_invoice, $item_array);
$entity = $this->decorateAdvancedFields($invoice, $transformed_items);
2023-02-16 02:36:09 +01:00
$this->csv->insertOne($entity);
2022-04-08 10:10:14 +02:00
}
}
private function buildRow(Invoice $invoice) :array
{
$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) {
2022-05-10 08:13:06 +02:00
$keyval = array_search($key, $this->entity_keys);
2023-02-16 02:36:09 +01:00
if (array_key_exists($key, $transformed_invoice)) {
2022-05-10 08:13:06 +02:00
$entity[$keyval] = $transformed_invoice[$key];
2023-02-16 02:36:09 +01:00
} else {
2022-05-10 08:13:06 +02:00
$entity[$keyval] = "";
2023-02-16 02:36:09 +01:00
}
2022-04-08 10:10:14 +02:00
}
return $this->decorateAdvancedFields($invoice, $entity);
}
private function decorateAdvancedFields(Invoice $invoice, array $entity) :array
{
2023-02-16 02:36:09 +01:00
if (in_array('currency_id', $this->input['report_keys'])) {
2022-05-10 08:13:06 +02:00
$entity['currency'] = $invoice->client->currency() ? $invoice->client->currency()->code : $invoice->company->currency()->code;
2023-02-16 02:36:09 +01:00
}
2022-04-08 10:10:14 +02:00
// if(in_array('client_id', $this->input['report_keys']))
2023-02-16 02:36:09 +01:00
$entity['client'] = $invoice->client->present()->name();
$entity['client_id_number'] = $invoice->client->id_number;
$entity['client_number'] = $invoice->client->number;
2022-04-08 10:10:14 +02:00
// if(in_array('status_id', $this->input['report_keys']))
2023-02-16 02:36:09 +01:00
$entity['status'] = $invoice->stringStatus($invoice->status_id);
2022-04-08 10:10:14 +02:00
return $entity;
}
}