WIP: Implement application process

This commit is contained in:
Björn Fromme
2023-10-10 17:50:50 +02:00
parent 6910ab6134
commit 7084e1528e
11 changed files with 225 additions and 6 deletions
+4
View File
@@ -17,10 +17,14 @@ class Upload implements BlameableEntityInterface, TimestampableEntityInterface
public const TYPE_PHOTO = 'photo';
public const TYPE_CERTIFICATE = 'certificate';
public const TYPE_CONTRACT = 'contract';
public const TYPE_INVOICE = 'invoice';
public const STATUS_NEW = 'new';
public const STATUS_IN_PROCESS = 'in_process';
public const STATUS_CHECKED = 'checked';
public const STATUS_PAYED = 'payed';
public const STATUS_ERROR = 'error';
#[ORM\Id]
#[ORM\GeneratedValue]