mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
89 lines
2.9 KiB
PHP
89 lines
2.9 KiB
PHP
<?php
|
|
|
|
namespace App\Ninja\Reports;
|
|
|
|
use App\Models\Task;
|
|
use Utils;
|
|
use Auth;
|
|
|
|
class TaskReport extends AbstractReport
|
|
{
|
|
public function getColumns()
|
|
{
|
|
$columns = [
|
|
'client' => [],
|
|
'start_date' => [],
|
|
'project' => [],
|
|
'description' => [],
|
|
'duration' => [],
|
|
'amount' => [],
|
|
'user' => ['columnSelector-false'],
|
|
];
|
|
|
|
$user = auth()->user();
|
|
$account = $user->account;
|
|
|
|
if ($account->customLabel('task1')) {
|
|
$columns[$account->present()->customLabel('task1')] = ['columnSelector-false', 'custom'];
|
|
}
|
|
if ($account->customLabel('task2')) {
|
|
$columns[$account->present()->customLabel('task2')] = ['columnSelector-false', 'custom'];
|
|
}
|
|
|
|
return $columns;
|
|
}
|
|
|
|
public function run()
|
|
{
|
|
$account = Auth::user()->account;
|
|
$startDate = date_create($this->startDate);
|
|
$endDate = date_create($this->endDate);
|
|
$subgroup = $this->options['subgroup'];
|
|
|
|
$tasks = Task::scope()
|
|
->orderBy('created_at', 'desc')
|
|
->with('client.contacts', 'project', 'account', 'user')
|
|
->withArchived()
|
|
->dateRange($startDate, $endDate);
|
|
|
|
foreach ($tasks->get() as $task) {
|
|
$duration = $task->getDuration($startDate->format('U'), $endDate->modify('+1 day')->format('U'));
|
|
$amount = $task->getRate() * ($duration / 60 / 60);
|
|
if ($task->client && $task->client->currency_id) {
|
|
$currencyId = $task->client->currency_id;
|
|
} else {
|
|
$currencyId = auth()->user()->account->getCurrencyId();
|
|
}
|
|
|
|
$row = [
|
|
$task->client ? ($this->isExport ? $task->client->getDisplayName() : $task->client->present()->link) : trans('texts.unassigned'),
|
|
$this->isExport ? $task->getStartTime() : link_to($task->present()->url, $task->getStartTime()),
|
|
$task->present()->project,
|
|
$task->description,
|
|
Utils::formatTime($duration),
|
|
Utils::formatMoney($amount, $currencyId),
|
|
$task->user->getDisplayName(),
|
|
];
|
|
|
|
if ($account->customLabel('task1')) {
|
|
$row[] = $task->custom_value1;
|
|
}
|
|
if ($account->customLabel('task2')) {
|
|
$row[] = $task->custom_value2;
|
|
}
|
|
|
|
$this->data[] = $row;
|
|
|
|
$this->addToTotals($currencyId, 'duration', $duration);
|
|
$this->addToTotals($currencyId, 'amount', $amount);
|
|
|
|
if ($subgroup == 'project') {
|
|
$dimension = $task->present()->project;
|
|
} else {
|
|
$dimension = $this->getDimension($task);
|
|
}
|
|
$this->addChartData($dimension, $task->created_at, round($duration / 60 / 60, 2));
|
|
}
|
|
}
|
|
}
|