-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArticle.php
119 lines (93 loc) · 2.39 KB
/
Article.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?php
namespace App\Entity;
use App\Repository\ArticleRepository;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
use App\Trait\CalculsTrait;
#[ORM\Entity(repositoryClass: ArticleRepository::class)]
class Article
{
use CalculsTrait;
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 50)]
#[Assert\Type('string')]
#[Assert\NotBlank(message: 'not_blank')]
#[Assert\Length(
max: 50,
maxMessage: 'article.name.length',
)]
private ?string $name = null;
#[ORM\Column(type: Types::TEXT)]
#[Assert\Type('string')]
#[Assert\NotBlank(message: 'not_blank')]
private ?string $description = null;
#[ORM\Column(type: Types::DECIMAL, precision: 10, scale: 2)]
#[Assert\Type('numeric')]
#[Assert\NotBlank(message: 'not_blank')]
#[Assert\Positive(message: 'positive')]
#[Assert\Regex(
pattern: '/^\d+(\.\d{1,2})?$/',
message: 'decimal_max_2'
)]
private ?string $priceHT = null;
#[ORM\Column(length: 255)]
#[Assert\Type('string')]
private ?string $image = null;
public function getId(): ?int
{
return $this->id;
}
public function setId(int $id): static
{
$this->id = $id;
return $this;
}
public function getName(): string
{
return $this->name;
}
public function setName(string $name): static
{
$this->name = $name;
return $this;
}
public function getDescription(): string
{
return $this->description;
}
public function setDescription(string $description): static
{
$this->description = $description;
return $this;
}
public function getPriceHT(): string
{
return $this->priceHT;
}
public function setPriceHT(string $priceHT): static
{
$this->priceHT = $priceHT;
return $this;
}
public function getImage(): ?string
{
return $this->image;
}
public function setImage(string $image): static
{
$this->image = $image;
return $this;
}
public function getFullPathImage(): string
{
return 'uploads/articles/' . $this->getImage();
}
public function getPriceTTC(): float
{
return $this->calculateTTC($this->priceHT, 20);
}
}