group invoices by project and activity (#5675)

This commit is contained in:
Kevin Papst
2025-11-02 12:34:41 +01:00
committed by GitHub
parent cc64acf0f8
commit 636a51e721
3 changed files with 209 additions and 8 deletions

View File

@@ -0,0 +1,41 @@
<?php
/*
* This file is part of the Kimai time-tracking app.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Invoice\Calculator;
use App\Entity\ExportableItem;
use App\Invoice\CalculatorInterface;
use App\Invoice\InvoiceItem;
/**
* A calculator that sums up the invoice item records by project and activity.
*/
final class ProjectActivityInvoiceCalculator extends AbstractSumInvoiceCalculator implements CalculatorInterface
{
public function getIdentifiers(ExportableItem $invoiceItem): array
{
return [
$invoiceItem->getProject()?->getId(),
$invoiceItem->getActivity()?->getId()
];
}
protected function mergeSumInvoiceItem(InvoiceItem $invoiceItem, ExportableItem $entry): void
{
$project = $entry->getProject();
if ($project !== null) {
$invoiceItem->setDescription($project->getInvoiceText() ?? $project->getName());
}
}
public function getId(): string
{
return 'project_activity';
}
}

View File

@@ -44,14 +44,9 @@ final class ProjectUserInvoiceCalculator extends AbstractSumInvoiceCalculator im
protected function mergeSumInvoiceItem(InvoiceItem $invoiceItem, ExportableItem $entry): void
{
if ($entry->getProject() === null) {
return;
}
if ($entry->getProject()->getInvoiceText() !== null) {
$invoiceItem->setDescription($entry->getProject()->getInvoiceText());
} else {
$invoiceItem->setDescription($entry->getProject()->getName());
$project = $entry->getProject();
if ($project !== null) {
$invoiceItem->setDescription($project->getInvoiceText() ?? $project->getName());
}
}