company = $company; $this->input = $input; $this->invoice_transformer = new RecurringInvoiceTransformer(); $this->decorator = new Decorator(); } 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); } $this->input['report_keys'] = array_merge($this->input['report_keys'], array_diff($this->forced_client_fields, $this->input['report_keys'])); $query = RecurringInvoice::query() ->withTrashed() ->with('client') ->where('company_id', $this->company->id) ->where('is_deleted', $this->input['include_deleted'] ?? false); $query = $this->addDateRange($query); $query = $this->addRecurringInvoiceStatusFilter($query, $this->input['status'] ?? ''); 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]]; } elseif($parts[0] == 'item') { $entity[$key] = ''; } else { // nlog($key); $entity[$key] = $this->decorator->transform($key, $invoice); // $entity[$key] = ''; // $entity[$key] = $this->resolveKey($key, $invoice, $this->invoice_transformer); } } // return $entity; 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('recurring_invoice.status', $this->input['report_keys'])) { // $entity['recurring_invoice.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); } if (in_array('recurring_invoice.auto_bill_enabled', $this->input['report_keys'])) { $entity['recurring_invoice.auto_bill_enabled'] = $invoice->auto_bill_enabled ? ctrans('texts.yes') : ctrans('texts.no'); } if (in_array('recurring_invoice.assigned_user_id', $this->input['report_keys'])) { $entity['recurring_invoice.assigned_user_id'] = $invoice->assigned_user ? $invoice->assigned_user->present()->name() : ''; } if (in_array('recurring_invoice.user_id', $this->input['report_keys'])) { $entity['recurring_invoice.user_id'] = $invoice->user ? $invoice->user->present()->name() : ''; } return $entity; } }