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

147 lines
4.0 KiB
PHP
Raw Normal View History

2022-04-08 06:54:59 +02:00
<?php
/**
* Quote Ninja (https://quoteninja.com).
*
* @link https://github.com/quoteninja/quoteninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Quote Ninja LLC (https://quoteninja.com)
2022-04-08 06:54:59 +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\Quote;
use App\Transformers\QuoteTransformer;
use App\Utils\Ninja;
use Illuminate\Support\Facades\App;
use League\Csv\Writer;
2022-04-27 08:33:30 +02:00
class QuoteExport extends BaseExport
2022-04-08 06:54:59 +02:00
{
2022-04-27 08:33:30 +02:00
private Company $company;
2022-04-08 06:54:59 +02:00
2022-04-27 08:33:30 +02:00
protected array $input;
2022-04-08 06:54:59 +02:00
private $quote_transformer;
2022-04-27 08:33:30 +02:00
protected string $date_key = 'date';
2022-04-27 10:05:54 +02:00
protected array $entity_keys = [
2022-04-08 06:54:59 +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',
'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' => 'client_id',
'invoice' => 'invoice_id',
];
private array $decorate_keys = [
'client',
'currency',
'invoice'
];
2022-04-27 08:33:30 +02:00
public function __construct(Company $company, array $input)
2022-04-08 06:54:59 +02:00
{
$this->company = $company;
2022-04-27 08:33:30 +02:00
$this->input = $input;
2022-04-08 06:54:59 +02:00
$this->quote_transformer = new QuoteTransformer();
}
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();
//insert the header
$this->csv->insertOne($this->buildHeader());
2022-04-27 08:33:30 +02:00
$query = Quote::query()
->with('client')->where('company_id', $this->company->id)
->where('is_deleted',0);
$query = $this->addDateRange($query);
$query->cursor()
->each(function ($quote){
2022-04-08 06:54:59 +02:00
2022-04-27 08:33:30 +02:00
$this->csv->insertOne($this->buildRow($quote));
2022-04-08 06:54:59 +02:00
2022-04-27 08:33:30 +02:00
});
2022-04-08 06:54:59 +02:00
return $this->csv->toString();
}
private function buildRow(Quote $quote) :array
{
$transformed_quote = $this->quote_transformer->transform($quote);
$entity = [];
2022-04-27 08:33:30 +02:00
foreach(array_values($this->input['report_keys']) as $key){
2022-04-08 06:54:59 +02:00
$entity[$key] = $transformed_quote[$key];
}
return $this->decorateAdvancedFields($quote, $entity);
}
private function decorateAdvancedFields(Quote $quote, array $entity) :array
{
if(array_key_exists('currency', $entity))
$entity['currency'] = $quote->client->currency()->code;
if(array_key_exists('client_id', $entity))
$entity['client_id'] = $quote->client->present()->name();
if(array_key_exists('invoice', $entity))
$entity['invoice'] = $quote->invoice ? $quote->invoice->number : "";
return $entity;
}
}