Git Repository Public Repository

namibia

URLs

Copy to Clipboard
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
266
267
268
269
270
271
272
273
274
275
276
277
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
309
310
311
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
357
358
359
360
361
362
363
364
365
<?php
namespace Report\Report;



use Valuation;
/**
 * Stock Control Report.
 * @author andre.fourie
 */
class PriceGuideFlash extends \Utility\Service\Report
{



	/**
	 * @var string
	 */
	protected $_title  = 'PriceGuide Flash Report';
	/**
	 * @var string
	 */
	protected $_subject = 'PriceGuide Flash';
	/**
	 * @var string
	 */
	protected $_description = 'Amount of valuations send to price guide.';
	/**
	 * @var array
	 */
	protected $_notes = array(
			'Confidential information, generated using Bid 4 Cars, for more information visit bid4cars.com.na'
	);
	/**
	 * @var array
	 */
	protected $_headers = array(
			'Total Cars Loaded',
			'Total Cars Loaded on Price Guide',
			'With Offers',
			'%',
			'Total number of offers made',
			'Avg Number Offers',
			'Number with 3 offers +',
			'%',
			'Number with 2 offers',
			'%',
			'Number with 1 offer',
			'%',
			'Number with 0 offers',
			'%'
	);
	/**
	 * @var array
	 */
	protected $_fields = array(
			'totalCarsLoaded',
			'totalLoadedOnPg',
			'TotalCarsOffers',
			'TotalCarsOffersPer',
			'tNumOffers',
			'AvgNumOffers',
			'NumOffers3',
			'NumOffers3Per',
			'NumOffers2',
			'NumOffers2Per',
			'NumOffers1',
			'NumOffers1Per',
			'NumOffers0',
			'NumOffers0Per'
	);




