Newer
Older
<?php
/**
* This file contains QUI\ERP\Accounting\ArticleList
*/
namespace QUI\ERP\Accounting;
/**
* Class ArticleList
*
* @package QUI\ERP\Accounting
*/
class ArticleList extends ArticleListUnique
{
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/**
* is the article list calculated?
* @var bool
*/
protected $calculated = false;
/**
* @var int|float|double
*/
protected $sum;
/**
* @var QUI\Interfaces\Users\User
*/
protected $User = null;
/**
* @var int|float|double
*/
protected $subSum;
/**
* @var int|float|double
*/
protected $nettoSum;
/**
* @var int|float|double
*/
protected $nettoSubSum;
/**
* key 19% value[sum] = sum value[text] = text value[display_sum] formatiert
* @var array
*/
protected $vatArray = array();
/**
* key 19% value[sum] = sum value[text] = text value[display_sum] formatiert
* @var array()
*/
protected $vatText;
/**
* Prüfen ob EU Vat für den Benutzer in Frage kommt
* @var
*/
protected $isEuVat = false;
/**
* Wird Brutto oder Netto gerechnet
* @var bool
*/
protected $isNetto = true;
/**
* Currency information
* @var array
*/
protected $currencyData = array(
'currency_sign' => '',
'currency_code' => '',
'user_currency' => '',
'currency_rate' => ''
);
/**
* ArticleList constructor.
* @param array $attributes
*/
public function __construct(array $attributes = array())
{
if (!isset($attributes['calculations'])) {
$attributes['calculations'] = array();
}
if (!isset($attributes['articles'])) {
$attributes['articles'] = array();
}
parent::__construct($attributes);
}
/**
* Set the user for the list
* User for calculation
*
* @param QUI\Interfaces\Users\User $User
*/
public function setUser(QUI\Interfaces\Users\User $User)
{
$this->calculated = false;
$this->User = $User;
foreach ($this->articles as $Article) {
/* @var $Article Article */
$Article->setUser($User);
}
$this->calc();
}
/**
* Return the list user
*
* @return QUI\Interfaces\Users\User|QUI\Users\User
*/
public function getUser()
{
return $this->User;
}
/**
* Parse this ArticleList to an ArticleListUnique
*
* @return ArticleListUnique
*/
public function toUniqueList()
{
$this->calc();
return new ArticleListUnique($this->toArray());
}
/**
* @return $this
*/
public function calc($Calc = null)
{
if ($this->calculated) {
return $this;
}
152
153
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
$self = $this;
if (!$Calc) {
$Calc = Calc::getInstance();
if ($this->User) {
$Calc->setUser($this->User);
}
}
$Calc->calcArticleList($this, function ($data) use ($self) {
$self->sum = $data['sum'];
$self->subSum = $data['subSum'];
$self->nettoSum = $data['nettoSum'];
$self->nettoSubSum = $data['nettoSubSum'];
$self->vatArray = $data['vatArray'];
$self->vatText = $data['vatText'];
$self->isEuVat = $data['isEuVat'];
$self->isNetto = $data['isNetto'];
$self->currencyData = $data['currencyData'];
$this->calculations = array(
'sum' => $self->sum,
'subSum' => $self->subSum,
'nettoSum' => $self->nettoSum,
'nettoSubSum' => $self->nettoSubSum,
'vatArray' => $self->vatArray,
'vatText' => $self->vatText,
'isEuVat' => $self->isEuVat,
'isNetto' => $self->isNetto,
'currencyData' => $self->currencyData
);
$self->calculated = true;
});
return $this;
}
//region Article Management
/**
* Add an article to the list
*
* @param Article $Article
*/
public function addArticle(Article $Article)
{
$this->articles[] = $Article;
if ($this->User) {
$Article->setUser($this->User);
}
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
}
/**
* Remove an article by its index position
*
* @param integer $index
*/
public function removeArticle($index)
{
if (isset($this->articles[$index])) {
unset($this->articles[$index]);
}
}
/**
* Replace an article at a specific position
*
* @param Article $Article
* @param integer $index
*/
public function replaceArticle(Article $Article, $index)
{
$this->articles[$index] = $Article;
}
/**
* Clears the list
*/
public function clear()
{
$this->articles = array();
}
/**