1 | <?php |
||
10 | class InvoiceItem |
||
11 | { |
||
12 | use InvoiceVatItemTrait; |
||
13 | |||
14 | /** |
||
15 | * The invoice item id. |
||
16 | * |
||
17 | * @var string |
||
18 | * |
||
19 | * @JMS\Type("string") |
||
20 | * @JMS\SerializedName("INVOICE_ITEM_ID") |
||
21 | */ |
||
22 | protected $invoiceItemId; |
||
23 | |||
24 | /** |
||
25 | * The invoice item article number. |
||
26 | * |
||
27 | * @var string |
||
28 | * |
||
29 | * @JMS\Type("string") |
||
30 | * @JMS\SerializedName("ARTICLE_NUMBER") |
||
31 | */ |
||
32 | protected $articleNumber; |
||
33 | |||
34 | /** |
||
35 | * The invoice item description. |
||
36 | * |
||
37 | * @var string |
||
38 | * |
||
39 | * @JMS\Type("string") |
||
40 | * @JMS\SerializedName("DESCRIPTION") |
||
41 | */ |
||
42 | protected $description; |
||
43 | |||
44 | /** |
||
45 | * The invoice item quantity. |
||
46 | * |
||
47 | * @var integer |
||
48 | * |
||
49 | * @JMS\Type("integer") |
||
50 | * @JMS\SerializedName("QUANTITY") |
||
51 | */ |
||
52 | protected $quantity; |
||
53 | |||
54 | /** |
||
55 | * The invoice item unit price. |
||
56 | * |
||
57 | * @var float |
||
58 | * |
||
59 | * @JMS\Type("string") |
||
60 | * @JMS\SerializedName("UNIT_PRICE") |
||
61 | */ |
||
62 | protected $unitPrice; |
||
63 | |||
64 | /** |
||
65 | * The invoice item complete gross value. |
||
66 | * |
||
67 | * @var string |
||
68 | * |
||
69 | * @JMS\Type("string") |
||
70 | * @JMS\SerializedName("COMPLETE_GROSS") |
||
71 | */ |
||
72 | protected $completeGross; |
||
73 | |||
74 | /** |
||
75 | * The invoice item sort order. |
||
76 | * |
||
77 | * @var integer |
||
78 | * |
||
79 | * @JMS\Type("integer") |
||
80 | * @JMS\SerializedName("SORT_ORDER") |
||
81 | */ |
||
82 | protected $sortOrder; |
||
83 | |||
84 | /** |
||
85 | * Get the invoice item id. |
||
86 | * |
||
87 | * @return string |
||
88 | */ |
||
89 | public function getInvoiceItemId() |
||
93 | |||
94 | /** |
||
95 | * Set the invoice item id. |
||
96 | * |
||
97 | * @param string $invoiceItemId |
||
98 | */ |
||
99 | 6 | public function setInvoiceItemId($invoiceItemId) |
|
103 | |||
104 | /** |
||
105 | * Get the article number. |
||
106 | * |
||
107 | * @return integer |
||
108 | */ |
||
109 | public function getArticleNumber() |
||
113 | |||
114 | /** |
||
115 | * Set the article number. |
||
116 | * |
||
117 | * @param string $articleNumber |
||
118 | */ |
||
119 | 6 | public function setArticleNumber($articleNumber) |
|
123 | |||
124 | /** |
||
125 | * Get the description. |
||
126 | * |
||
127 | * @return string |
||
128 | */ |
||
129 | public function getDescription() |
||
133 | |||
134 | /** |
||
135 | * Set the description. |
||
136 | * |
||
137 | * @param string $description |
||
138 | */ |
||
139 | 6 | public function setDescription($description) |
|
143 | |||
144 | /** |
||
145 | * Get the quantity. |
||
146 | * |
||
147 | * @return integer |
||
148 | */ |
||
149 | public function getQuantity() |
||
153 | |||
154 | /** |
||
155 | * Set the quantity. |
||
156 | * |
||
157 | * @param integer $quantity |
||
158 | */ |
||
159 | 6 | public function setQuantity($quantity) |
|
163 | |||
164 | |||
165 | /** |
||
166 | * Get the unit price. |
||
167 | * |
||
168 | * @return float |
||
169 | */ |
||
170 | public function getUnitPrice() |
||
174 | |||
175 | /** |
||
176 | * Set the unit price. |
||
177 | * |
||
178 | * @param float $unitPrice |
||
179 | */ |
||
180 | 6 | public function setUnitPrice($unitPrice) |
|
184 | |||
185 | /** |
||
186 | * Get the complete gross value. |
||
187 | * |
||
188 | * @return string |
||
189 | */ |
||
190 | public function getCompleteGross() |
||
194 | |||
195 | /** |
||
196 | * Set the complete gross value. |
||
197 | * |
||
198 | * @param string $completeGross |
||
199 | */ |
||
200 | 6 | public function setCompleteGross($completeGross) |
|
204 | |||
205 | /** |
||
206 | * Get the sort order. |
||
207 | * |
||
208 | * @return integer |
||
209 | */ |
||
210 | public function getSortOrder() |
||
214 | |||
215 | /** |
||
216 | * Set the sort order. |
||
217 | * |
||
218 | * @param integer $sortOrder |
||
219 | */ |
||
220 | 6 | public function setSortOrder($sortOrder) |
|
224 | } |
||
225 |