added invoice text field to project and activity (#3335)

This commit is contained in:
Kevin Papst
2022-05-31 17:49:23 +02:00
committed by GitHub
parent a93e78bd34
commit 88bf534573
13 changed files with 116 additions and 3 deletions

View File

@@ -174,6 +174,12 @@ class Activity implements EntityWithMetaFields, EntityWithBudget
* )
*/
private $teams;
/**
* @var string|null
*
* @ORM\Column(name="invoice_text", type="text", nullable=true)
*/
private $invoiceText;
public function __construct()
{
@@ -338,6 +344,16 @@ class Activity implements EntityWithMetaFields, EntityWithBudget
return $this->teams;
}
public function getInvoiceText(): ?string
{
return $this->invoiceText;
}
public function setInvoiceText(?string $invoiceText): void
{
$this->invoiceText = $invoiceText;
}
/**
* @return string
*/