Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
46 / 46 |
|
100.00% |
31 / 31 |
CRAP | |
100.00% |
1 / 1 |
| Fibukontenplanbaum | |
100.00% |
46 / 46 |
|
100.00% |
31 / 31 |
31 | |
100.00% |
1 / 1 |
| getArt | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| setArt | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
| getBilanziererkategorie | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| setBilanziererkategorie | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
| getBilanziererkonto | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| setBilanziererkonto | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
| getEuerkategorie | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| setEuerkategorie | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
| getEuerkonto | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| setEuerkonto | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
| getFormel | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| setFormel | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
| getIstsumme | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| setIstsumme | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
| getJahr | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| setJahr | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
| getKategorieausblenden | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| setKategorieausblenden | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
| getKontoart | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| setKontoart | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
| getKontoartuebernehmen | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| setKontoartuebernehmen | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
| getLfdnr | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| getName | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| setName | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
| getNr | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| setNr | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
| getVaterlfdnr | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| setVaterlfdnr | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
| getZeile | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| setZeile | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Satag\AmicronEntityBundle\Entity; |
| 6 | |
| 7 | use Doctrine\DBAL\Types\Types; |
| 8 | use Doctrine\ORM\Mapping as ORM; |
| 9 | use Satag\AmicronEntityBundle\Traits\BlameableEntity; |
| 10 | use Satag\AmicronEntityBundle\Traits\BlameableEntityInterface; |
| 11 | |
| 12 | #[ORM\Entity] |
| 13 | #[ORM\Table(name: 'FIBUKONTENPLANBAUM')] |
| 14 | class Fibukontenplanbaum implements BlameableEntityInterface |
| 15 | { |
| 16 | use BlameableEntity; |
| 17 | |
| 18 | #[ORM\Column(name: 'art', type: Types::STRING, length: 1, nullable: true)] |
| 19 | private ?string $art = null; |
| 20 | |
| 21 | #[ORM\Column(name: 'bilanziererkategorie', type: Types::STRING, length: 1, nullable: true)] |
| 22 | private ?string $bilanziererkategorie = null; |
| 23 | |
| 24 | #[ORM\Column(name: 'bilanziererkonto', type: Types::STRING, length: 1, nullable: true)] |
| 25 | private ?string $bilanziererkonto = null; |
| 26 | |
| 27 | #[ORM\Column(name: 'euerkategorie', type: Types::STRING, length: 1, nullable: true)] |
| 28 | private ?string $euerkategorie = null; |
| 29 | |
| 30 | #[ORM\Column(name: 'euerkonto', type: Types::STRING, length: 1, nullable: true)] |
| 31 | private ?string $euerkonto = null; |
| 32 | |
| 33 | #[ORM\Column(name: 'formel', type: Types::STRING, length: 255, nullable: true)] |
| 34 | private ?string $formel = null; |
| 35 | |
| 36 | #[ORM\Column(name: 'istsumme', type: Types::STRING, length: 1, nullable: false)] |
| 37 | private string $istsumme = 'N'; |
| 38 | |
| 39 | #[ORM\Column(name: 'jahr', type: Types::INTEGER, nullable: true)] |
| 40 | private ?int $jahr = null; |
| 41 | |
| 42 | #[ORM\Column(name: 'kategorieausblenden', type: Types::STRING, length: 1, nullable: true)] |
| 43 | private ?string $kategorieausblenden = null; |
| 44 | |
| 45 | #[ORM\Column(name: 'kontoart', type: Types::STRING, length: 1, nullable: true)] |
| 46 | private ?string $kontoart = null; |
| 47 | |
| 48 | #[ORM\Column(name: 'kontoartuebernehmen', type: Types::STRING, length: 1, nullable: true)] |
| 49 | private ?string $kontoartuebernehmen = null; |
| 50 | |
| 51 | #[ORM\Column(name: 'lfdnr', type: Types::INTEGER, nullable: false)] |
| 52 | #[ORM\Id] |
| 53 | #[ORM\GeneratedValue(strategy: 'SEQUENCE')] |
| 54 | #[ORM\SequenceGenerator(sequenceName: 'GEN_LFDNR', allocationSize: 1, initialValue: 1)] |
| 55 | public private(set) ?int $lfdnr = null; |
| 56 | |
| 57 | #[ORM\Column(name: 'name', type: Types::STRING, length: 100, nullable: true)] |
| 58 | private ?string $name = null; |
| 59 | |
| 60 | #[ORM\Column(name: 'nr', type: Types::STRING, length: 8, nullable: true)] |
| 61 | private ?string $nr = null; |
| 62 | |
| 63 | #[ORM\Column(name: 'vaterlfdnr', type: Types::INTEGER, nullable: true)] |
| 64 | private ?int $vaterlfdnr = null; |
| 65 | |
| 66 | #[ORM\Column(name: 'zeile', type: Types::INTEGER, nullable: true)] |
| 67 | private ?int $zeile = 0; |
| 68 | |
| 69 | public function getArt(): ?string |
| 70 | { |
| 71 | return $this->art; |
| 72 | } |
| 73 | |
| 74 | public function setArt(?string $art): self |
| 75 | { |
| 76 | $this->art = $art; |
| 77 | |
| 78 | return $this; |
| 79 | } |
| 80 | |
| 81 | public function getBilanziererkategorie(): ?string |
| 82 | { |
| 83 | return $this->bilanziererkategorie; |
| 84 | } |
| 85 | |
| 86 | public function setBilanziererkategorie(?string $bilanziererkategorie): self |
| 87 | { |
| 88 | $this->bilanziererkategorie = $bilanziererkategorie; |
| 89 | |
| 90 | return $this; |
| 91 | } |
| 92 | |
| 93 | public function getBilanziererkonto(): ?string |
| 94 | { |
| 95 | return $this->bilanziererkonto; |
| 96 | } |
| 97 | |
| 98 | public function setBilanziererkonto(?string $bilanziererkonto): self |
| 99 | { |
| 100 | $this->bilanziererkonto = $bilanziererkonto; |
| 101 | |
| 102 | return $this; |
| 103 | } |
| 104 | |
| 105 | public function getEuerkategorie(): ?string |
| 106 | { |
| 107 | return $this->euerkategorie; |
| 108 | } |
| 109 | |
| 110 | public function setEuerkategorie(?string $euerkategorie): self |
| 111 | { |
| 112 | $this->euerkategorie = $euerkategorie; |
| 113 | |
| 114 | return $this; |
| 115 | } |
| 116 | |
| 117 | public function getEuerkonto(): ?string |
| 118 | { |
| 119 | return $this->euerkonto; |
| 120 | } |
| 121 | |
| 122 | public function setEuerkonto(?string $euerkonto): self |
| 123 | { |
| 124 | $this->euerkonto = $euerkonto; |
| 125 | |
| 126 | return $this; |
| 127 | } |
| 128 | |
| 129 | public function getFormel(): ?string |
| 130 | { |
| 131 | return $this->formel; |
| 132 | } |
| 133 | |
| 134 | public function setFormel(?string $formel): self |
| 135 | { |
| 136 | $this->formel = $formel; |
| 137 | |
| 138 | return $this; |
| 139 | } |
| 140 | |
| 141 | public function getIstsumme(): string |
| 142 | { |
| 143 | return $this->istsumme; |
| 144 | } |
| 145 | |
| 146 | public function setIstsumme(string $istsumme): self |
| 147 | { |
| 148 | $this->istsumme = $istsumme; |
| 149 | |
| 150 | return $this; |
| 151 | } |
| 152 | |
| 153 | public function getJahr(): ?int |
| 154 | { |
| 155 | return $this->jahr; |
| 156 | } |
| 157 | |
| 158 | public function setJahr(?int $jahr): self |
| 159 | { |
| 160 | $this->jahr = $jahr; |
| 161 | |
| 162 | return $this; |
| 163 | } |
| 164 | |
| 165 | public function getKategorieausblenden(): ?string |
| 166 | { |
| 167 | return $this->kategorieausblenden; |
| 168 | } |
| 169 | |
| 170 | public function setKategorieausblenden(?string $kategorieausblenden): self |
| 171 | { |
| 172 | $this->kategorieausblenden = $kategorieausblenden; |
| 173 | |
| 174 | return $this; |
| 175 | } |
| 176 | |
| 177 | public function getKontoart(): ?string |
| 178 | { |
| 179 | return $this->kontoart; |
| 180 | } |
| 181 | |
| 182 | public function setKontoart(?string $kontoart): self |
| 183 | { |
| 184 | $this->kontoart = $kontoart; |
| 185 | |
| 186 | return $this; |
| 187 | } |
| 188 | |
| 189 | public function getKontoartuebernehmen(): ?string |
| 190 | { |
| 191 | return $this->kontoartuebernehmen; |
| 192 | } |
| 193 | |
| 194 | public function setKontoartuebernehmen(?string $kontoartuebernehmen): self |
| 195 | { |
| 196 | $this->kontoartuebernehmen = $kontoartuebernehmen; |
| 197 | |
| 198 | return $this; |
| 199 | } |
| 200 | |
| 201 | public function getLfdnr(): ?int |
| 202 | { |
| 203 | return $this->lfdnr; |
| 204 | } |
| 205 | |
| 206 | public function getName(): ?string |
| 207 | { |
| 208 | return $this->name; |
| 209 | } |
| 210 | |
| 211 | public function setName(?string $name): self |
| 212 | { |
| 213 | $this->name = $name; |
| 214 | |
| 215 | return $this; |
| 216 | } |
| 217 | |
| 218 | public function getNr(): ?string |
| 219 | { |
| 220 | return $this->nr; |
| 221 | } |
| 222 | |
| 223 | public function setNr(?string $nr): self |
| 224 | { |
| 225 | $this->nr = $nr; |
| 226 | |
| 227 | return $this; |
| 228 | } |
| 229 | |
| 230 | public function getVaterlfdnr(): ?int |
| 231 | { |
| 232 | return $this->vaterlfdnr; |
| 233 | } |
| 234 | |
| 235 | public function setVaterlfdnr(?int $vaterlfdnr): self |
| 236 | { |
| 237 | $this->vaterlfdnr = $vaterlfdnr; |
| 238 | |
| 239 | return $this; |
| 240 | } |
| 241 | |
| 242 | public function getZeile(): ?int |
| 243 | { |
| 244 | return $this->zeile; |
| 245 | } |
| 246 | |
| 247 | public function setZeile(?int $zeile): self |
| 248 | { |
| 249 | $this->zeile = $zeile; |
| 250 | |
| 251 | return $this; |
| 252 | } |
| 253 | } |