Newer
Older
<?php
/**
* This file contains QUI\ERP\Accounting\Article
*/
namespace QUI\ERP\Accounting;
use QUI;
use QUI\ERP\Money\Price;
/**
* Class Article
*
* @package QUI\ERP\Accounting
*/
class Article implements ArticleInterface
{
/**
* @var array
*/
protected $attributes = array();
/**
* @var bool
*/
protected $calculated = false;
/**
*/
protected $price;
/**
*/
protected $basisPrice;
/**
*/
protected $sum;
/**
* The calculated netto sum with quantity and discount
* @var float|int
*/
protected $nettoSum;
/**
* Sum from the article, without discount and with quantity
*
* @var float|int
*/
protected $nettoSubSum;
/**
* The article netto price, without discount, without quantity
* comes from article
*
* @var float|int
*/
protected $nettoPrice;
/**
* The article netto price, without discount, without quantity
* comes from calc
*
* @var float|int
*/
protected $nettoBasisPrice;
/**
* @var array
*/
protected $vatArray;
/**
*/
protected $isEuVat;
/**
*/
protected $isNetto;
/**
* @var ArticleDiscount|null
*/
protected $Discount = null;
/**
* @var null|QUI\Interfaces\Users\User
*/
protected $User = null;
/**
* Article constructor.
*
* @param array $attributes - (id, articleNo, title, description, unitPrice, quantity, discount)
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
*/
public function __construct($attributes = array())
{
if (isset($attributes['id'])) {
$this->attributes['id'] = $attributes['id'];
}
if (isset($attributes['articleNo'])) {
$this->attributes['articleNo'] = $attributes['articleNo'];
}
if (isset($attributes['title'])) {
$this->attributes['title'] = $attributes['title'];
}
if (isset($attributes['description'])) {
$this->attributes['description'] = $attributes['description'];
}
if (isset($attributes['unitPrice'])) {
$this->attributes['unitPrice'] = $attributes['unitPrice'];
}
if (isset($attributes['quantity'])) {
$this->attributes['quantity'] = $attributes['quantity'];
}
if (isset($attributes['vat']) && $attributes['vat'] !== '') {
$this->attributes['vat'] = $attributes['vat'];
if (isset($attributes['discount'])) {
$this->Discount = ArticleDiscount::unserialize($attributes['discount']);
}
if (isset($attributes['calculated'])) {
$calc = $attributes['calculated'];
$this->price = $calc['price'];
$this->basisPrice = $calc['basisPrice'];
$this->sum = $calc['sum'];
$this->nettoPrice = $calc['nettoPrice'];
$this->nettoBasisPrice = $calc['nettoBasisPrice'];
$this->nettoSum = $calc['nettoSum'];
$this->vatArray = $calc['vatArray'];
$this->isEuVat = $calc['isEuVat'];
$this->isNetto = $calc['isNetto'];
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
}
}
/**
* Return the Article ID
*
* @return mixed|string
*/
public function getId()
{
if (isset($this->attributes['id'])) {
return $this->attributes['id'];
}
return '';
}
/**
* Return the Article Number
*
* @return mixed|string
*/
public function getArticleNo()
{
if (isset($this->attributes['articleNo'])) {
return $this->attributes['articleNo'];
}
return '';
}
/**
* Returns the article title
*
* @return string
*/
public function getTitle()
{
if (isset($this->attributes['title'])) {
return $this->attributes['title'];
}
return '';
}
/**
* Returns the article description
*
* @return string
*/
public function getDescription()
{
if (isset($this->attributes['description'])) {
return $this->attributes['description'];
}
return '';
}
/**
* Returns the article unit price
*
* @return int|float
*/
public function getUnitPrice()
{
if (isset($this->attributes['unitPrice'])) {
return $this->attributes['unitPrice'];
}
return 0;
}
/**
* Returns the article total sum
*
* @return int|float
*/
public function getSum()
{
$this->calc();
return $this->sum;
}
/**
* Return the VAT for the article
*
* @return int
*/
public function getVat()
{
if (isset($this->attributes['vat']) && $this->attributes['vat'] !== '') {
return (int)$this->attributes['vat'];
}
if ($this->getUser()) {
return QUI\ERP\Tax\Utils::getTaxByUser($this->getUser())->getValue();
}
// return default vat
$Area = QUI\ERP\Defaults::getArea();
$TaxType = QUI\ERP\Tax\Utils::getTaxTypeByArea($Area);
$TaxEntry = QUI\ERP\Tax\Utils::getTaxEntry($TaxType, $Area);
return $TaxEntry->getValue();
}
/**
* @return null|QUI\Interfaces\Users\User
*/
public function getUser()
{
return $this->User;
}
/**
* Set the user to the product, this user will be used for the calculation
*
* @param QUI\Interfaces\Users\User $User
*/
public function setUser(QUI\Interfaces\Users\User $User)
{
$this->User = $User;
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
}
/**
* Returns the article quantity
*
* @return int
*/
public function getQuantity()
{
if (isset($this->attributes['quantity'])) {
return $this->attributes['quantity'];
}
return 1;
}
/**
* Return the price from the article
*
* @return Price
*/
public function getPrice()
{
$this->calc();
return new Price(
$this->sum,
QUI\ERP\Currency\Handler::getDefaultCurrency()
);
}
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
* Set a discount to the article
*
* @param int $discount
* @param int $discountType - default = complement
*
* @todo überdenken, ganzer artikel ist eigentlich nicht änderbar
*/
public function setDiscount($discount, $discountType = Calc::CALCULATION_COMPLEMENT)
{
switch ($discountType) {
case Calc::CALCULATION_PERCENTAGE:
case Calc::CALCULATION_COMPLEMENT:
break;
default:
$discountType = Calc::CALCULATION_COMPLEMENT;
}
$this->Discount = new ArticleDiscount($discount, $discountType);
}
/**
* Return the current discount
*
* @return ArticleDiscount|null
*/
public function getDiscount()
{
return $this->Discount;
}
/**
* Has the article a discount
*
* @return bool
*/
public function hasDiscount()
{
return !!$this->getDiscount();
}
//endregion
/**
* @param null|Calc|QUI\ERP\User $Instance
* @return self
*/
{
if ($this->calculated) {
return $this;
}
$self = $this;
if ($Instance instanceof QUI\ERP\User) {
$Calc = Calc::getInstance($Instance);
} elseif ($Instance instanceof Calc) {
$Calc = $Instance;
} else {
$Calc = Calc::getInstance();
}
$Calc->calcArticlePrice($this, function ($data) use ($self) {
$self->price = $data['price'];
$self->basisPrice = $data['basisPrice'];
$self->sum = $data['sum'];
$self->nettoPrice = $data['nettoPrice'];
$self->nettoBasisPrice = $data['nettoBasisPrice'];
$self->nettoSubSum = $data['nettoSubSum'];
$self->nettoSum = $data['nettoSum'];
$self->vatArray = $data['vatArray'];
$self->isEuVat = $data['isEuVat'];
$self->isNetto = $data['isNetto'];
$self->calculated = true;
});
return $this;
}
/**
* Return the article as an array
*
* @return array
*/
public function toArray()
{
if (isset($this->attributes['vat']) && $this->attributes['vat'] !== '') {
$vat = (int)$this->attributes['vat'];
}
if ($this->hasDiscount()) {
$discount = $this->Discount->toJSON();
}
return array(
// article data
'title' => $this->getTitle(),
'articleNo' => $this->getArticleNo(),
'description' => $this->getDescription(),
'unitPrice' => $this->getUnitPrice(),
'quantity' => $this->getQuantity(),
'sum' => $this->getSum(),
'vat' => $vat,
'discount' => $discount,
// calculated data
'calculated_basisPrice' => $this->basisPrice,
'calculated_price' => $this->price,
'calculated_sum' => $this->sum,
'calculated_nettoBasisPrice' => $this->nettoBasisPrice,
'calculated_nettoPrice' => $this->nettoPrice,
'calculated_nettoSubSum' => $this->nettoSubSum,
'calculated_nettoSum' => $this->nettoSum,
'calculated_isEuVat' => $this->isEuVat,
'calculated_isNetto' => $this->isNetto,
'calculated_vatArray' => $this->vatArray