forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
QATests.php
489 lines (443 loc) · 15 KB
/
QATests.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
<?php
include('includes/session.php');
$Title = _('QA Tests Maintenance');
$ViewTopic= 'QualityAssurance';// Filename in ManualContents.php's TOC.
$BookMark = 'QA_Tests';// Anchor's id in the manual's html document.
include('includes/header.php');
if (isset($_GET['SelectedQATest'])){
$SelectedQATest =mb_strtoupper($_GET['SelectedQATest']);
} elseif(isset($_POST['SelectedQATest'])){
$SelectedQATest =mb_strtoupper($_POST['SelectedQATest']);
}
if (isset($Errors)) {
unset($Errors);
}
$Errors = array();
echo '<p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/maintenance.png" title="' . _('Search') . '" alt="" />' . ' ' . $Title . '</p>';
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 */
$i=1;
//first off validate inputs sensible
if (mb_strlen($_POST['QATestName']) > 50) {
$InputError = 1;
prnMsg(_('The QA Test name must be fifty characters or less long'),'error');
$Errors[$i] = 'QATestName';
$i++;
}
if (mb_strlen($_POST['Type']) =='') {
$InputError = 1;
prnMsg(_('The Type must not be blank'),'error');
$Errors[$i] = 'Type';
$i++;
}
$sql= "SELECT COUNT(*) FROM qatests WHERE qatests.name='".$_POST['QATestName']."'
AND qatests.testid <> '" .$SelectedQATest. "'";
$result = DB_query($sql);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
$InputError = 1;
prnMsg(_('The QA Test name already exists'),'error');
$Errors[$i] = 'QATestName';
$i++;
}
if (isset($SelectedQATest) AND $InputError !=1) {
/*SelectedQATest 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 qatests SET name='" . $_POST['QATestName'] . "',
method='" . $_POST['Method'] . "',
groupby='" . $_POST['GroupBy'] . "',
units='" . $_POST['Units'] . "',
type='" . $_POST['Type'] . "',
defaultvalue='" . $_POST['DefaultValue'] . "',
numericvalue='" . $_POST['NumericValue'] . "',
showoncert='" . $_POST['ShowOnCert'] . "',
showonspec='" . $_POST['ShowOnSpec'] . "',
showontestplan='" . $_POST['ShowOnTestPlan'] . "',
active='" . $_POST['Active'] . "'
WHERE qatests.testid = '".$SelectedQATest."'";
$msg = _('QA Test record for') . ' ' . $_POST['QATestName'] . ' ' . _('has been updated');
} elseif ($InputError !=1) {
/*Selected group is null cos no item selected on first time round so must be adding a record must be submitting new entries in the new QA Test form */
$sql = "INSERT INTO qatests (name,
method,
groupby,
units,
type,
defaultvalue,
numericvalue,
showoncert,
showonspec,
showontestplan,
active)
VALUES ('" . $_POST['QATestName'] . "',
'" . $_POST['Method'] . "',
'" . $_POST['GroupBy'] . "',
'" . $_POST['Units'] . "',
'" .$_POST['Type'] . "',
'" . $_POST['DefaultValue'] . "',
'" . $_POST['NumericValue'] . "',
'" . $_POST['ShowOnCert'] . "',
'" . $_POST['ShowOnSpec'] . "',
'" . $_POST['ShowOnTestPlan'] . "',
'" . $_POST['Active'] . "'
)";
$msg = _('A new QA Test record has been added for') . ' ' . $_POST['QATestName'];
}
if ($InputError !=1) {
//run the SQL from either of the above possibilites
$ErrMsg = _('The insert or update of the QA Test failed because');
$DbgMsg = _('The SQL that was used and failed was');
$result = DB_query($sql,$ErrMsg, $DbgMsg);
prnMsg($msg , 'success');
unset($SelectedQATest);
unset($_POST['QATestName']);
//unset($_POST['Method']);
//unset($_POST['GroupBy']);
//unset($_POST['Units']);
//unset($_POST['Type']);
unset($_POST['DefaultValue']);
unset($_POST['NumericValue']);
//unset($_POST['ShowOnCert']);
//unset($_POST['ShowOnSpec']);
//unset($_POST['ShowOnTestPlan']);
//unset($_POST['Active']);
}
} elseif (isset($_GET['delete'])) {
//the link to delete a selected record was clicked instead of the submit button
// PREVENT DELETES IF DEPENDENT RECORDS
$sql= "SELECT COUNT(*) FROM prodspec WHERE prodspec.testid='".$SelectedQATest."'";
//$result = DB_query($sql);
//$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
prnMsg(_('Cannot delete this QA Test because Product Specs are using it'),'error');
} else {
$sql="DELETE FROM qatests WHERE testid='". $SelectedQATest."'";
$ErrMsg = _('The QA Test could not be deleted because');
$result = DB_query($sql,$ErrMsg);
prnMsg(_('QA Test') . ' ' . $SelectedQATest . ' ' . _('has been deleted from the database'),'success');
unset ($SelectedQATest);
unset($delete);
unset ($_GET['delete']);
}
}
if (isset($SelectedQATest)) {
echo '<div class="centre"><a href="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '">' . _('Show All QA Tests') . '</a></div>';
}
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($SelectedQATest)) {
//editing an existing Sales-person
$sql = "SELECT testid,
name,
method,
groupby,
units,
type,
defaultvalue,
numericvalue,
showoncert,
showonspec,
showontestplan,
active
FROM qatests
WHERE testid='".$SelectedQATest."'";
$result = DB_query($sql);
$myrow = DB_fetch_array($result);
$_POST['SelectedQATest'] = $myrow['testid'];
$_POST['QATestName'] = $myrow['name'];
$_POST['Method'] = $myrow['method'];
$_POST['GroupBy'] = $myrow['groupby'];
$_POST['Type'] = $myrow['type'];
$_POST['Units'] = $myrow['units'];
$_POST['DefaultValue'] = $myrow['defaultvalue'];
$_POST['NumericValue'] = $myrow['numericvalue'];
$_POST['ShowOnCert'] = $myrow['showoncert'];
$_POST['ShowOnSpec'] = $myrow['showonspec'];
$_POST['ShowOnTestPlan'] = $myrow['showontestplan'];
$_POST['Active'] = $myrow['active'];
echo '<input type="hidden" name="SelectedQATest" value="' . $SelectedQATest . '" />';
echo '<input type="hidden" name="TestID" value="' . $_POST['SelectedQATest'] . '" />';
echo '<table class="selection">
<tr>
<td>' . _('QA Test ID') . ':</td>
<td>' . $_POST['SelectedQATest'] . '</td>
</tr>';
} else { //end of if $SelectedQATest only do the else when a new record is being entered
echo '<table class="selection">';
}
if (!isset($_POST['QATestName'])){
$_POST['QATestName']='';
}
if (!isset($_POST['Method'])){
$_POST['Method']='';
}
if (!isset($_POST['GroupBy'])){
$_POST['GroupBy']='';
}
if (!isset($_POST['Units'])){
$_POST['Units']='';
}
if (!isset($_POST['Type'])) {
$_POST['Type']=4;
}
if (!isset($_POST['Active'])) {
$_POST['Active']=1;
}
if (!isset($_POST['NumericValue'])) {
$_POST['NumericValue']=1;
}
if (!isset($_POST['ShowOnCert'])) {
$_POST['ShowOnCert']=1;
}
if (!isset($_POST['ShowOnSpec'])) {
$_POST['ShowOnSpec']=1;
}
if (!isset($_POST['ShowOnTestPlan'])) {
$_POST['ShowOnTestPlan']=1;
}
echo '<tr>
<td>' . _('QA Test Name') . ':</td>
<td><input type="text" '. (in_array('QATestName',$Errors) ? 'class="inputerror"' : '' ) .' name="QATestName" required="required" title="' . _('The name of the Test you are setting up') . '" size="30" maxlength="50" value="' . $_POST['QATestName'] . '" /></td>
</tr>';
echo '<tr>
<td>' . _('Method') . ':</td>
<td><input type="text" name="Method" title="' . _('ASTM, ISO, UL or other') . '" size="20" maxlength="20" value="' . $_POST['Method'] . '" /></td>
</tr>';
echo '<tr>
<td>' . _('Group By') . ':</td>
<td><input type="text" name="GroupBy" title="' . _('Can be used to group certain Tests on the Product Specification or Certificate of
Analysis or left blank') . '" size="20" maxlength="20" value="' . $_POST['GroupBy'] . '" /></td>
</tr>';
echo '<tr>
<td>' . _('Units') . ':</td>
<td><input type="text" name="Units" title="' . _('How this is measured. PSI, Fahrenheit, Celsius etc.') . '" size="20" maxlength="20" value="' . $_POST['Units'] . '" /></td>
</tr>';
echo '<tr>
<td>' . _('Type') . ':</td>
<td><select title="' . _('What sort of data field is required to record the results for this test') . '" name="Type">';
if ($_POST['Type']==0){
echo '<option selected="selected" value="0">' . _('Text Box') . '</option>';
} else {
echo '<option value="0">' . _('Text Box') . '</option>';
}
if ($_POST['Type']==1){
echo '<option selected="selected" value="1">' . _('Select Box') . '</option>';
} else {
echo '<option value="1">' . _('Select Box') . '</option>';
}
if ($_POST['Type']==2){
echo '<option selected="selected" value="2">' . _('Check Box') . '</option>';
} else {
echo '<option value="2">' . _('Check Box') . '</option>';
}
if ($_POST['Type']==3){
echo '<option selected="selected" value="3">' . _('Date Box') . '</option>';
} else {
echo '<option value="3">' . _('Date Box') . '</option>';
}
if ($_POST['Type']==4){
echo '<option selected="selected" value="4">' . _('Range') . '</option>';
} else {
echo '<option value="4">' . _('Range') . '</option>';
}
echo '</select></td></tr><tr>
<td>' . _('Possible Values') . ':</td>
<td><input type="text" name="DefaultValue" size="50" maxlength="150" value="' . $_POST['DefaultValue']. '" /></td>
</tr>';
echo '<tr>
<td>' . _('Numeric Value?') . ':</td>
<td><select name="NumericValue">';
if ($_POST['NumericValue']==1){
echo '<option selected="selected" value="1">' . _('Yes') . '</option>';
} else {
echo '<option value="1">' . _('Yes') . '</option>';
}
if ($_POST['NumericValue']==0){
echo '<option selected="selected" value="0">' . _('No') . '</option>';
} else {
echo '<option value="0">' . _('No') . '</option>';
}
echo '</select></td></tr><tr>
<td>' . _('Show On Cert?') . ':</td>
<td><select name="ShowOnCert">';
if ($_POST['ShowOnCert']==1){
echo '<option selected="selected" value="1">' . _('Yes') . '</option>';
} else {
echo '<option value="1">' . _('Yes') . '</option>';
}
if ($_POST['ShowOnCert']==0){
echo '<option selected="selected" value="0">' . _('No') . '</option>';
} else {
echo '<option value="0">' . _('No') . '</option>';
}
echo '</select></td></tr><tr>
<td>' . _('Show On Spec?') . ':</td>
<td><select name="ShowOnSpec">';
if ($_POST['ShowOnSpec']==1){
echo '<option selected="selected" value="1">' . _('Yes') . '</option>';
} else {
echo '<option value="1">' . _('Yes') . '</option>';
}
if ($_POST['ShowOnSpec']==0){
echo '<option selected="selected" value="0">' . _('No') . '</option>';
} else {
echo '<option value="0">' . _('No') . '</option>';
}
echo '</select></td></tr><tr>
<td>' . _('Show On Test Plan?') . ':</td>
<td><select name="ShowOnTestPlan">';
if ($_POST['ShowOnTestPlan']==1){
echo '<option selected="selected" value="1">' . _('Yes') . '</option>';
} else {
echo '<option value="1">' . _('Yes') . '</option>';
}
if ($_POST['ShowOnTestPlan']==0){
echo '<option selected="selected" value="0">' . _('No') . '</option>';
} else {
echo '<option value="0">' . _('No') . '</option>';
}
echo '</select></td></tr><tr>
<td>' . _('Active?') . ':</td>
<td><select name="Active">';
if ($_POST['Active']==1){
echo '<option selected="selected" value="1">' . _('Yes') . '</option>';
} else {
echo '<option value="1">' . _('Yes') . '</option>';
}
if ($_POST['Active']==0){
echo '<option selected="selected" value="0">' . _('No') . '</option>';
} else {
echo '<option value="0">' . _('No') . '</option>';
}
echo '</select></td>
</tr>
</table>
<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
if (!isset($SelectedQATest)) {
/* It could still be the second time the page has been run and a record has been selected for modification - SelectedQATest 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 QA Test 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*/
$sql = "SELECT testid,
name,
method,
groupby,
units,
type,
defaultvalue,
numericvalue,
showoncert,
showonspec,
showontestplan,
active
FROM qatests
ORDER BY name";
$result = DB_query($sql);
echo '<table class="selection">
<thead>
<tr>
<th class="ascending">' . _('Test ID') . '</th>
<th class="ascending">' . _('Name') . '</th>
<th class="ascending">' . _('Method') . '</th>
<th class="ascending">' . _('Group By') . '</th>
<th class="ascending">' . _('Units') . '</th>
<th class="ascending">' . _('Type') . '</th>
<th>' . _('Possible Values') . '</th>
<th class="ascending">' . _('Numeric Value') . '</th>
<th class="ascending">' . _('Show on Cert') . '</th>
<th class="ascending">' . _('Show on Spec') . '</th>
<th class="ascending">' . _('Show on Test Plan') . '</th>
<th class="ascending">' . _('Active') . '</th>
</tr>
</thead>
<tbody>';
while ($myrow=DB_fetch_array($result)) {
if ($myrow['active'] == 1) {
$ActiveText = _('Yes');
} else {
$ActiveText = _('No');
}
if ($myrow['numericvalue'] == 1) {
$IsNumeric = _('Yes');
} else {
$IsNumeric = _('No');
}
if ($myrow['showoncert'] == 1) {
$ShowOnCertText = _('Yes');
} else {
$ShowOnCertText = _('No');
}
if ($myrow['showonspec'] == 1) {
$ShowOnSpecText = _('Yes');
} else {
$ShowOnSpecText = _('No');
}
if ($myrow['showontestplan'] == 1) {
$ShowOnTestPlanText = _('Yes');
} else {
$ShowOnTestPlanText = _('No');
}
switch ($myrow['type']) {
case 0; //textbox
$TypeDisp='Text Box';
break;
case 1; //select box
$TypeDisp='Select Box';
break;
case 2; //checkbox
$TypeDisp='Check Box';
break;
case 3; //datebox
$TypeDisp='Date Box';
break;
case 4; //range
$TypeDisp='Range';
break;
} //end switch
printf('<tr class="striped_row">
<td class="number">%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td><a href="%sSelectedQATest=%s">' . _('Edit') . '</a></td>
<td><a href="%sSelectedQATest=%s&delete=1" onclick="return confirm(\'' . _('Are you sure you wish to delete this QA Test ?') . '\');">' . _('Delete') . '</a></td>
</tr>',
$myrow['testid'],
$myrow['name'],
$myrow['method'],
$myrow['groupby'],
$myrow['units'],
$TypeDisp,
$myrow['defaultvalue'],
$IsNumeric,
$ShowOnCertText,
$ShowOnSpecText,
$ShowOnTestPlanText,
$ActiveText,
htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?',
$myrow['testid'],
htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?',
$myrow['testid']);
} //END WHILE LIST LOOP
echo '</tbody></table><br />';
} //end of ifs and buts!
include('includes/footer.php');
?>