feat: additional receipts as attachments to teamer invoices

addresses #869dv97u9
This commit is contained in:
2026-09-09 11:10:57 +02:00
parent 16d847137d
commit 52926ec6cc
29 changed files with 682 additions and 23 deletions
@@ -37,13 +37,13 @@ class CreateController extends AbstractController
/** @var User $user */
$user = $this->getUser();
$photo = Upload::fromUploadDto($uploadSession->getUploads()->first(), $user, Upload::TYPE_PHOTO);
$photo = Upload::fromUploadDto($uploadSession->getUploadsByType(Upload::TYPE_PHOTO)->first(), $user, Upload::TYPE_PHOTO);
$contact->setPhoto($photo);
$this->entityManager->flush();
$this->uploadHandler->moveUploadSessionFilesFromOrphanage(Upload::TYPE_PHOTO, $uploadSession);
$this->uploadHandler->destroyUploadSession();
$this->uploadHandler->removeUploadSessionUploadsByType(Upload::TYPE_PHOTO);
}
$form = $this->createForm(ContactType::class, $contact, ['upload_session' => $uploadSession]);
@@ -34,14 +34,14 @@ class EditController extends AbstractController
if (true === $request->isMethod('POST') && 0 < $uploadSession->getCount()) {
/** @var User $user */
$user = $this->getUser();
$photo = Upload::fromUploadDto($uploadSession->getUploads()->first(), $user, Upload::TYPE_PHOTO);
$photo = Upload::fromUploadDto($uploadSession->getUploadsByType(Upload::TYPE_PHOTO)->first(), $user, Upload::TYPE_PHOTO);
if (null !== $existingPhoto = $contact->getPhoto()) {
$this->entityManager->remove($existingPhoto);
}
$contact->setPhoto($photo);
$this->entityManager->flush();
$this->uploadHandler->moveUploadSessionFilesFromOrphanage(Upload::TYPE_PHOTO, $uploadSession);
$this->uploadHandler->destroyUploadSession();
$this->uploadHandler->removeUploadSessionUploadsByType(Upload::TYPE_PHOTO);
}
$form = $this->createForm(ContactType::class, $contact, ['upload_session' => $uploadSession]);
@@ -89,7 +89,7 @@ class DocumentUploadController extends AbstractController
$uploadSession = $this->uploadHandler->getUploadSession();
$upload = Upload::fromUploadDto(
$uploadSession->getUploads()->first(),
$uploadSession->getUploadsByType($type)->first(),
$teamer->getUser(),
$type
);
@@ -113,7 +113,7 @@ class DocumentUploadController extends AbstractController
$this->entityManager->flush();
$this->uploadHandler->moveUploadSessionFilesFromOrphanage($type, $uploadSession);
$this->uploadHandler->destroyUploadSession();
$this->uploadHandler->removeUploadSessionUploadsByType($type);
if (true === $this->featureManager->isActive('sanitize_uploads')) {
$this->uploadHandler->ensurePdf($upload);
@@ -94,6 +94,9 @@ class CheckController extends AbstractController
return $this->render('administrative/document/modal_check.html.twig', [
'document' => $document,
'form' => $form->createView(),
'receipts' => Upload::TYPE_INVOICE === $document->getType()
? $document->getDisposition()?->getDocumentsByType(Upload::TYPE_RECEIPT)
: null,
]);
}
@@ -117,6 +120,25 @@ class CheckController extends AbstractController
$this->entityManager->flush();
}
private function removeReceipts(Upload $document): void
{
$receipts = $document->getDisposition()?->getDocumentsByType(Upload::TYPE_RECEIPT);
if (null === $receipts || 0 === $receipts->count()) {
return;
}
foreach ($receipts as $receipt) {
$this->entityManager->remove($receipt);
}
$this->logger->info('Delete receipts of accepted invoice', [
'document_id' => $document->getId(),
'disposition_id' => $document->getDisposition()->getId(),
'count' => $receipts->count(),
]);
}
private function confirmDocument(Upload $document, string $transition, string $status, DocumentCheckDto $formData): void
{
/** @var User $user */
@@ -147,6 +169,14 @@ class CheckController extends AbstractController
if (true === $this->workflow->can($document->getDisposition(), $transition)) {
$this->workflow->apply($document->getDisposition(), $transition);
// Belege only have to survive until the Honorarnote is accepted. Removing them here
// and not before the guard means a blocked confirmation - which still persists the
// new document status below - cannot destroy the evidence for an invoice that was in
// fact not approved. DeleteUploadListener removes the files from disk on preRemove.
if (Upload::TYPE_INVOICE === $document->getType() && Upload::STATUS_PAID === $status) {
$this->removeReceipts($document);
}
} else {
$blockers = $this->workflow->buildTransitionBlockerList($document->getDisposition(), $transition);
foreach ($blockers as $blocker) {
@@ -32,10 +32,10 @@ class ReplaceController extends AbstractController
if (true === $request->isMethod('POST') && 0 < $uploadSession->getCount()) {
/** @var User $user */
$user = $this->getUser();
Upload::fromUploadDto($uploadSession->getUploads()->first(), $user, Upload::TYPE_DOCUMENT, $upload);
Upload::fromUploadDto($uploadSession->getUploadsByType(Upload::TYPE_DOCUMENT)->first(), $user, Upload::TYPE_DOCUMENT, $upload);
$this->entityManager->flush();
$this->uploadHandler->moveUploadSessionFilesFromOrphanage(Upload::TYPE_DOCUMENT, $uploadSession);
$this->uploadHandler->destroyUploadSession();
$this->uploadHandler->removeUploadSessionUploadsByType(Upload::TYPE_DOCUMENT);
}
$filenameBefore = $upload->getOriginalFilename();
@@ -39,14 +39,14 @@ class UploadController extends AbstractController
if (true === $request->isMethod('POST') && 0 < $uploadSession->getCount()) {
/** @var User $user */
$user = $this->getUser();
foreach ($uploadSession->getUploads() as $upload) {
foreach ($uploadSession->getUploadsByType(Upload::TYPE_DOCUMENT) as $upload) {
$document = Upload::fromUploadDto($upload, $user, Upload::TYPE_DOCUMENT);
$uploadedDocuments[] = $document;
$this->entityManager->persist($document);
}
$this->entityManager->flush();
$this->uploadHandler->moveUploadSessionFilesFromOrphanage(Upload::TYPE_DOCUMENT, $uploadSession);
$this->uploadHandler->destroyUploadSession();
$this->uploadHandler->removeUploadSessionUploadsByType(Upload::TYPE_DOCUMENT);
}
if ($form->isSubmitted() && $form->isValid()) {
@@ -133,13 +133,13 @@ class DriverLicenseController extends AbstractController
$this->entityManager->remove($existingUpload);
}
$upload = Upload::fromUploadDto($uploadSession->getUploads()->first(), $user, Upload::TYPE_DRIVER_LICENSE);
$upload = Upload::fromUploadDto($uploadSession->getUploadsByType(Upload::TYPE_DRIVER_LICENSE)->first(), $user, Upload::TYPE_DRIVER_LICENSE);
$upload->setStatus(Upload::STATUS_NEW);
$teamer->setDriverLicenseUpload($upload);
$this->entityManager->flush();
$this->uploadHandler->moveUploadSessionFilesFromOrphanage(Upload::TYPE_DRIVER_LICENSE, $uploadSession);
$this->uploadHandler->destroyUploadSession();
$this->uploadHandler->removeUploadSessionUploadsByType(Upload::TYPE_DRIVER_LICENSE);
}
}
@@ -86,14 +86,18 @@ class DetailController extends AbstractController
/** @var User $user */
$user = $this->getUser();
$upload = Upload::fromUploadDto($uploadSession->getUploads()->first(), $user, Upload::TYPE_CONTRACT);
$upload = Upload::fromUploadDto(
$uploadSession->getUploadsByType(Upload::TYPE_CONTRACT)->first(),
$user,
Upload::TYPE_CONTRACT
);
$upload->setStatus(Upload::STATUS_NEW);
$disposition->addDocument($upload);
$this->workflow->apply($disposition, 'upload_contract');
$this->uploadHandler->moveUploadSessionFilesFromOrphanage(Upload::TYPE_CONTRACT, $uploadSession);
$this->uploadHandler->destroyUploadSession();
$this->uploadHandler->removeUploadSessionUploadsByType(Upload::TYPE_CONTRACT);
if (true === $this->featureManager->isActive('sanitize_uploads')) {
$this->uploadHandler->ensurePdf($upload);
@@ -119,14 +123,18 @@ class DetailController extends AbstractController
/** @var User $user */
$user = $this->getUser();
$upload = Upload::fromUploadDto($uploadSession->getUploads()->first(), $user, Upload::TYPE_INVOICE);
$upload = Upload::fromUploadDto(
$uploadSession->getUploadsByType(Upload::TYPE_INVOICE)->first(),
$user,
Upload::TYPE_INVOICE
);
$upload->setStatus(Upload::STATUS_NEW);
$disposition->addDocument($upload);
$this->workflow->apply($disposition, 'upload_invoice');
$this->uploadHandler->moveUploadSessionFilesFromOrphanage(Upload::TYPE_INVOICE, $uploadSession);
$this->uploadHandler->destroyUploadSession();
$this->uploadHandler->removeUploadSessionUploadsByType(Upload::TYPE_INVOICE);
if (true === $this->featureManager->isActive('sanitize_uploads')) {
$this->uploadHandler->ensurePdf($upload);
@@ -0,0 +1,156 @@
<?php
namespace App\Controller\Teamer\Disposition;
use App\Entity\Disposition;
use App\Entity\Upload;
use App\Entity\User;
use App\Htmx\HxRedirectResponse;
use App\Model\UploadDto;
use App\Service\Upload\UploadHandler;
use Doctrine\ORM\EntityManagerInterface;
use Flagception\Manager\FeatureManagerInterface;
use Psr\Log\LoggerInterface;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Attribute\Route;
use Symfony\Component\Security\Http\Attribute\IsGranted;
/**
* Belege backing a Honorarnote.
*
* Deliberately separate from DetailController and from the disposition workflow: a receipt is
* evidence for the invoice, never a document in its own right. It is not approved or rejected, it
* carries no status, and it applies no transition - which is what lets a teamer keep managing
* receipts while the invoice is being checked, a phase in which the state machine offers no
* transition at all. The window is guarded by the MANAGE_RECEIPTS attribute on the disposition.
*/
class ReceiptController extends AbstractController
{
public function __construct(
private readonly UploadHandler $uploadHandler,
private readonly EntityManagerInterface $entityManager,
private readonly LoggerInterface $logger,
private readonly FeatureManagerInterface $featureManager,
) {
}
#[Route('/teamer/disposition/receipt/{uuid}', name: 'app_teamer_disposition_receipt_upload')]
#[IsGranted('ROLE_TEAMER')]
#[IsGranted('MANAGE_RECEIPTS', subject: 'disposition')]
public function upload(Disposition $disposition, Request $request): Response
{
// Dummy form without fields, as elsewhere: the files travel in the upload session, not in
// the form itself.
$form = $this->createFormBuilder()->getForm();
$form->handleRequest($request);
if ($form->isSubmitted() && $form->isValid()) {
$count = $this->processUpload($disposition);
$this->addFlash(
'success',
1 === $count ? 'Der Beleg wurde hochgeladen' : 'Die Belege wurden hochgeladen'
);
return new HxRedirectResponse($this->generateUrl('app_teamer_disposition_detail', [
'uuid' => $disposition->getUuid(),
'r' => $request->query->get('r'),
]));
}
return $this->render('teamer/disposition/modal_receipt_upload.html.twig', [
'disposition' => $disposition,
'form' => $form->createView(),
]);
}
#[Route('/teamer/disposition/receipt/delete/{uuid}', name: 'app_teamer_disposition_receipt_delete')]
#[IsGranted('ROLE_TEAMER')]
#[IsGranted('DELETE', subject: 'receipt')]
public function delete(Upload $receipt, Request $request): Response
{
if (Upload::TYPE_RECEIPT !== $receipt->getType()) {
throw $this->createNotFoundException('Not a receipt');
}
// UploadVoter::DELETE only asserts ownership, which would still hold once the invoice has
// been accepted. The window itself is the disposition's to answer.
$this->denyAccessUnlessGranted('MANAGE_RECEIPTS', $receipt->getDisposition());
if (true === $request->isMethod('POST')) {
$disposition = $receipt->getDisposition();
// Doctrine's DeleteUploadListener removes the file from disk on preRemove.
$this->entityManager->remove($receipt);
$this->entityManager->flush();
$this->addFlash('success', 'Der Beleg wurde gelöscht');
$this->logger->info('Delete receipt', [
'disposition_id' => $disposition->getId(),
'receipt_filename' => $receipt->getOriginalFilename(),
'owner' => $receipt->getOwner()->getFullName(),
]);
return new HxRedirectResponse($this->generateUrl('app_teamer_disposition_detail', [
'uuid' => $disposition->getUuid(),
'r' => $request->query->get('r'),
]));
}
return $this->render('teamer/disposition/modal_receipt_delete.html.twig', [
'receipt' => $receipt,
]);
}
private function processUpload(Disposition $disposition): int
{
/** @var User $user */
$user = $this->getUser();
$uploadSession = $this->uploadHandler->getUploadSession();
// Only this dropzone's files: on the detail page in place "ended" the invoice dropzone is
// live at the same time and shares the one session.
$uploadDtos = $uploadSession->getUploadsByType(Upload::TYPE_RECEIPT);
$uploads = [];
/** @var UploadDto $uploadDto */
foreach ($uploadDtos as $uploadDto) {
$upload = Upload::fromUploadDto($uploadDto, $user, Upload::TYPE_RECEIPT);
// No status on purpose. UploadVoter grants CHECK only for "new" and "pending", so a
// null status is what keeps a receipt out of the checking process by construction.
$upload->setStatus(null);
$disposition->addDocument($upload);
$this->entityManager->persist($upload);
$uploads[] = $upload;
}
$this->uploadHandler->moveUploadSessionFilesFromOrphanage(Upload::TYPE_RECEIPT, $uploadSession);
$this->uploadHandler->removeUploadSessionUploadsByType(Upload::TYPE_RECEIPT);
if (true === $this->featureManager->isActive('sanitize_uploads')) {
foreach ($uploads as $upload) {
$this->uploadHandler->ensurePdf($upload);
}
}
$this->entityManager->flush();
$this->logger->info('Upload receipts', [
'user' => $user->getUserIdentifier(),
'disposition_id' => $disposition->getId(),
'count' => count($uploads),
]);
// No DocumentUploadedEvent: its listener mails the managers about a document waiting to be
// checked, which is exactly what a receipt is not.
return count($uploads);
}
}
@@ -96,11 +96,11 @@ class IndexController extends AbstractController
$this->entityManager->remove($existingUpload);
}
$upload = Upload::fromUploadDto($uploadSession->getUploads()->first(), $user, Upload::TYPE_PHOTO);
$upload = Upload::fromUploadDto($uploadSession->getUploadsByType(Upload::TYPE_PHOTO)->first(), $user, Upload::TYPE_PHOTO);
$teamer->setPhoto($upload);
$this->entityManager->flush();
$this->uploadHandler->moveUploadSessionFilesFromOrphanage(Upload::TYPE_PHOTO, $uploadSession);
$this->uploadHandler->destroyUploadSession();
$this->uploadHandler->removeUploadSessionUploadsByType(Upload::TYPE_PHOTO);
$this->addFlash('success', 'Dein Profilbild wurde aktualisiert');
$this->logger->info('Update teamer photo', [
@@ -73,11 +73,11 @@ class AddController extends AbstractController
private function updateCertificate(User $user, License $license, UploadSessionDto $uploadSession): void
{
$upload = Upload::fromUploadDto($uploadSession->getUploads()->first(), $user, Upload::TYPE_CERTIFICATE);
$upload = Upload::fromUploadDto($uploadSession->getUploadsByType(Upload::TYPE_CERTIFICATE)->first(), $user, Upload::TYPE_CERTIFICATE);
$license->setCertificate($upload);
$this->entityManager->flush();
$this->uploadHandler->moveUploadSessionFilesFromOrphanage(Upload::TYPE_CERTIFICATE, $uploadSession);
$this->uploadHandler->destroyUploadSession();
$this->uploadHandler->removeUploadSessionUploadsByType(Upload::TYPE_CERTIFICATE);
$this->addFlash('success', 'Der Nachweis wurde hochgeladen');
}
+14
View File
@@ -188,6 +188,20 @@ class Disposition implements BlameableEntityInterface, TimestampableEntityInterf
return null;
}
/**
* Unlike getDocumentByType() this returns every match, for the types a disposition can hold
* more than one of. Belege are the only such type today: there is exactly one Honorarvertrag
* and one Honorarnote, but any number of receipts backing the latter.
*
* @return Collection<int, Upload>
*/
public function getDocumentsByType(string $type): Collection
{
return $this->documents->filter(function (Upload $upload) use ($type) {
return $type === $upload->getType();
});
}
public function addDocument(Upload $document): static
{
if (!$this->documents->contains($document)) {
+2
View File
@@ -22,6 +22,7 @@ class Upload implements BlameableEntityInterface, TimestampableEntityInterface
public const TYPE_INVOICE = 'invoice';
public const TYPE_DOCUMENT = 'document';
public const TYPE_DRIVER_LICENSE = 'driver_license';
public const TYPE_RECEIPT = 'receipt';
public const STATUS_NEW = 'new';
public const STATUS_PENDING = 'pending';
@@ -135,6 +136,7 @@ class Upload implements BlameableEntityInterface, TimestampableEntityInterface
self::TYPE_INVOICE => 'Honorarnote',
self::TYPE_DOCUMENT => 'Info',
self::TYPE_DRIVER_LICENSE => 'Führerschein',
self::TYPE_RECEIPT => 'Beleg',
default => 'Dokument',
};
}
+4 -1
View File
@@ -25,12 +25,15 @@ class UploadSessionListener
// Get original filename from Dropzone request
$originalFileName = $request->request->get('originalFilename');
// The mapping name, which is 1:1 with the Upload::TYPE_* values. Without it the session
// is a flat list and a page with two dropzones cannot tell its own files apart.
$upload = new UploadDto(
$uuid,
$uploadedFile->getFilename(),
$originalFileName,
$uploadedFile->getMimeType(),
$uploadedFile->getSize()
$uploadedFile->getSize(),
$event->getType()
);
$uploadSession = $this->uploadHandler->addUploadToSession($upload);
+17
View File
@@ -4,13 +4,25 @@ namespace App\Model;
class UploadDto
{
/**
* The oneup_uploader mapping the file was uploaded through, which is 1:1 with the
* Upload::TYPE_* values. Deliberately not a promoted constructor property: the enclosing
* UploadSessionDto is serialized into the PHP session, and a promoted property carries no
* class-level default, so entries written before this field existed would deserialize
* uninitialized and throw on access. Nullable with a real default lets them come back as
* "unknown type", which matches no type and is therefore ignored.
*/
private ?string $type = null;
public function __construct(
private readonly string $uuid,
private readonly string $filename,
private readonly string $originalFilename,
private readonly string $mimeType,
private readonly int $size,
?string $type = null,
) {
$this->type = $type;
}
public function getUuid(): string
@@ -37,4 +49,9 @@ class UploadDto
{
return $this->size;
}
public function getType(): ?string
{
return $this->type;
}
}
+23
View File
@@ -52,6 +52,29 @@ class UploadSessionDto
return $this->uploads;
}
/**
* The uploads that came in through one oneup_uploader mapping. Two dropzones can be live on
* the same page (the Honorarnote and its Belege), and the session is one flat list, so a
* consumer must never take getUploads()->first() and hope.
*
* @return Collection<int, UploadDto>
*/
public function getUploadsByType(string $type): Collection
{
return $this->uploads->filter(function (UploadDto $upload) use ($type) {
return $type === $upload->getType();
});
}
public function removeUploadsByType(string $type): static
{
foreach ($this->getUploadsByType($type) as $upload) {
$this->uploads->removeElement($upload);
}
return $this;
}
public function flushUploads(): static
{
$this->uploads->clear();
+9
View File
@@ -143,6 +143,15 @@ class UploadRepository extends ServiceEntityRepository
->andWhere($qb->expr()->eq('upload.type', ':type'))
->setParameter('type', $type)
;
} else {
// Belege are evidence for a Honorarnote, never checked in their own right - they have
// no status and are reachable from the check modal of their invoice. This is the only
// upload query that is not already scoped to a type, so it is the only one that would
// otherwise pad the list with them.
$qb
->andWhere($qb->expr()->neq('upload.type', ':excludedType'))
->setParameter('excludedType', Upload::TYPE_RECEIPT)
;
}
if (null !== $dateFrom = $filterDto->getDateFrom()) {
+34
View File
@@ -21,6 +21,7 @@ class DispositionVoter extends Voter
public const INVOICE = 'INVOICE';
public const FEEDBACK = 'FEEDBACK';
public const CALL_OFF = 'CALL_OFF';
public const MANAGE_RECEIPTS = 'MANAGE_RECEIPTS';
public function __construct(private readonly Security $security)
{
@@ -42,6 +43,7 @@ class DispositionVoter extends Voter
static::INVOICE,
static::FEEDBACK,
static::CALL_OFF,
static::MANAGE_RECEIPTS,
]);
}
@@ -66,10 +68,42 @@ class DispositionVoter extends Voter
static::ADMIN_DOCUMENT_UPLOAD => $this->assertAdminDocumentUploadAllowed($disposition),
static::CALL_OFF => $this->security->isGranted('ROLE_ADMINISTRATIVE')
&& Disposition::STATUS_CALLED_OFF !== $disposition->getStatus(),
static::MANAGE_RECEIPTS => $this->assertManageReceiptsAllowed($token, $disposition),
default => false,
};
}
/**
* Whether Belege backing the Honorarnote may be added, listed or deleted.
*
* This is deliberately a permission and not a workflow transition. The disposition state
* machine offers upload_invoice only from "ended", so a teamer whose invoice is being checked
* has no transition available at all - which is precisely the phase in which receipts must
* stay manageable. Receipts also have to survive the ended -> checking_invoice -> ended
* bouncing that upload_invoice and reject_invoice cause, so the window is expressed as the two
* places themselves rather than as anything workflow_can() could answer. Do not "tidy" this
* into a workflow check.
*
* Once the invoice is accepted the disposition leaves for "completed" and the receipts are
* deleted (see Administrative\Document\CheckController), so the window closes on its own.
*/
private function assertManageReceiptsAllowed(TokenInterface $token, Disposition $disposition): bool
{
if (true === $disposition->isSkipFormalities()) {
return false;
}
if (false === $this->security->isGranted('ROLE_ADMINISTRATIVE')
&& false === $this->assertTeamerAccess($token, $disposition)) {
return false;
}
return in_array($disposition->getStatus(), [
Disposition::STATUS_ENDED,
Disposition::STATUS_CHECKING_INVOICE,
], true);
}
private function assertHouseManagerAccess(TokenInterface $token, Disposition $disposition): bool
{
if (false === $this->security->isGranted('ROLE_HOUSE_MANAGER')) {
+24 -2
View File
@@ -23,7 +23,10 @@ class UploadHandler
private readonly LoggerInterface $logger,
private readonly string $projectDir,
private readonly string $environment,
private readonly string $uploadReplacementFile,
// Bound from %env(default::UPLOAD_REPLACEMENT_FILE)%, whose empty fallback parameter
// resolves to null when the variable is not set at all - so "unset", "set to empty" and
// "absent" all have to mean the same thing here.
private readonly ?string $uploadReplacementFile,
) {
}
@@ -65,6 +68,23 @@ class UploadHandler
return $uploadSession;
}
/**
* Drops the uploads of one mapping from the session and writes the trimmed DTO back, so a
* consumer clears only what it has just persisted. destroyUploadSession() below still exists
* for a full reset, but a page with two dropzones must not use it: it would throw away the
* files belonging to the other one.
*/
public function removeUploadSessionUploadsByType(string $type): UploadSessionDto
{
$uploadSession = $this->getUploadSession();
$uploadSession->removeUploadsByType($type);
$session = $this->requestStack->getSession();
$session->set(self::SESSION_KEY, $uploadSession);
return $uploadSession;
}
public function removeUploadFromSession(string $filename): UploadSessionDto
{
$uploadSession = $this->getUploadSession();
@@ -153,7 +173,9 @@ class UploadHandler
{
$originalPath = $this->getUploadFilepath($upload);
if ('' === $this->uploadReplacementFile || 'prod' === $this->environment) {
if (null === $this->uploadReplacementFile
|| '' === $this->uploadReplacementFile
|| 'prod' === $this->environment) {
return $originalPath;
}