-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathOrdersStats.php
More file actions
265 lines (243 loc) · 6.66 KB
/
OrdersStats.php
File metadata and controls
265 lines (243 loc) · 6.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
<?php
// vim: set ts=4 sw=4 sts=4 et:
/**
* LiteCommerce
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to licensing@litecommerce.com so we can send you a copy immediately.
*
* PHP version 5.3.0
*
* @category LiteCommerce
* @author Creative Development LLC <info@cdev.ru>
* @copyright Copyright (c) 2011 Creative Development LLC <info@cdev.ru>. All rights reserved
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @link http://www.litecommerce.com/
* @see ____file_see____
* @since 1.0.0
*/
namespace XLite\Controller\Admin;
/**
* Orders statistics page controller
*
* @see ____class_see____
* @since 1.0.0
*/
class OrdersStats extends \XLite\Controller\Admin\Stats
{
/**
* Columns
*/
const P_PROCESSED = 'processed';
const P_QUEUED = 'queued';
const P_FAILED = 'failed';
const P_INCOMPLETE = 'incomplete';
const P_TOTAL = 'total';
const P_PAID = 'paid';
/**
* getPageTemplate
*
* @return void
* @see ____func_see____
* @since 1.0.0
*/
public function getPageTemplate()
{
return 'orders_stats.tpl';
}
/**
* Get row headings
*
* @return array
* @see ____func_see____
* @since 1.0.0
*/
public function getRowTitles()
{
return array(
self::P_PROCESSED => static::t('Processed/Completed'),
self::P_QUEUED => static::t('Queued'),
self::P_FAILED => static::t('Failed/Declined'),
self::P_INCOMPLETE => static::t('Not finished'),
self::P_TOTAL => static::t('Total'),
self::P_PAID => static::t('Paid'),
);
}
/**
* Status rows as row identificator => included statuses
*
* @var array
* @see ____var_see____
* @since 3.0.0
*/
public function getStatusRows()
{
return array(
self::P_PROCESSED => array(
\XLite\Model\Order::STATUS_PROCESSED,
\XLite\Model\Order::STATUS_COMPLETED,
),
self::P_QUEUED => array(
\XLite\Model\Order::STATUS_QUEUED,
),
self::P_FAILED => array(
\XLite\Model\Order::STATUS_FAILED,
\XLite\Model\Order::STATUS_DECLINED,
),
self::P_INCOMPLETE => array(
\XLite\Model\Order::STATUS_INPROGRESS,
),
self::P_TOTAL => array(
\XLite\Model\Order::STATUS_INPROGRESS,
\XLite\Model\Order::STATUS_FAILED,
\XLite\Model\Order::STATUS_DECLINED,
\XLite\Model\Order::STATUS_QUEUED,
\XLite\Model\Order::STATUS_PROCESSED,
\XLite\Model\Order::STATUS_COMPLETED,
),
self::P_PAID => array(
\XLite\Model\Order::STATUS_PROCESSED,
\XLite\Model\Order::STATUS_COMPLETED,
),
);
}
/**
* Is totals row
*
* @param string $row Row identificator
* @return boolean
* @see ____var_see____
* @since 3.0.0
*/
public function isTotalsRow($row)
{
return in_array(
$row,
array(
self::P_PAID,
self::P_TOTAL,
)
);
}
/**
* Get data
*
* @return array
* @see ____func_see____
* @since 3.0.0
*/
public function getStatsRows()
{
return array_keys($this->getStatusRows());
}
/**
* Prepare statistics table
*
* @return array
* @see ____func_see____
* @since 3.0.0
*/
public function getStats()
{
if (is_null($this->stats)) {
$this->stats = $this->initStats();
array_map(array($this, 'processStatsRecord'), $this->getData());
}
return $this->stats;
}
/**
* Get currency from request
*
* @return \XLite\Model\Currency
* @see ____func_see____
* @since 1.0.2
*/
public function getCurrency()
{
return \XLite\Core\Request::getInstance()->currency
? \XLite\Core\Database::getRepo('XLite\Model\Currency')
->findOneBy(array('currency_id' => \XLite\Core\Request::getInstance()->currency))
: \XLite::getInstance()->getCurrency();
}
/**
* Get data
*
* @return array
* @see ____func_see____
* @since 3.0.0
*/
protected function getData()
{
$cnd = $this->getSearchCondition();
return \XLite\Core\Database::getRepo('\XLite\Model\Order')->search($cnd);
}
/**
* Common method to determine current location
*
* @return string
* @see ____func_see____
* @since 1.0.0
*/
protected function getLocation()
{
return static::t('Order statistics');
}
/**
* Add part to the location nodes list
*
* @return void
* @see ____func_see____
* @since 1.0.0
*/
protected function addBaseLocation()
{
parent::addBaseLocation();
$this->addLocationNode(static::t('Statistics'), $this->buildURL('orders_stats'));
}
/**
* Collect statistics record
*
* @param string $row Row identificator
* @param \Xlite\Model\Order $order Order
*
* @return void
* @see ____func_see____
* @since 1.0.0
*/
protected function collectStatsRecord($row, $order)
{
foreach ($this->getStatsColumns() as $period) {
if ($order->getDate() >= $this->getStartTime($period)) {
if ($this->isTotalsRow($row)) {
$this->stats[$row][$period] += $order->getTotal();
} else {
$this->stats[$row][$period] += 1;
}
}
}
}
/**
* Process statistics record
*
* @param \Xlite\Model\Order $order Order
*
* @return void
* @see ____func_see____
* @since 1.0.0
*/
protected function processStatsRecord($order)
{
foreach ($this->getStatusRows() as $row => $includedStatuses) {
if (in_array($order->getStatus(), $includedStatuses)) {
$this->collectStatsRecord($row, $order);
}
}
}
}