Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 49 |
|
0.00% |
0 / 33 |
CRAP | |
0.00% |
0 / 1 |
| Fibubuchungsvorlagen | |
0.00% |
0 / 49 |
|
0.00% |
0 / 33 |
1122 | |
0.00% |
0 / 1 |
| getArt | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setArt | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getBeleg | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setBeleg | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getBemerkung | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setBemerkung | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getBetrag | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setBetrag | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getBezeichnung | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setBezeichnung | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getBuchungstext | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setBuchungstext | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getGegenkonto | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setGegenkonto | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getHabenkonto | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setHabenkonto | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getKategorie | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setKategorie | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getKonto | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setKonto | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getLfdnr | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| getSollkonto | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setSollkonto | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getTagsanwenden | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setTagsanwenden | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getTagsauftraggeber | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setTagsauftraggeber | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getTagsbuchungstext | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setTagsbuchungstext | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getTagsueberweisungsbetrag | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setTagsueberweisungsbetrag | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getUebernahmemodus | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setUebernahmemodus | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| 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 | |
| 10 | #[ORM\Entity] |
| 11 | #[ORM\Table(name: 'FIBUBUCHUNGSVORLAGEN')] |
| 12 | class Fibubuchungsvorlagen |
| 13 | { |
| 14 | #[ORM\Column(name: 'art', type: Types::STRING, length: 1, nullable: true)] |
| 15 | private ?string $art = null; |
| 16 | |
| 17 | #[ORM\Column(name: 'beleg', type: Types::STRING, length: 20, nullable: true)] |
| 18 | private ?string $beleg = null; |
| 19 | |
| 20 | #[ORM\Column(name: 'bemerkung', type: Types::TEXT, nullable: true)] |
| 21 | private ?string $bemerkung = null; |
| 22 | |
| 23 | #[ORM\Column(name: 'betrag', type: 'amicron_decimal', precision: 15, scale: 6, nullable: true)] |
| 24 | private ?string $betrag = null; |
| 25 | |
| 26 | #[ORM\Column(name: 'bezeichnung', type: Types::STRING, length: 25, nullable: true)] |
| 27 | private ?string $bezeichnung = null; |
| 28 | |
| 29 | #[ORM\Column(name: 'buchungstext', type: Types::STRING, length: 50, nullable: true)] |
| 30 | private ?string $buchungstext = null; |
| 31 | |
| 32 | #[ORM\Column(name: 'gegenkonto', type: Types::STRING, length: 8, nullable: true)] |
| 33 | private ?string $gegenkonto = null; |
| 34 | |
| 35 | #[ORM\Column(name: 'habenkonto', type: Types::STRING, length: 8, nullable: true)] |
| 36 | private ?string $habenkonto = null; |
| 37 | |
| 38 | #[ORM\Column(name: 'kategorie', type: Types::STRING, length: 20, nullable: true)] |
| 39 | private ?string $kategorie = null; |
| 40 | |
| 41 | #[ORM\Column(name: 'konto', type: Types::STRING, length: 8, nullable: true)] |
| 42 | private ?string $konto = null; |
| 43 | |
| 44 | #[ORM\Column(name: 'lfdnr', type: Types::INTEGER, nullable: false)] |
| 45 | #[ORM\Id] |
| 46 | #[ORM\GeneratedValue(strategy: 'SEQUENCE')] |
| 47 | #[ORM\SequenceGenerator(sequenceName: 'GEN_LFDNR', allocationSize: 1, initialValue: 1)] |
| 48 | public private(set) ?int $lfdnr = null; |
| 49 | |
| 50 | #[ORM\Column(name: 'sollkonto', type: Types::STRING, length: 8, nullable: true)] |
| 51 | private ?string $sollkonto = null; |
| 52 | |
| 53 | #[ORM\Column(name: 'tagsanwenden', type: Types::SMALLINT, nullable: true)] |
| 54 | private ?int $tagsanwenden = 0; |
| 55 | |
| 56 | #[ORM\Column(name: 'tagsauftraggeber', type: Types::STRING, length: 255, nullable: true)] |
| 57 | private ?string $tagsauftraggeber = null; |
| 58 | |
| 59 | #[ORM\Column(name: 'tagsbuchungstext', type: Types::STRING, length: 255, nullable: true)] |
| 60 | private ?string $tagsbuchungstext = null; |
| 61 | |
| 62 | #[ORM\Column(name: 'tagsueberweisungsbetrag', type: 'amicron_decimal', precision: 15, scale: 6, nullable: true)] |
| 63 | private ?string $tagsueberweisungsbetrag = null; |
| 64 | |
| 65 | #[ORM\Column(name: 'uebernahmemodus', type: Types::INTEGER, nullable: true)] |
| 66 | private ?int $uebernahmemodus = null; |
| 67 | |
| 68 | public function getArt(): ?string |
| 69 | { |
| 70 | return $this->art; |
| 71 | } |
| 72 | |
| 73 | public function setArt(?string $art): self |
| 74 | { |
| 75 | $this->art = $art; |
| 76 | |
| 77 | return $this; |
| 78 | } |
| 79 | |
| 80 | public function getBeleg(): ?string |
| 81 | { |
| 82 | return $this->beleg; |
| 83 | } |
| 84 | |
| 85 | public function setBeleg(?string $beleg): self |
| 86 | { |
| 87 | $this->beleg = $beleg; |
| 88 | |
| 89 | return $this; |
| 90 | } |
| 91 | |
| 92 | public function getBemerkung(): ?string |
| 93 | { |
| 94 | return $this->bemerkung; |
| 95 | } |
| 96 | |
| 97 | public function setBemerkung(?string $bemerkung): self |
| 98 | { |
| 99 | $this->bemerkung = $bemerkung; |
| 100 | |
| 101 | return $this; |
| 102 | } |
| 103 | |
| 104 | public function getBetrag(): ?string |
| 105 | { |
| 106 | return $this->betrag; |
| 107 | } |
| 108 | |
| 109 | public function setBetrag(?string $betrag): self |
| 110 | { |
| 111 | $this->betrag = $betrag; |
| 112 | |
| 113 | return $this; |
| 114 | } |
| 115 | |
| 116 | public function getBezeichnung(): ?string |
| 117 | { |
| 118 | return $this->bezeichnung; |
| 119 | } |
| 120 | |
| 121 | public function setBezeichnung(?string $bezeichnung): self |
| 122 | { |
| 123 | $this->bezeichnung = $bezeichnung; |
| 124 | |
| 125 | return $this; |
| 126 | } |
| 127 | |
| 128 | public function getBuchungstext(): ?string |
| 129 | { |
| 130 | return $this->buchungstext; |
| 131 | } |
| 132 | |
| 133 | public function setBuchungstext(?string $buchungstext): self |
| 134 | { |
| 135 | $this->buchungstext = $buchungstext; |
| 136 | |
| 137 | return $this; |
| 138 | } |
| 139 | |
| 140 | public function getGegenkonto(): ?string |
| 141 | { |
| 142 | return $this->gegenkonto; |
| 143 | } |
| 144 | |
| 145 | public function setGegenkonto(?string $gegenkonto): self |
| 146 | { |
| 147 | $this->gegenkonto = $gegenkonto; |
| 148 | |
| 149 | return $this; |
| 150 | } |
| 151 | |
| 152 | public function getHabenkonto(): ?string |
| 153 | { |
| 154 | return $this->habenkonto; |
| 155 | } |
| 156 | |
| 157 | public function setHabenkonto(?string $habenkonto): self |
| 158 | { |
| 159 | $this->habenkonto = $habenkonto; |
| 160 | |
| 161 | return $this; |
| 162 | } |
| 163 | |
| 164 | public function getKategorie(): ?string |
| 165 | { |
| 166 | return $this->kategorie; |
| 167 | } |
| 168 | |
| 169 | public function setKategorie(?string $kategorie): self |
| 170 | { |
| 171 | $this->kategorie = $kategorie; |
| 172 | |
| 173 | return $this; |
| 174 | } |
| 175 | |
| 176 | public function getKonto(): ?string |
| 177 | { |
| 178 | return $this->konto; |
| 179 | } |
| 180 | |
| 181 | public function setKonto(?string $konto): self |
| 182 | { |
| 183 | $this->konto = $konto; |
| 184 | |
| 185 | return $this; |
| 186 | } |
| 187 | |
| 188 | public function getLfdnr(): ?int |
| 189 | { |
| 190 | return $this->lfdnr; |
| 191 | } |
| 192 | |
| 193 | public function getSollkonto(): ?string |
| 194 | { |
| 195 | return $this->sollkonto; |
| 196 | } |
| 197 | |
| 198 | public function setSollkonto(?string $sollkonto): self |
| 199 | { |
| 200 | $this->sollkonto = $sollkonto; |
| 201 | |
| 202 | return $this; |
| 203 | } |
| 204 | |
| 205 | public function getTagsanwenden(): ?int |
| 206 | { |
| 207 | return $this->tagsanwenden; |
| 208 | } |
| 209 | |
| 210 | public function setTagsanwenden(?int $tagsanwenden): self |
| 211 | { |
| 212 | $this->tagsanwenden = $tagsanwenden; |
| 213 | |
| 214 | return $this; |
| 215 | } |
| 216 | |
| 217 | public function getTagsauftraggeber(): ?string |
| 218 | { |
| 219 | return $this->tagsauftraggeber; |
| 220 | } |
| 221 | |
| 222 | public function setTagsauftraggeber(?string $tagsauftraggeber): self |
| 223 | { |
| 224 | $this->tagsauftraggeber = $tagsauftraggeber; |
| 225 | |
| 226 | return $this; |
| 227 | } |
| 228 | |
| 229 | public function getTagsbuchungstext(): ?string |
| 230 | { |
| 231 | return $this->tagsbuchungstext; |
| 232 | } |
| 233 | |
| 234 | public function setTagsbuchungstext(?string $tagsbuchungstext): self |
| 235 | { |
| 236 | $this->tagsbuchungstext = $tagsbuchungstext; |
| 237 | |
| 238 | return $this; |
| 239 | } |
| 240 | |
| 241 | public function getTagsueberweisungsbetrag(): ?string |
| 242 | { |
| 243 | return $this->tagsueberweisungsbetrag; |
| 244 | } |
| 245 | |
| 246 | public function setTagsueberweisungsbetrag(?string $tagsueberweisungsbetrag): self |
| 247 | { |
| 248 | $this->tagsueberweisungsbetrag = $tagsueberweisungsbetrag; |
| 249 | |
| 250 | return $this; |
| 251 | } |
| 252 | |
| 253 | public function getUebernahmemodus(): ?int |
| 254 | { |
| 255 | return $this->uebernahmemodus; |
| 256 | } |
| 257 | |
| 258 | public function setUebernahmemodus(?int $uebernahmemodus): self |
| 259 | { |
| 260 | $this->uebernahmemodus = $uebernahmemodus; |
| 261 | |
| 262 | return $this; |
| 263 | } |
| 264 | } |