Hide total in columns

This commit is contained in:
2026-07-12 08:05:14 -03:00
parent b4b7ef74d6
commit 405c7d2431
6 changed files with 142 additions and 0 deletions

View File

@@ -7,6 +7,11 @@ if (empty($column['project_id']) || ! $this->FinanceHelper->isEnabled($column['p
return;
}
// Per-column opt-out, toggled from the column dropdown menu.
if ($this->FinanceHelper->isTotalHidden($column['project_id'], $column['id'])) {
return;
}
$net = $this->FinanceHelper->columnNet($column);
if ($net > 0) {