mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-07-03 06:54:34 +02:00
Force that an currency has an iso currency code
Otherwise it will crash a lot of formatter code (and a currency which is not existing is not really useful)
This commit is contained in:
parent
059110ae7a
commit
2d5f23271f
2 changed files with 4 additions and 3 deletions
|
@ -62,6 +62,7 @@ class Currency extends AbstractStructuralDBElement
|
|||
* @var string the 3-letter ISO code of the currency
|
||||
*/
|
||||
#[Assert\Currency]
|
||||
#[Assert\NotBlank]
|
||||
#[Groups(['extended', 'full', 'import'])]
|
||||
#[ORM\Column(type: Types::STRING)]
|
||||
protected string $iso_code = "";
|
||||
|
@ -113,12 +114,12 @@ class Currency extends AbstractStructuralDBElement
|
|||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getIsoCode(): ?string
|
||||
public function getIsoCode(): string
|
||||
{
|
||||
return $this->iso_code;
|
||||
}
|
||||
|
||||
public function setIsoCode(?string $iso_code): self
|
||||
public function setIsoCode(string $iso_code): self
|
||||
{
|
||||
$this->iso_code = $iso_code;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue