Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 31 |
|
0.00% |
0 / 21 |
CRAP | |
0.00% |
0 / 1 |
| Atrversandkosten | |
0.00% |
0 / 31 |
|
0.00% |
0 / 21 |
462 | |
0.00% |
0 / 1 |
| getArtikellfdnr | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setArtikellfdnr | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getGewichtbis | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setGewichtbis | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getGewichtvon | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setGewichtvon | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getLand | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setLand | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getLfdnr | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| getLieferart | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setLieferart | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getNettoauftragswertbis | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setNettoauftragswertbis | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getNettoauftragswertvon | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setNettoauftragswertvon | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getPrioritaet | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setPrioritaet | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getSperren | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setSperren | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getZahlweise | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setZahlweise | |
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 | use Satag\AmicronEntityBundle\Traits\BlameableEntity; |
| 10 | use Satag\AmicronEntityBundle\Traits\BlameableEntityInterface; |
| 11 | |
| 12 | #[ORM\Entity] |
| 13 | #[ORM\Table(name: 'ATRVERSANDKOSTEN')] |
| 14 | #[ORM\Index(columns: ['artikellfdnr'], name: 'ATRVERSANDKOSTEN_ARTLFDNR_FK')] |
| 15 | class Atrversandkosten implements BlameableEntityInterface |
| 16 | { |
| 17 | use BlameableEntity; |
| 18 | |
| 19 | #[ORM\ManyToOne(targetEntity: Artikel::class)] |
| 20 | #[ORM\JoinColumn(name: 'artikellfdnr', referencedColumnName: 'lfdnr')] |
| 21 | private ?Artikel $artikellfdnr = null; |
| 22 | |
| 23 | #[ORM\Column(name: 'gewichtbis', type: 'amicron_decimal', precision: 15, scale: 6, nullable: true)] |
| 24 | private ?string $gewichtbis = null; |
| 25 | |
| 26 | #[ORM\Column(name: 'gewichtvon', type: 'amicron_decimal', precision: 15, scale: 6, nullable: true)] |
| 27 | private ?string $gewichtvon = null; |
| 28 | |
| 29 | #[ORM\Column(name: 'land', type: Types::INTEGER, nullable: true)] |
| 30 | private ?int $land = null; |
| 31 | |
| 32 | #[ORM\Column(name: 'lfdnr', type: Types::INTEGER, nullable: false)] |
| 33 | #[ORM\Id] |
| 34 | #[ORM\GeneratedValue(strategy: 'SEQUENCE')] |
| 35 | #[ORM\SequenceGenerator(sequenceName: 'GEN_LFDNR', allocationSize: 1, initialValue: 1)] |
| 36 | public private(set) ?int $lfdnr = null; |
| 37 | |
| 38 | #[ORM\Column(name: 'lieferart', type: Types::STRING, length: 25, nullable: true)] |
| 39 | private ?string $lieferart = null; |
| 40 | |
| 41 | #[ORM\Column(name: 'nettoauftragswertbis', type: 'amicron_decimal', precision: 15, scale: 6, nullable: true)] |
| 42 | private ?string $nettoauftragswertbis = null; |
| 43 | |
| 44 | #[ORM\Column(name: 'nettoauftragswertvon', type: 'amicron_decimal', precision: 15, scale: 6, nullable: true)] |
| 45 | private ?string $nettoauftragswertvon = null; |
| 46 | |
| 47 | #[ORM\Column(name: 'prioritaet', type: Types::INTEGER, nullable: true)] |
| 48 | private ?int $prioritaet = null; |
| 49 | |
| 50 | #[ORM\Column(name: 'sperren', type: Types::STRING, length: 1, nullable: true)] |
| 51 | private ?string $sperren = null; |
| 52 | |
| 53 | #[ORM\Column(name: 'zahlweise', type: Types::STRING, length: 25, nullable: true)] |
| 54 | private ?string $zahlweise = null; |
| 55 | |
| 56 | public function getArtikellfdnr(): ?Artikel |
| 57 | { |
| 58 | return $this->artikellfdnr; |
| 59 | } |
| 60 | |
| 61 | public function setArtikellfdnr(?Artikel $artikellfdnr): self |
| 62 | { |
| 63 | $this->artikellfdnr = $artikellfdnr; |
| 64 | |
| 65 | return $this; |
| 66 | } |
| 67 | |
| 68 | public function getGewichtbis(): ?string |
| 69 | { |
| 70 | return $this->gewichtbis; |
| 71 | } |
| 72 | |
| 73 | public function setGewichtbis(?string $gewichtbis): self |
| 74 | { |
| 75 | $this->gewichtbis = $gewichtbis; |
| 76 | |
| 77 | return $this; |
| 78 | } |
| 79 | |
| 80 | public function getGewichtvon(): ?string |
| 81 | { |
| 82 | return $this->gewichtvon; |
| 83 | } |
| 84 | |
| 85 | public function setGewichtvon(?string $gewichtvon): self |
| 86 | { |
| 87 | $this->gewichtvon = $gewichtvon; |
| 88 | |
| 89 | return $this; |
| 90 | } |
| 91 | |
| 92 | public function getLand(): ?int |
| 93 | { |
| 94 | return $this->land; |
| 95 | } |
| 96 | |
| 97 | public function setLand(?int $land): self |
| 98 | { |
| 99 | $this->land = $land; |
| 100 | |
| 101 | return $this; |
| 102 | } |
| 103 | |
| 104 | public function getLfdnr(): ?int |
| 105 | { |
| 106 | return $this->lfdnr; |
| 107 | } |
| 108 | |
| 109 | public function getLieferart(): ?string |
| 110 | { |
| 111 | return $this->lieferart; |
| 112 | } |
| 113 | |
| 114 | public function setLieferart(?string $lieferart): self |
| 115 | { |
| 116 | $this->lieferart = $lieferart; |
| 117 | |
| 118 | return $this; |
| 119 | } |
| 120 | |
| 121 | public function getNettoauftragswertbis(): ?string |
| 122 | { |
| 123 | return $this->nettoauftragswertbis; |
| 124 | } |
| 125 | |
| 126 | public function setNettoauftragswertbis(?string $nettoauftragswertbis): self |
| 127 | { |
| 128 | $this->nettoauftragswertbis = $nettoauftragswertbis; |
| 129 | |
| 130 | return $this; |
| 131 | } |
| 132 | |
| 133 | public function getNettoauftragswertvon(): ?string |
| 134 | { |
| 135 | return $this->nettoauftragswertvon; |
| 136 | } |
| 137 | |
| 138 | public function setNettoauftragswertvon(?string $nettoauftragswertvon): self |
| 139 | { |
| 140 | $this->nettoauftragswertvon = $nettoauftragswertvon; |
| 141 | |
| 142 | return $this; |
| 143 | } |
| 144 | |
| 145 | public function getPrioritaet(): ?int |
| 146 | { |
| 147 | return $this->prioritaet; |
| 148 | } |
| 149 | |
| 150 | public function setPrioritaet(?int $prioritaet): self |
| 151 | { |
| 152 | $this->prioritaet = $prioritaet; |
| 153 | |
| 154 | return $this; |
| 155 | } |
| 156 | |
| 157 | public function getSperren(): ?string |
| 158 | { |
| 159 | return $this->sperren; |
| 160 | } |
| 161 | |
| 162 | public function setSperren(?string $sperren): self |
| 163 | { |
| 164 | $this->sperren = $sperren; |
| 165 | |
| 166 | return $this; |
| 167 | } |
| 168 | |
| 169 | public function getZahlweise(): ?string |
| 170 | { |
| 171 | return $this->zahlweise; |
| 172 | } |
| 173 | |
| 174 | public function setZahlweise(?string $zahlweise): self |
| 175 | { |
| 176 | $this->zahlweise = $zahlweise; |
| 177 | |
| 178 | return $this; |
| 179 | } |
| 180 | } |