added invoice text field to project and activity (#3335)
This commit is contained in:
@@ -246,6 +246,12 @@ class Project implements EntityWithMetaFields, EntityWithBudget
|
||||
* )
|
||||
*/
|
||||
private $teams;
|
||||
/**
|
||||
* @var string|null
|
||||
*
|
||||
* @ORM\Column(name="invoice_text", type="text", nullable=true)
|
||||
*/
|
||||
private $invoiceText;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
@@ -520,6 +526,16 @@ class Project implements EntityWithMetaFields, EntityWithBudget
|
||||
return true;
|
||||
}
|
||||
|
||||
public function getInvoiceText(): ?string
|
||||
{
|
||||
return $this->invoiceText;
|
||||
}
|
||||
|
||||
public function setInvoiceText(?string $invoiceText): void
|
||||
{
|
||||
$this->invoiceText = $invoiceText;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user