mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 22:47:32 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			157 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			157 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Export\CSV;
 | 
						|
 | 
						|
use App\Libraries\MultiDB;
 | 
						|
use App\Models\Company;
 | 
						|
use App\Models\RecurringInvoice;
 | 
						|
use App\Transformers\RecurringInvoiceTransformer;
 | 
						|
use App\Utils\Ninja;
 | 
						|
use Illuminate\Database\Eloquent\Builder;
 | 
						|
use Illuminate\Support\Facades\App;
 | 
						|
use League\Csv\Writer;
 | 
						|
 | 
						|
class RecurringInvoiceExport extends BaseExport
 | 
						|
{
 | 
						|
 | 
						|
    private $invoice_transformer;
 | 
						|
 | 
						|
    public string $date_key = 'date';
 | 
						|
 | 
						|
    public Writer $csv;
 | 
						|
 | 
						|
    public function __construct(Company $company, array $input)
 | 
						|
    {
 | 
						|
        $this->company = $company;
 | 
						|
        $this->input = $input;
 | 
						|
        $this->invoice_transformer = new RecurringInvoiceTransformer();
 | 
						|
    }
 | 
						|
 | 
						|
    public function init(): Builder
 | 
						|
    {
 | 
						|
        MultiDB::setDb($this->company->db);
 | 
						|
        App::forgetInstance('translator');
 | 
						|
        App::setLocale($this->company->locale());
 | 
						|
        $t = app('translator');
 | 
						|
        $t->replace(Ninja::transformTranslations($this->company->settings));
 | 
						|
 | 
						|
        if (count($this->input['report_keys']) == 0) {
 | 
						|
            $this->input['report_keys'] = array_values($this->recurring_invoice_report_keys);
 | 
						|
        }
 | 
						|
 | 
						|
        $query = RecurringInvoice::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();
 | 
						|
 | 
						|
        //load the CSV document from a string
 | 
						|
        $this->csv = Writer::createFromString();
 | 
						|
 | 
						|
        //insert the header
 | 
						|
        $this->csv->insertOne($this->buildHeader());
 | 
						|
 | 
						|
        $query->cursor()
 | 
						|
            ->each(function ($invoice) {
 | 
						|
                $this->csv->insertOne($this->buildRow($invoice));
 | 
						|
            });
 | 
						|
 | 
						|
        return $this->csv->toString();
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
    public function returnJson()
 | 
						|
    {
 | 
						|
        $query = $this->init();
 | 
						|
 | 
						|
        $headerdisplay = $this->buildHeader();
 | 
						|
 | 
						|
        $header = collect($this->input['report_keys'])->map(function ($key, $value) use($headerdisplay){
 | 
						|
                return ['identifier' => $key, 'display_value' => $headerdisplay[$value]];
 | 
						|
            })->toArray();
 | 
						|
 | 
						|
        $report = $query->cursor()
 | 
						|
                ->map(function ($resource) {
 | 
						|
                    $row = $this->buildRow($resource);
 | 
						|
                    return $this->processMetaData($row, $resource);
 | 
						|
                })->toArray();
 | 
						|
        
 | 
						|
        return array_merge(['columns' => $header], $report);
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
    private function buildRow(RecurringInvoice $invoice) :array
 | 
						|
    {
 | 
						|
        $transformed_invoice = $this->invoice_transformer->transform($invoice);
 | 
						|
 | 
						|
        $entity = [];
 | 
						|
 | 
						|
        foreach (array_values($this->input['report_keys']) as $key) {
 | 
						|
 | 
						|
            $parts = explode('.', $key);
 | 
						|
 | 
						|
            if (is_array($parts) && $parts[0] == 'recurring_invoice' && array_key_exists($parts[1], $transformed_invoice)) {
 | 
						|
                $entity[$key] = $transformed_invoice[$parts[1]];
 | 
						|
            } else {
 | 
						|
                $entity[$key] = $this->resolveKey($key, $invoice, $this->invoice_transformer);
 | 
						|
            }
 | 
						|
 | 
						|
        }
 | 
						|
 | 
						|
        return $this->decorateAdvancedFields($invoice, $entity);
 | 
						|
    }
 | 
						|
 | 
						|
    private function decorateAdvancedFields(RecurringInvoice $invoice, array $entity) :array
 | 
						|
    {
 | 
						|
        if (in_array('country_id', $this->input['report_keys'])) {
 | 
						|
            $entity['country'] = $invoice->client->country ? ctrans("texts.country_{$invoice->client->country->name}") : '';
 | 
						|
        }
 | 
						|
 | 
						|
        if (in_array('currency_id', $this->input['report_keys'])) {
 | 
						|
            $entity['currency'] = $invoice->client->currency() ? $invoice->client->currency()->code : $invoice->company->currency()->code;
 | 
						|
        }
 | 
						|
 | 
						|
        if (in_array('client_id', $this->input['report_keys'])) {
 | 
						|
            $entity['client'] = $invoice->client->present()->name();
 | 
						|
        }
 | 
						|
 | 
						|
        if (in_array('status_id', $this->input['report_keys'])) {
 | 
						|
            $entity['status'] = $invoice->stringStatus($invoice->status_id);
 | 
						|
        }
 | 
						|
 | 
						|
        if (in_array('project_id', $this->input['report_keys'])) {
 | 
						|
            $entity['project'] = $invoice->project ? $invoice->project->name : '';
 | 
						|
        }
 | 
						|
 | 
						|
        if (in_array('vendor_id', $this->input['report_keys'])) {
 | 
						|
            $entity['vendor'] = $invoice->vendor ? $invoice->vendor->name : '';
 | 
						|
        }
 | 
						|
 | 
						|
        if (in_array('recurring_invoice.frequency_id', $this->input['report_keys']) || in_array('frequency_id', $this->input['report_keys'])) {
 | 
						|
            $entity['recurring_invoice.frequency_id'] = $invoice->frequencyForKey($invoice->frequency_id);
 | 
						|
        }
 | 
						|
 | 
						|
        return $entity;
 | 
						|
    }
 | 
						|
}
 |