forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SalesAnalRepts.php
517 lines (429 loc) · 18.5 KB
/
SalesAnalRepts.php
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
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
<?php
include('includes/session.php');
$Title = _('Sales Analysis Reports Maintenance');
/* webERP manual links before header.php */
$ViewTopic= 'SalesAnalysis';
$BookMark = 'SalesAnalysis';
include('includes/header.php');
echo '<p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/supplier.png" title="' . _('Search') . '" alt="" />' . ' ' . $Title . '</p>';
function GrpByDataOptions($GroupByDataX) {
/*Sales analysis headers group by data options */
if ($GroupByDataX == 'Sales Area') {
echo '<option selected="selected" value="Sales Area">' . _('Sales Area') . '</option>';
} else {
echo '<option value="Sales Area">' . _('Sales Area') . '</option>';
}
if ($GroupByDataX == 'Product Code') {
echo '<option selected="selected" value="Product Code">' . _('Product Code') . '</option>';
} else {
echo '<option value="Product Code">' . _('Product Code') . '</option>';
}
if ($GroupByDataX == 'Customer Code') {
echo '<option selected="selected" value="Customer Code">' . _('Customer Code') . '</option>';
} else {
echo '<option value="Customer Code">' . _('Customer Code') . '</option>';
}
if ($GroupByDataX == 'Sales Type') {
echo '<option selected="selected" value="Sales Type">' . _('Sales Type') . '</option>';
} else {
echo '<option value="Sales Type">' . _('Sales Type') . '</option>';
}
if ($GroupByDataX == 'Product Type') {
echo '<option selected="selected" value="Product Type">' . _('Product Type') . '</option>';
} else {
echo '<option value="Product Type">' . _('Product Type') . '</option>';
}
if ($GroupByDataX == 'Customer Branch') {
echo '<option selected="selected" value="Customer Branch">' . _('Customer Branch') . '</option>';
} else {
echo '<option value="Customer Branch">' . _('Customer Branch') . '</option>';
}
if ($GroupByDataX == 'Sales Person') {
echo '<option selected="selected" value="Sales Person">' . _('Sales Person') . '</option>';
} else {
echo '<option value="Sales Person">' . _('Sales Person') . '</option>';
}
if ($GroupByDataX=='Not Used' OR $GroupByDataX == '' OR ! isset($GroupByDataX) OR is_null($GroupByDataX)){
echo '<option selected="selected" value="Not Used">' . _('Not Used') . '</option>';
} else {
echo '<option value="Not Used">' . _('Not Used') . '</option>';
}
}
/* end of function */
echo '<br />';
if (isset($_GET['SelectedReport'])) {
$SelectedReport = $_GET['SelectedReport'];
} elseif (isset($_POST['SelectedReport'])) {
$SelectedReport = $_POST['SelectedReport'];
}
if (isset($_POST['submit'])) {
//initialise no input errors assumed initially before we test
$InputError = 0;
/* actions to take once the user has clicked the submit button
ie the page has called itself with some user input */
//first off validate inputs sensible
if (mb_strlen($_POST['ReportHeading']) <2) {
$InputError = 1;
prnMsg(_('The report heading must be more than two characters long') . '. ' . _('No report heading was entered'),'error',_('Heading too long'));
}
if ($_POST['GroupByData1']=='' OR !isset($_POST['GroupByData1']) OR $_POST['GroupByData1']=='Not Used') {
$InputError = 1;
prnMsg (_('A group by item must be specified for the report to have any output'),'error',_('No Group By selected'));
}
if ($_POST['GroupByData3']=='Not Used' AND $_POST['GroupByData4']!='Not Used') {
// If GroupByData3 is blank but GroupByData4 is used then move GroupByData3 to GroupByData2
$_POST['GroupByData3'] = $_POST['GroupByData4'];
$_POST['Lower3'] = $_POST['Lower4'];
$_POST['Upper3'] = $_POST['Upper4'];
}
if ($_POST['GroupByData2']=='Not Used' AND $_POST['GroupByData3']!='Not Used') {
/*If GroupByData2 is blank but GroupByData3 is used then move GroupByData3 to GroupByData2 */
$_POST['GroupByData2'] = $_POST['GroupByData3'];
$_POST['Lower2'] = $_POST['Lower3'];
$_POST['Upper2'] = $_POST['Upper3'];
}
if (($_POST['Lower1']=='' OR $_POST['Upper1']=='')) {
$InputError = 1;
prnMsg (_('Group by Level 1 is set but the upper and lower limits are not set') . ' - ' . _('these must be specified for the report to have any output'),'error',_('Upper/Lower limits not set'));
}
if (($_POST['GroupByData2']!='Not Used') AND ($_POST['Lower2']=='' OR $_POST['Upper2']=='')) {
$InputError = 1;
prnMsg( _('Group by Level 2 is set but the upper and lower limits are not set') . ' - ' . _('these must be specified for the report to have any output'),'error',_('Upper/Lower Limits not set'));
}
if (($_POST['GroupByData3']!='Not Used') AND ($_POST['Lower3']=='' OR $_POST['Upper3']=='')) {
$InputError = 1;
prnMsg( _('Group by Level 3 is set but the upper and lower limits are not set') . ' - ' . _('these must be specified for the report to have any output'),'error',_('Upper/Lower Limits not set'));
}
if (($_POST['GroupByData4']!='Not Used') AND ($_POST['Lower4']=='' OR $_POST['Upper4']=='')) {
$InputError = 1;
prnMsg( _('Group by Level 4 is set but the upper and lower limits are not set') . ' - ' . _('these must be specified for the report to have any output'),'error',_('Upper/Lower Limits not set'));
}
if ($_POST['GroupByData1']!='Not Used' AND $_POST['Lower1'] > $_POST['Upper1']) {
$InputError = 1;
prnMsg(_('Group by Level 1 is set but the lower limit is greater than the upper limit') . ' - ' . _('the report will have no output'),'error',_('Lower Limit > Upper Limit'));
}
if ($_POST['GroupByData2']!='Not Used' AND $_POST['Lower2'] > $_POST['Upper2']) {
$InputError = 1;
prnMsg(_('Group by Level 2 is set but the lower limit is greater than the upper limit') . ' - ' . _('the report will have no output'),'error',_('Lower Limit > Upper Limit'));
}
if ($_POST['GroupByData3']!='Not Used' AND $_POST['Lower3'] > $_POST['Upper3']) {
$InputError = 1;
prnMsg(_('Group by Level 3 is set but the lower limit is greater than the upper limit') . ' - ' . _('the report will have no output'),'error',_('Lower Limit > Upper Limit'));
}
if ($_POST['GroupByData4']!='Not Used' AND $_POST['Lower4'] > $_POST['Upper4']) {
$InputError = 1;
prnMsg(_('Group by Level 4 is set but the lower limit is greater than the upper limit') . ' - ' . _('the report will have no output'),'error',_('Lower Limit > Upper Limit'));
}
if (isset($SelectedReport) AND $InputError !=1) {
/*SelectedReport could also exist if submit had not been clicked this code
would not run in this case cos submit is false of course see the
delete code below*/
$sql = "UPDATE reportheaders SET
reportheading='" . $_POST['ReportHeading'] . "',
groupbydata1='" . $_POST['GroupByData1'] . "',
groupbydata2='" . $_POST['GroupByData2'] . "',
groupbydata3='" . $_POST['GroupByData3'] . "',
groupbydata4='" . $_POST['GroupByData4'] . "',
newpageafter1='" . $_POST['NewPageAfter1'] . "',
newpageafter2='" . $_POST['NewPageAfter2'] . "',
newpageafter3='" . $_POST['NewPageAfter3'] . "',
lower1='" . filter_number_format($_POST['Lower1']) . "',
upper1='" . filter_number_format($_POST['Upper1']) . "',
lower2='" . filter_number_format($_POST['Lower2']) . "',
upper2='" . filter_number_format($_POST['Upper2']) . "',
lower3='" . filter_number_format($_POST['Lower3']) . "',
upper3='" . filter_number_format($_POST['Upper3']) . "',
lower4='" . filter_number_format($_POST['Lower4']) . "',
upper4='" . filter_number_format($_POST['Upper4']) . "'
WHERE reportid = " . $SelectedReport;
$ErrMsg = _('The report could not be updated because');
$DbgMsg = _('The SQL used to update the report headers was');
$result = DB_query($sql,$ErrMsg,$DbgMsg);
prnMsg( _('The') .' ' . $_POST['ReportHeading'] . ' ' . _('report has been updated'),'success', 'Report Updated');
unset($SelectedReport);
unset($_POST['ReportHeading']);
unset($_POST['GroupByData1']);
unset($_POST['GroupByData2']);
unset($_POST['GroupByData3']);
unset($_POST['GroupByData4']);
unset($_POST['NewPageAfter1']);
unset($_POST['NewPageAfter2']);
unset($_POST['NewPageAfter3']);
unset($_POST['Lower1']);
unset($_POST['Upper1']);
unset($_POST['Lower2']);
unset($_POST['Upper2']);
unset($_POST['Lower3']);
unset($_POST['Upper3']);
unset($_POST['Lower4']);
unset($_POST['Upper4']);
} elseif ($InputError !=1) {
/*SelectedReport is null cos no item selected on first time round so must be adding a new report */
$sql = "INSERT INTO reportheaders (
reportheading,
groupbydata1,
groupbydata2,
groupbydata3,
groupbydata4,
newpageafter1,
newpageafter2,
newpageafter3,
lower1,
upper1,
lower2,
upper2,
lower3,
upper3,
lower4,
upper4 )
VALUES (
'" . $_POST['ReportHeading'] . "',
'" . $_POST['GroupByData1']. "',
'" . $_POST['GroupByData2'] . "',
'" . $_POST['GroupByData3'] . "',
'" . $_POST['GroupByData4'] . "',
'" . $_POST['NewPageAfter1'] . "',
'" . $_POST['NewPageAfter2'] . "',
'" . $_POST['NewPageAfter3'] . "',
'" . filter_number_format($_POST['Lower1']) . "',
'" . filter_number_format($_POST['Upper1']) . "',
'" . filter_number_format($_POST['Lower2']) . "',
'" . filter_number_format($_POST['Upper2']) . "',
'" . filter_number_format($_POST['Lower3']) . "',
'" . filter_number_format($_POST['Upper3']) . "',
'" . filter_number_format($_POST['Lower4']) . "',
'" . filter_number_format($_POST['Upper4']) . "'
)";
$ErrMsg = _('The report could not be added because');
$DbgMsg = _('The SQL used to add the report header was');
$result = DB_query($sql,$ErrMsg,$DbgMsg);
prnMsg(_('The') . ' ' . $_POST['ReportHeading'] . ' ' . _('report has been added to the database'),'success','Report Added');
unset($SelectedReport);
unset($_POST['ReportHeading']);
unset($_POST['GroupByData1']);
unset($_POST['GroupByData2']);
unset($_POST['GroupByData3']);
unset($_POST['GroupByData4']);
unset($_POST['NewPageAfter1']);
unset($_POST['NewPageAfter2']);
unset($_POST['NewPageAfter3']);
unset($_POST['Lower1']);
unset($_POST['Upper1']);
unset($_POST['Lower2']);
unset($_POST['Upper2']);
unset($_POST['Lower3']);
unset($_POST['Upper3']);
unset($_POST['Lower4']);
unset($_POST['Upper4']);
}
} elseif (isset($_GET['delete'])) {
//the link to delete a selected record was clicked instead of the submit button
$sql="DELETE FROM reportcolumns WHERE reportid='".$SelectedReport."'";
$ErrMsg = _('The deletion of the report column failed because');
$DbgMsg = _('The SQL used to delete the report column was');
$result = DB_query($sql,$ErrMsg,$DbgMsg);
$sql="DELETE FROM reportheaders WHERE reportid='".$SelectedReport."'";
$ErrMsg = _('The deletion of the report heading failed because');
$DbgMsg = _('The SQL used to delete the report headers was');
$result = DB_query($sql,$ErrMsg,$DbgMsg);
prnMsg(_('Report Deleted') ,'info');
unset($SelectedReport);
include ('includes/footer.php');
exit;
}
if (!isset($SelectedReport)) {
/* It could still be the second time the page has been run and a record has been selected for modification - SelectedReport will exist because it was sent with the new call. If its the first time the page has been displayed with no parameters
then none of the above are true and the list of Reports will be displayed with
links to delete or edit each. These will call the same page again and allow update/input
or deletion of the records*/
$result = DB_query("SELECT reportid, reportheading FROM reportheaders ORDER BY reportid");
echo '<table class="selection">';
echo '<tr>
<th>' . _('Report No') . '</th>
<th>' . _('Report Title') . '</th>
</tr>';
while ($myrow = DB_fetch_array($result)) {
printf('<tr class="striped_row">
<td>%s</td>
<td>%s</td>
<td><a href="%s&SelectedReport=%s">' . _('Design') . '</a></td>
<td><a href="%s/SalesAnalReptCols.php?ReportID=%s">' . _('Define Columns') . '</a></td>
<td><a href="%s/SalesAnalysis_UserDefined.php?ReportID=%s&ProducePDF=True">' . _('Make PDF Report') . '</a></td>
<td><a href="%s/SalesAnalysis_UserDefined.php?ReportID=%s&ProduceCVSFile=True">' . _('Make CSV File') . '</a></td>
<td><a href="%s&SelectedReport=%s&delete=1" onclick="return confirm(\'' . _('Are you sure you wish to remove this report design?') . '\');">' . _('Delete') . '</a></td>
</tr>',
$myrow[0],
$myrow[1],
htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?',
$myrow[0],
$RootPath,
$myrow[0],
$RootPath,
$myrow[0],
$RootPath,
$myrow[0],
htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?',
$myrow[0]);
}
//END WHILE LIST LOOP
echo '</table><br />';
}
//end of ifs and buts!
if (isset($SelectedReport)) {
echo '<a href="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '">' . _('Show All Defined Reports') . '</a>';
}
echo '<br />';
if (!isset($_GET['delete'])) {
echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '">';
echo '<div>';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
if (isset($SelectedReport)) {
//editing an existing Report
$sql = "SELECT reportid,
reportheading,
groupbydata1,
newpageafter1,
upper1,
lower1,
groupbydata2,
newpageafter2,
upper2,
lower2,
groupbydata3,
upper3,
lower3,
newpageafter3,
groupbydata4,
upper4,
lower4
FROM reportheaders
WHERE reportid='".$SelectedReport."'";
$ErrMsg = _('The reports for display could not be retrieved because');
$DbgMsg = _('The SQL used to retrieve the report headers was');
$result = DB_query($sql, $ErrMsg, $DbgMsg);
$myrow = DB_fetch_array($result);
$ReportID = $myrow['reportid'];
$_POST['ReportHeading'] = $myrow['reportheading'];
$_POST['GroupByData1'] = $myrow['groupbydata1'];
$_POST['NewPageAfter1'] = $myrow['newpageafter1'];
$_POST['Upper1'] = $myrow['upper1'];
$_POST['Lower1'] = $myrow['lower1'];
$_POST['GroupByData2'] = $myrow['groupbydata2'];
$_POST['NewPageAfter2'] = $myrow['newpageafter2'];
$_POST['Upper2'] = $myrow['upper2'];
$_POST['Lower2'] = $myrow['lower2'];
$_POST['GroupByData3'] = $myrow['groupbydata3'];
$_POST['Upper3'] = $myrow['upper3'];
$_POST['Lower3'] = $myrow['lower3'];
$_POST['GroupByData4'] = $myrow['groupbydata4'];
$_POST['Upper4'] = $myrow['upper4'];
$_POST['Lower4'] = $myrow['lower4'];
echo '<input type="hidden" name="SelectedReport" value="' . $SelectedReport . '" />';
echo '<input type="hidden" name="ReportID" value="' . $ReportID . '" />';
echo '<table width="98%" class="selection">
<tr>
<th colspan="8"><h3>' . _('Edit The Selected Report') . '</h3></th>
</tr>';
} else {
echo '<table width="98%" class="selection">
<tr>
<th colspan="8"><h3>' . _('Define A New Report') . '</h3></th>
</tr>';
}
if (!isset($_POST['ReportHeading'])) {
$_POST['ReportHeading']='';
}
echo '<tr>
<td class="number">' . _('Report Heading') . ':</td>
<td colspan="2"><input type="text" size="80" maxlength="80" name="ReportHeading" value="' . $_POST['ReportHeading'] . '" /></td>
</tr>';
echo '<tr>
<td>' . _('Group By 1') . ': <select name="GroupByData1">';
GrpByDataOptions($_POST['GroupByData1']);
echo '</select></td>
<td>' . _('Page Break After') . ': <select name="NewPageAfter1">';
if ($_POST['NewPageAfter1']==0){
echo '<option selected="selected" value="0">' . _('No') . '</option>';
echo '<option value="1">' . _('Yes') . '</option>';
} Else {
echo '<option value="0">' . _('No') . '</option>';
echo '<option selected="selected" value="1">' . _('Yes') . '</option>';
}
echo '</select></td>';
if (!isset($_POST['Lower1'])) {
$_POST['Lower1'] = '';
}
if (!isset($_POST['Upper1'])) {
$_POST['Upper1'] = '';
}
echo '<td>' . _('From') . ': <input type="text" name="Lower1" size="10" maxlength="10" value="' . $_POST['Lower1'] . '" /></td>
<td>' . _('To') . ': <input type="text" name="Upper1" size="10" maxlength="10" value="' . $_POST['Upper1'] .'" /></td>
</tr>
<tr>
<td>' . _('Group By 2') . ': <select name="GroupByData2">';
GrpByDataOptions($_POST['GroupByData2']);
echo '</select></td>
<td>' . _('Page Break After') . ': <select name="NewPageAfter2">';
if ($_POST['NewPageAfter2']==0){
echo '<option selected="selected" value="0">' . _('No') . '</option>';
echo '<option value="1">' . _('Yes') . '</option>';
} Else {
echo '<option value="0">' . _('No') . '</option>';
echo '<option selected="selected" value="1">' . _('Yes') . '</option>';
}
if (!isset($_POST['Lower2'])) {
$_POST['Lower2'] = '';
}
if (!isset($_POST['Upper2'])) {
$_POST['Upper2'] = '';
}
echo '</select></td>';
echo '<td>' . _('From') . ': <input type="text" name="Lower2" size="10" maxlength="10" value="' . $_POST['Lower2'] . '" /></td>
<td>' . _('To') . ': <input type="text" name="Upper2" size="10" maxlength="10" value="' . $_POST['Upper2'] . '" /></td>
</tr>
<tr>
<td>' . _('Group By 3') . ': <select name="GroupByData3">';
GrpByDataOptions($_POST['GroupByData3']);
echo '</select></td>
<td>' . _('Page Break After') . ': <select name="NewPageAfter3">';
if ($_POST['NewPageAfter3']==0){
echo '<option selected="selected" value="0">' . _('No') . '</option>';
echo '<option value="1">' . _('Yes') . '</option>';
} else {
echo '<option value="0">' . _('No') . '</option>';
echo '<option selected="selected" value="1">' . _('Yes') . '</option>';
}
echo '</select></td>';
if (!isset($_POST['Lower3'])) {
$_POST['Lower3'] = '';
}
if (!isset($_POST['Upper3'])) {
$_POST['Upper3'] = '';
}
echo '<td>' . _('From') . ': <input type="text" name="Lower3" size="10" maxlength="10" value="' . $_POST['Lower3'] . '" /></td>
<td>' . _('To') . ': <input type="text" name="Upper3" size="10" maxlength="10" value="' . $_POST['Upper3'] . '" /></td>
</tr>
<tr>
<td>' . _('Group By 4') . ': <select name="GroupByData4">';
GrpByDataOptions($_POST['GroupByData4']);
echo '</select></td>
<td></td>';
if (!isset($_POST['Lower4'])) {
$_POST['Lower4'] = '';
}
if (!isset($_POST['Upper4'])) {
$_POST['Upper4'] = '';
}
echo '<td>' . _('From') .': <input type="text" name="Lower4" size="10" maxlength="10" value="' . $_POST['Lower4'] . '" /></td>
<td>' . _('To') . ': <input type="text" name="Upper4" size="10" maxlength="10" value="' . $_POST['Upper4'] . '" /></td>
</tr>';
echo '</table>';
echo '<br />
<div class="centre">
<input type="submit" name="submit" value="' . _('Enter Information') . '" />
</div>
</div>
</form>';
} //end if record deleted no point displaying form to add record
include('includes/footer.php');
?>