	/**
	 * Build the dataset.
	 */
	public function build()
	{
		ini_set('memory_limit','512M');

		#-> Filtering.
		$join      = array();
		$leftJion  = array();
		$where     = array();
		$stockWhere = array();
		$params    = array();

		if (!isset($this->_input['dateFrom']) || empty($this->_input['dateFrom']))
		{
			$this->_input['dateFrom'] = date('Y-m-d', mktime(1, 1, 1, date('m' - 1), 1, date('Y')));
		}
		$this->_queries['Date Range From'] = $this->_input['dateFrom'];
		$where[] = 'priceGuide.created >= :dateFrom';
		$stockWhere[] = 'stock.created >= :dateFrom';
		$params['dateFrom'] = new \DateTime($this->_input['dateFrom']);

		if (!isset($this->_input['dateTo']) || empty($this->_input['dateTo']))
		{
			$this->_input['dateTo'] = date('Y-m-d', mktime(23, 59, 59, date('m'), 0, date('Y')));
		}
		$this->_queries['Date Range Until'] = $this->_input['dateTo'];
		$where[] = 'priceGuide.created < :dateTo';
		$stockWhere[] = 'stock.created < :dateTo';
		$params['dateTo'] = new \DateTime($this->_input['dateTo'] . ' 00:00:01');

		if (isset($this->_input['group'])
			&& !empty($this->_input['group'])
			&& 'null' != $this->_input['group'])
		{
			$this->_queries['Group'] = $this->em
				->find('\Company\Entity\Group', $this->_input['group'])
				->name;
			$where[] = 'IDENTITY(company.group) = :group';
			$stockWhere[] = 'IDENTITY(company.group) = :group';
			$params['group'] = $this->_input['group'];
		}
		if (isset($this->_input['groupDivision'])
			&& !empty($this->_input['groupDivision'])
			&& 'null' != $this->_input['groupDivision'])
		{
			error_log($this->_input['groupDivision']);
			$this->_queries['Division'] = $this->em
				->find('\Company\Entity\GroupDivision', $this->_input['groupDivision'])
				->name;
			$where[] = 'IDENTITY(company.groupDivision) = :division';
			$stockWhere[] = 'IDENTITY(company.groupDivision) = :division';
			$params['division'] = $this->_input['groupDivision'];
		}
		if (isset($this->_input['company'])
			&& !empty($this->_input['company'])
			&& 'null' != $this->_input['company'])
		{
			$this->_queries['Dealership'] = $this->em
				->find('\Company\Entity\Company', $this->_input['company'])
				->name;
			$where[] = 'company.id = :company';
			$stockWhere[] = 'company.id = :company';
			$params['company'] = $this->_input['company'];
		}

		#-> Total Cars Loaded
		$query = 'SELECT COUNT(stock.id) as CarsLoaded '
					. 'FROM \Stock\Entity\Stock stock '
					. 'JOIN stock.company company '
					. '[WHERE]';
		$query = str_replace(array(
				'[WHERE]'
		), array(
				!empty($stockWhere)
				? 'WHERE ' . implode(' AND ', $stockWhere) . ' '
				: ' '
		), $query);
		$query = $this->em->createQuery($query);
		!empty($params)
			&& $query->setParameters($params);
		$data0 = $query->getScalarResult();
		$this->em->clear();

		#-> Total Cars Loaded on price guide
		$query = 'SELECT COUNT(DISTINCT priceGuide.id) AS CarsLoaded '
				. 'FROM \PriceGuide\Entity\PriceGuide priceGuide '
				. 'JOIN priceGuide.company company '
				. '[WHERE]';
		$query = str_replace(array(
				'[WHERE]'
		), array(
				!empty($where)
				? 'WHERE ' . implode(' AND ', $where) . ' '
				: ' '
		), $query);
		$query = $this->em->createQuery($query);
		!empty($params)
			&& $query->setParameters($params);
		$data1 = $query->getScalarResult();
		$this->em->clear();

		//\Utility\Debug::errorLog('data', $params);
		//var_dump($params);
		//exit();

		#-> Total cars that has offers
		$query = 'SELECT COUNT(DISTINCT priceGuide.id) AS NumCarsWithOffers '
				. 'FROM \PriceGuide\Entity\PriceGuide priceGuide '
				. 'JOIN priceGuide.company company '
				. 'JOIN priceGuide.offers offer '
				. '[WHERE]';
		$query = str_replace(array(
				'[WHERE]'
		), array(
				!empty($where)
				? 'WHERE ' . implode(' AND ', $where) . ' '
				: ' '
		), $query);
		$query = $this->em->createQuery($query);
		!empty($params)
			&& $query->setParameters($params);
		$data2 = $query->getScalarResult();
		$this->em->clear();

		#-> Total cars that has offers vs cars loaded in %
		$data3 = 0 == $data1[0]['CarsLoaded']
			? 0
			: round(($data2[0]['NumCarsWithOffers']*100)/$data1[0]['CarsLoaded']);

		#-> Total number of offers made

		$query = 'SELECT COUNT(DISTINCT offers.id) AS NumOffersMade '
				. 'FROM \PriceGuide\Entity\PriceGuide priceGuide '
				. 'JOIN priceGuide.company company '
				. 'JOIN priceGuide.offers offers '
				. '[WHERE]';
		$query = str_replace(array(
				'[WHERE]'
		), array(
				!empty($where)
				? 'WHERE ' . implode(' AND ', $where) . ' '
				: ' '
		), $query);
		$query = $this->em->createQuery($query);
		!empty($params)
			&& $query->setParameters($params);
		$data4 = $query->getScalarResult();
		$this->em->clear();

		#-> Ave number of offers per Cars Loaded
		$data5 = 0 == $data1[0]['CarsLoaded']
			? 0
			: round($data4[0]['NumOffersMade']/$data1[0]['CarsLoaded']);

		#-> Number with 3+ offers
		$query = 'SELECT priceGuide.id, COUNT(offer.id) AS numOffers '
				. 'FROM \PriceGuide\Entity\PriceGuide priceGuide '
				. 'JOIN priceGuide.company company '
				. 'LEFT JOIN priceGuide.offers offer '
				. '[WHERE]'
				. 'GROUP BY priceGuide.id '
				. 'HAVING numOffers > 2';
		$query = str_replace(array(
				'[WHERE]'
		), array(
				!empty($where)
				? 'WHERE ' . implode(' AND ', $where) . ' '
				: ' '
		), $query);
		$query = $this->em->createQuery($query);
		!empty($params)
			&& $query->setParameters($params);
		$data6 = count($query->getScalarResult());
		$this->em->clear();

		#-> Number with 3 offers %
		$data7 = 0 == $data1[0]['CarsLoaded']
			? 0
			: round((100 / $data1[0]['CarsLoaded']) * $data6, 2);

		#-> Number with 2 offers
		$query = 'SELECT priceGuide.id, COUNT(offer.id) AS numOffers '
				. 'FROM \PriceGuide\Entity\PriceGuide priceGuide '
				. 'JOIN priceGuide.company company '
				. 'LEFT JOIN priceGuide.offers offer '
				. '[WHERE]'
				. 'GROUP BY priceGuide.id '
				. 'HAVING numOffers = 2';
		$query = str_replace(array(
				'[WHERE]'
		), array(
				!empty($where)
				? 'WHERE ' . implode(' AND ', $where) . ' '
				: ' '
		), $query);
		$query = $this->em->createQuery($query);
		!empty($params)
			&& $query->setParameters($params);
		$data8 = count($query->getScalarResult());
		$this->em->clear();

		#-> Number with 2 offers %
		$data9 = 0 == $data1[0]['CarsLoaded']
			? 0
			: round((100 / $data1[0]['CarsLoaded']) * $data8, 2);

		#-> Number with 1 offers
		$query = 'SELECT priceGuide.id, COUNT(offer.id) AS numOffers '
				. 'FROM \PriceGuide\Entity\PriceGuide priceGuide '
				. 'JOIN priceGuide.company company '
				. 'LEFT JOIN priceGuide.offers offer '
				. '[WHERE]'
				. 'GROUP BY priceGuide.id '
				. 'HAVING numOffers = 1';
		$query = str_replace(array(
				'[WHERE]'
		), array(
				!empty($where)
				? 'WHERE ' . implode(' AND ', $where) . ' '
				: ' '
		), $query);
		$query = $this->em->createQuery($query);
		!empty($params)
			&& $query->setParameters($params);
		$data10 = count($query->getScalarResult());
		$this->em->clear();

		#-> Number with 1 offers %
		$data11 = 0 == $data1[0]['CarsLoaded']
			? 0
			: round((100 / $data1[0]['CarsLoaded']) * $data10, 2);

		#-> Number with 0 offers
		$query = 'SELECT priceGuide.id, COUNT(offer.id) AS numOffers '
				. 'FROM \PriceGuide\Entity\PriceGuide priceGuide '
				. 'JOIN priceGuide.company company '
				. 'LEFT JOIN priceGuide.offers offer '
				. '[WHERE]'
				. 'GROUP BY priceGuide.id '
				. 'HAVING numOffers = 0';
		$query = str_replace(array(
				'[WHERE]'
		), array(
				!empty($where)
				? 'WHERE ' . implode(' AND ', $where) . ' '
				: ' '
		), $query);
		$query = $this->em->createQuery($query);
		!empty($params)
			&& $query->setParameters($params);
		$data12 = count($query->getScalarResult());
		$this->em->clear();

		#-> Number with 1 offers %
		$data13 = 0 == $data1[0]['CarsLoaded']
			? 0
			: round((100 / $data1[0]['CarsLoaded']) * $data12, 2);

		#-> Change Data
		$data0val = $data0[0]['CarsLoaded'];
		$data1val = $data1[0]['CarsLoaded'];
		$data2val = $data2[0]['NumCarsWithOffers'];
		$data4val = $data4[0]['NumOffersMade'];

		#-> Collate information.
		$this->_data = array(array(
							'totalCarsLoaded' => $data0val,
							'totalLoadedOnPg' => $data1val,
							'TotalCarsOffers' => $data2val,
							'TotalCarsOffersPer' => $data3,
							'tNumOffers' => $data4val,
							'AvgNumOffers' => $data5,
							'NumOffers3' => $data6,
							'NumOffers3Per' => $data7,
							'NumOffers2' => $data8,
							'NumOffers2Per' => $data9,
							'NumOffers1' => $data10,
							'NumOffers1Per' => $data11,
							'NumOffers0' => $data12,
							'NumOffers0Per' => $data13
			));
		foreach ($this->_data as $id => $row)
		{
			//
		}
	}

}

Commits for namibiamodule/Report/src/Report/Report/PriceGuideFlash.php

Diff revisions: vs.
Revision Author Commited Message
bb2698 ... Diff Diff Mark Mon 24 Oct, 2016 08:44:08 +0000

latest update

df0489 ... Mark Fri 14 Oct, 2016 10:01:00 +0000

initial commit