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_sales_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(); } private function buildRow(Client $client): array { $query = Invoice::where('client_id', $client->id) ->whereIn('status_id', [Invoice::STATUS_SENT, Invoice::STATUS_PARTIAL, Invoice::STATUS_PAID]); $query = $this->addDateRange($query); $amount = $query->sum('amount'); $balance = $query->sum('balance'); $paid = $amount-$balance; return [ $client->present()->name(), $client->number, $client->id_number, $query->count(), Number::formatMoney($amount, $client), Number::formatMoney($balance, $client), Number::formatMoney($query->sum('total_taxes'), $client), Number::formatMoney($amount-$balance, $client), ]; } public function buildHeader() :array { $header = []; foreach ($this->input['report_keys'] as $value) { $header[] = ctrans("texts.{$value}"); } return $header; } }