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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
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
/**
* 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)
{
if (QUI::getUsers()->isUser($User)) {
$this->User = $User;
}
}
/**
* 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());
}
/**
* @param null $Calc
* @return $this
*/
public function calc($Calc = null)
{
$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
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
/**
* Add an article to the list
*
* @param Article $Article
*/
public function addArticle(Article $Article)
{
$this->articles[] = $Article;
}
/**
* 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();
}
/**