mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
97 lines
3.3 KiB
PHP
97 lines
3.3 KiB
PHP
<?php
|
|
|
|
namespace App\Ninja\Reports;
|
|
|
|
use App\Models\Client;
|
|
use Auth;
|
|
|
|
class ClientReport extends AbstractReport
|
|
{
|
|
public function getColumns()
|
|
{
|
|
$columns = [
|
|
'client' => [],
|
|
'amount' => [],
|
|
'paid' => [],
|
|
'balance' => [],
|
|
'id_number' => ['columnSelector-false'],
|
|
'vat_number' => ['columnSelector-false'],
|
|
'public_notes' => ['columnSelector-false'],
|
|
'private_notes' => ['columnSelector-false'],
|
|
'user' => ['columnSelector-false'],
|
|
];
|
|
|
|
$user = auth()->user();
|
|
$account = $user->account;
|
|
|
|
if ($account->customLabel('client1')) {
|
|
$columns[$account->present()->customLabel('client1')] = ['columnSelector-false', 'custom'];
|
|
}
|
|
if ($account->customLabel('client2')) {
|
|
$columns[$account->present()->customLabel('client2')] = ['columnSelector-false', 'custom'];
|
|
}
|
|
|
|
return $columns;
|
|
}
|
|
|
|
public function run()
|
|
{
|
|
$account = Auth::user()->account;
|
|
$subgroup = $this->options['subgroup'];
|
|
|
|
$clients = Client::scope()
|
|
->orderBy('name')
|
|
->withArchived()
|
|
->with(['contacts', 'user'])
|
|
->with(['invoices' => function ($query) {
|
|
$query->where('invoice_date', '>=', $this->startDate)
|
|
->where('invoice_date', '<=', $this->endDate)
|
|
->where('invoice_type_id', '=', INVOICE_TYPE_STANDARD)
|
|
->where('is_recurring', '=', false)
|
|
->withArchived();
|
|
}]);
|
|
|
|
foreach ($clients->get() as $client) {
|
|
$amount = 0;
|
|
$paid = 0;
|
|
|
|
foreach ($client->invoices as $invoice) {
|
|
$amount += $invoice->amount;
|
|
$paid += $invoice->getAmountPaid();
|
|
|
|
if ($subgroup == 'country') {
|
|
$dimension = $client->present()->country;
|
|
} else {
|
|
$dimension = $this->getDimension($client);
|
|
}
|
|
$this->addChartData($dimension, $invoice->invoice_date, $invoice->amount);
|
|
}
|
|
|
|
$row = [
|
|
$this->isExport ? $client->getDisplayName() : $client->present()->link,
|
|
$account->formatMoney($amount, $client),
|
|
$account->formatMoney($paid, $client),
|
|
$account->formatMoney($amount - $paid, $client),
|
|
$client->id_number,
|
|
$client->vat_number,
|
|
$client->public_notes,
|
|
$client->private_notes,
|
|
$client->user->getDisplayName(),
|
|
];
|
|
|
|
if ($account->customLabel('client1')) {
|
|
$row[] = $client->custom_value1;
|
|
}
|
|
if ($account->customLabel('client2')) {
|
|
$row[] = $client->custom_value2;
|
|
}
|
|
|
|
$this->data[] = $row;
|
|
|
|
$this->addToTotals($client->currency_id, 'amount', $amount);
|
|
$this->addToTotals($client->currency_id, 'paid', $paid);
|
|
$this->addToTotals($client->currency_id, 'balance', $amount - $paid);
|
|
}
|
|
}
|
|
}
|