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
|
<?php
include("config/parametres.php");
include("includes/sessions.php");
include("includes/functions.php");
// if user's ROLE is less then ADMIN : then go to Login | Panel
// -----------------------------------------------------------------------------
if (ROLE < ADMIN) {
header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: /");
die();
}
// Parse arguments and intitialize behaviout flags
// Arguments:
// ID -> ccode [ certain id: ##.## --or-- 0 = any id ]
////////////////////////////////////////////////////////////////////////////////
$doSearch = false; // shall not do a search (if no search arguments passes)
$totals = get_totals(); // get totals of categories
if ((isset($_GET['id'])) && (mb_strlen($_GET['id']) < 6)) {
$ccid = $_GET['id']; // category id passed
$doSearch = true;
}
// get records
// -----------------------------------------------------------------------------
if ($doSearch) {
$items = array();
// init database connection
$_dbc = new mysqli(DB_HOST, DB_USER, DB_PASS, DB_DBMS);
if ($_dbc->connect_errno) {
echo "Database connection failed; Please try in a few minutes. ";
if (TESTING) echo $_dbc->connect_error;
$_dbc->close(); die();
}
$_dbc->set_charset("utf8");
if ($ccid != '0') {
$_stm = $_dbc->prepare("SELECT id, img, img2, ccode, identity, summary, operator, `timestamp`, record FROM items WHERE ccode = ?");
$_stm->bind_param("s", $ccid);
}
else {
$_stm = $_dbc->prepare("SELECT id, img, img2, ccode, identity, summary, operator, `timestamp`, record FROM items");
}
$_stm->execute(); // execute query
$_stm->store_result(); // store result
if ($_stm->num_rows) {
$_stm->bind_result($id, $imgfile, $imgfile2, $ccode, $idnt, $sum, $opr, $tm, $serREC); // bind result variables
while ($_stm->fetch()) {
$record = unserialize($serREC);
$it_id = explode('.', $idnt);
// calculate record
$record['id'] = $id;
$record['ccode'] = $ccode;
$record['img'] = ( (strlen($imgfile) > 9) ? ("/". UPLOAD_DIR . intdiv($id,FOLDER_CPC) ."/". $imgfile) : "" );
$record['img2'] = ( (strlen($imgfile2) > 9) ? ("/". UPLOAD_DIR . intdiv($id,FOLDER_CPC) ."/". $imgfile2) : "" );
$record['identity'] = $idnt;
$record['operator'] = $opr;
$record['itemid'] = end($it_id);
$record['totalitems'] = $totals[$record['ccode']];
$record['timestamp'] = local_dt($tm);
$record['summary'] = $sum;
$items[] = $record;
unset($record);
/*
// unserialize main record to variable
$record = unserialize($serREC);
$it_id = explode('.', $idnt);
// calculate record
$record['id'] = $id;
$record['identity'] = $idnt;
$record['operator'] = $opr;
$record['itemid'] = end($it_id);
$record['totalitems'] = $totals[$ccode];
date_default_timezone_set('Europe/Athens');
setlocale(LC_ALL, 'el_GR.UTF-8', 'grc');
$record['timestamp'] = local_dt($tm);
$record['img'] = ( (strlen($imgfile) > 9) ? ("/". UPLOAD_DIR . intdiv($id,FOLDER_CPC) ."/". $imgfile) : "" );
$record['img2'] = ( (strlen($imgfile2) > 9) ? ("/". UPLOAD_DIR . intdiv($id,FOLDER_CPC) ."/". $imgfile2) : "" );
$items[] = array(
'id' => $id,
'ccode' => $ccode,
'summary' => $sum,
'record' => $record,
);
*/
}
}
$_stm->close(); // close statement
$_dbc->close(); // close connection
// 03. Prepare PDF to print ----------------------------------------------------
// include printing php script
////////////////////////////////////////////////////////////////////////////////
define("PRINT_MODE", 'book');
define("RENDER_COVER", true );
define("RENDER_HF", true); // render header + footer
$formARRAY = json_decode(FORMJSON);
include("do-pdf.php");
}
// Script Workflow:
// ---------------------------------------------------------------------------
// 1. read fields options
// 2. generate HTML
// 3. generate JS needed
// the UI
// ---------------------------------------------------------------------------
// Fields are grouped in sections
// These sections presented in tabs (or accordion if mobile device)
// Two (2) sections incduded to inform the user of empty fields or errors
// Libraries and FrameWorks used
// ---------------------------------------------------------------------------
// Bootstrap 4.3 is used for easy responsive HTML code
// JQuery 3.3 is used to handle user interation
// Select2 is used to make select-boxes (single or multiple) easier to use
// read fields options (json format) /////////////////////////////////////////
// ---------------------------------------------------------------------------
// --- depricated: $formJSON = file_get_contents('config/kallassa.json');
// --- $formJSON has been readed already on functions.php and being a global constant
$formARRAY = json_decode(FORMJSON);
// Init strigns for JS generator (needed to handle everything) ///////////////
// ---------------------------------------------------------------------------
$checkFilledJS = ""; // JS for checking empty fields
$ref2Select2JS = ""; // references to Select2-controls Javascript
$initSelectsJS = ""; // js to initialize select fields (single or multiple)
?><!DOCTYPE html>
<html prefix="og: http://ogp.me/ns#" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-GB" lang="en-GB" dir="ltr">
<head>
<!-- Metas + Title -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title><?=PROJECT?> : Κατάλογοι Αντικειμένων'</title>
<!-- CSS needed -->
<link href="https://fonts.googleapis.com/css?family=Ubuntu:400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/css/bootstrap.min.css" /><!-- v4.4.1 -->
<link rel="stylesheet" href="/css/select2.min.css" /><!-- v4.0.10 -->
<link rel="stylesheet" href="/css/pi.css" />
<style>
pre {
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
</style>
</head>
<body>
<?php // Menu ----------------------------------------------------------------
include("includes/menu.php");
?>
<div class="pi-container">
<div class="row">
<div class="col-md-12">
<h2>Κατάλογοι Αντικειμένων</h2>
<h4>Η διεργασία είναι υπό δοκιμή.</h4>
<div class=""><!-- class='row' : conflicts with select2 width @_@ -->
<form>
<div class="form-group col-md-12">
<label for="ccode">Κωδικός Κατηγορίας</label>
<select id="ccode" class="select-field" name="ccode" style="width:100%;">
<option></option>
<option value="0">ΟΛΑ — (<?=$totals['all']?>)</option>
<?php
$ccAr = json_decode(CODEJSON);
foreach ($ccAr as $key => $val) {
if (isset($totals[$val->id])) {
echo "<option value='". $val->id ."'>". $val->id ." : ". $val->tag . " — (". $totals[$val->id] .")</option>
";
}
}
?>
</select>
</div>
</form>
</div>
<hr />
<pre>
<?php
print_r($items);
?>
</pre>
</div>
</div>
</div>
<!-- DOM ENDS HERE -->
<!-- scripts and libraries
load and register one by one, so you don't need to worry about if they are ready -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-migrate/1.4.1/jquery-migrate.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.10/js/select2.full.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.10/js/i18n/el.js"></script>
<!-- scripts and libraries
load and register one by one, so you don't need to worry about if they are ready
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-migrate/1.4.1/jquery-migrate.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
-->
<script>
// NOW RUN EVERYTHING AFTER JQUERY (AND DOM ready)
// -----------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////
var waitingResponse = false; // flag for an ajax request that was sent and still waiting response
// functions needed
// ---------------------------------------------------------------------------
// pure JS ajax GET request
// return data as JSON
// no fancy things like UTF8; if needed use base64 ---------------------------
function ajax_get(url, callback) {
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
try {
var data = JSON.parse(xmlhttp.responseText);
} catch(err) {
console.log(err.message + " in " + xmlhttp.responseText);
return;
}
callback(data);
}
};
xmlhttp.open("GET", url, true);
xmlhttp.send();
}
// menu management
// ---------------------------------------------------------------------------
$('.dropdown-item').on('click', function(e){
e.preventDefault();
// all data-goto have the format: 'method,uri_address'
// uri_address is the url to call
// method options:
// * url : means goto url (redirect)
// * ajax : means call url via ajax; if 'success = true' then goto '/' after that
// -------------------------------------------------------------------------
var opt = $(this).data('goto').split(','); // split data-goto
if (opt[0] == 'url') { // if method = url
window.location.href = opt[1];
}
else { // else, method = ajax
ajax_get(opt[1], function(response) {
if (response.success) {
window.location.href = '/';
}
});
}
});
// 01. MENU MANAGEMENT
// ---------------------------------------------------------------------------
//////////////////////////////////////////////////////////////////////////////
// menu management
// ---------------------------------------------------------------------------
$('.dropdown-item').on('click', function(e) {
e.preventDefault();
if (!waitingResponse) {
waitingResponse = true;
// var r = confirm("Δεν έχετε αποθηκεύσει το τρέχον αντικείμενο!\nΕίστε σίγουροι ότι θέλετε να εγκαταλείψετε τη σελίδα;");
r = true; // no need for confirmation
if (r == true) {
// all data-goto have the format: 'method,uri_address'
// uri_address is the url to call
// method options:
// * url : means goto url (redirect)
// * ajax : means call url via ajax; if 'success = true' then goto '/' after that
// -----------------------------------------------------------------------
var opt = $(this).data('goto').split(','); // split data-goto
if (opt[0] == 'url') { // if method = url
window.location.href = opt[1];
}
else { // else, method = ajax
ajax_get(opt[1], function(response) {
if (response.success) {
window.location.href = '/';
}
});
}
}
else {
// user did not confirmed the selection; do nothing
}
waitingResponse = false;
}
});
// 02. INIT AND HANDLE SEARCH FIELDS
// (select2 CCODE)
// ---------------------------------------------------------------------------
//////////////////////////////////////////////////////////////////////////////
// FUNCTION: Get selected value(s) of Select2 control
// pass arg: source-element
// return: value(s) comma-separated
// ---------------------------------------------------------------------------
function getValues(srcElm) {
var res;
var obj = srcElm.select2('data'); // get delected data array
if (obj.length === 0) return ''; // if empty list then nothig is selected
else {
var i = 0;
obj.forEach(function(elm){ // loop through object elements array
if (i) res += ',' + elm.id; // if not first item, prepend ',' befor value(id)
else res = elm.id; // else set (first) checked value
i++;
});
}
return res;
}
// patch select2-multiple widths
// ---------------------------------------------------------------------------
$('.select-field').select2({ width: '100%' });
// init CCODE select2
// ---------------------------------------------------------------------------
var ccode = $('#ccode');
ccode.select2({ placeholder: ' ', allowClear: true });
$('form').on('keyup change paste', 'input, select, textarea', function(){
console.log('Form changed!');
window.location.href = '/ui-catalogs.php?id=' + getValues(ccode);
});
</script>
</body>
</html>
|