company->db); App::forgetInstance('translator'); App::setLocale($this->company->locale()); $t = app('translator'); $t->replace(Ninja::transformTranslations($this->company->settings)); $this->csv = Writer::createFromString(); $this->csv->insertOne([]); $this->csv->insertOne([]); $this->csv->insertOne([]); $this->csv->insertOne([]); $this->csv->insertOne([ctrans('texts.client_balance_report')]); $this->csv->insertOne([ctrans('texts.created_on'),' ',$this->translateDate(now()->format('Y-m-d'), $this->company->date_format(), $this->company->locale())]); if (count($this->input['report_keys']) == 0) { $this->input['report_keys'] = $this->report_keys; } $this->csv->insertOne($this->buildHeader()); Client::query() ->where('company_id', $this->company->id) ->where('is_deleted', 0) ->orderBy('balance', 'desc') ->cursor() ->each(function ($client) { $this->csv->insertOne($this->buildRow($client)); }); return $this->csv->toString(); } public function buildHeader(): array { $headers = []; foreach($this->report_keys as $key) { $headers[] = ctrans("texts.{$key}"); } return $headers; } private function buildRow(Client $client): array { $query = Invoice::query()->where('client_id', $client->id) ->whereIn('status_id', [Invoice::STATUS_SENT, Invoice::STATUS_PARTIAL]); $query = $this->addDateRange($query); return [ $client->present()->name(), $client->number, $client->id_number, $query->count(), $query->sum('balance'), $client->credit_balance, ]; } }