mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 12:12:48 +01:00
66 lines
1.9 KiB
PHP
66 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace App\Ninja\Reports;
|
|
|
|
use App\Models\Client;
|
|
use Auth;
|
|
|
|
class CreditReport extends AbstractReport
|
|
{
|
|
public function getColumns()
|
|
{
|
|
$columns = [
|
|
'client' => [],
|
|
'amount' => [],
|
|
'balance' => [],
|
|
'user' => ['columnSelector-false'],
|
|
];
|
|
|
|
return $columns;
|
|
}
|
|
|
|
public function run()
|
|
{
|
|
$account = Auth::user()->account;
|
|
$subgroup = $this->options['subgroup'];
|
|
|
|
$clients = Client::scope()
|
|
->orderBy('name')
|
|
->withArchived()
|
|
->with(['contacts', 'user', 'credits' => function ($query) {
|
|
$query->where('credit_date', '>=', $this->startDate)
|
|
->where('credit_date', '<=', $this->endDate)
|
|
->withArchived();
|
|
}]);
|
|
|
|
foreach ($clients->get() as $client) {
|
|
$amount = 0;
|
|
$balance = 0;
|
|
|
|
foreach ($client->credits as $credit) {
|
|
$amount += $credit->amount;
|
|
$balance += $credit->balance;
|
|
|
|
$dimension = $this->getDimension($client);
|
|
$this->addChartData($dimension, $credit->credit_date, $credit->amount);
|
|
}
|
|
|
|
if (! $amount && ! $balance) {
|
|
continue;
|
|
}
|
|
|
|
$row = [
|
|
$this->isExport ? $client->getDisplayName() : $client->present()->link,
|
|
$account->formatMoney($amount, $client),
|
|
$account->formatMoney($balance, $client),
|
|
$client->user->getDisplayName(),
|
|
];
|
|
|
|
$this->data[] = $row;
|
|
|
|
$this->addToTotals($client->currency_id, 'amount', $amount);
|
|
$this->addToTotals($client->currency_id, 'balance', $balance);
|
|
}
|
|
}
|
|
}
|