-
Notifications
You must be signed in to change notification settings - Fork 0
/
BOMs.php
847 lines (696 loc) · 29.3 KB
/
BOMs.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
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
<?php
/* $Revision: 1.33 $ */
$PageSecurity = 9;
include('includes/session.inc');
$title = _('Multi-Level Bill Of Materials Maintenance');
include('includes/header.inc');
include('includes/SQL_CommonFunctions.inc');
// *** POPAD&T - ... Phil modified to english variables
function display_children($parent, $level, &$BOMTree) {
global $db;
global $i;
// retrive all children of parent
$c_result = DB_query("SELECT parent,
component
FROM bom WHERE parent='" . $parent. "'"
,$db);
if (DB_num_rows($c_result) > 0) {
//echo ("<UL>\n");
while ($row = DB_fetch_array($c_result)) {
//echo '<BR>Parent: ' . $parent . ' Level: ' . $level . ' row[component]: ' . $row['component'] .'<BR>';
if ($parent != $row['component']) {
// indent and display the title of this child
$BOMTree[$i]['Level'] = $level; // Level
if ($level > 15) {
prnMsg(_('A maximum of 15 levels of bill of materials only can be displayed'),'error');
exit;
}
$BOMTree[$i]['Parent'] = $parent; // Assemble
$BOMTree[$i]['Component'] = $row['component']; // Component
// call this function again to display this
// child's children
$i++;
display_children($row['component'], $level + 1, $BOMTree);
}
}
}
}
function CheckForRecursiveBOM ($UltimateParent, $ComponentToCheck, $db) {
/* returns true ie 1 if the BOM contains the parent part as a component
ie the BOM is recursive otherwise false ie 0 */
$sql = "SELECT component FROM bom WHERE parent='$ComponentToCheck'";
$ErrMsg = _('An error occurred in retrieving the components of the BOM during the check for recursion');
$DbgMsg = _('The SQL that was used to retrieve the components of the BOM and that failed in the process was');
$result = DB_query($sql,$db,$ErrMsg,$DbgMsg);
if (DB_num_rows($result)!=0) {
while ($myrow=DB_fetch_row($result)){
if ($myrow[0]==$UltimateParent){
return 1;
}
if (CheckForRecursiveBOM($UltimateParent, $myrow[0],$db)){
return 1;
}
} //(while loop)
} //end if $result is true
return 0;
} //end of function CheckForRecursiveBOM
function DisplayBOMItems($UltimateParent, $Parent, $Component,$Level, $db) {
global $ParentMBflag;
// Modified by POPAD&T
$sql = "SELECT bom.component,
stockmaster.description,
locations.locationname,
workcentres.description,
bom.quantity,
bom.effectiveafter,
bom.effectiveto,
stockmaster.mbflag,
bom.autoissue,
stockmaster.controlled,
locstock.quantity AS qoh,
stockmaster.decimalplaces
FROM bom,
stockmaster,
locations,
workcentres,
locstock
WHERE bom.component='$Component'
AND bom.parent = '$Parent'
AND bom.component=stockmaster.stockid
AND bom.loccode = locations.loccode
AND locstock.loccode=bom.loccode
AND bom.component = locstock.stockid
AND bom.workcentreadded=workcentres.code
AND stockmaster.stockid=bom.component";
$ErrMsg = _('Could not retrieve the BOM components because');
$DbgMsg = _('The SQL used to retrieve the components was');
$result = DB_query($sql,$db,$ErrMsg,$DbgMsg);
//echo $TableHeader;
$RowCounter =0;
while ($myrow=DB_fetch_row($result)) {
$Level1 = str_repeat('- ',$Level-1).$Level;
if( $myrow[7]=='B' OR $myrow[7]=='K' OR $myrow[7]=='D') {
$DrillText = '%s%s';
$DrillLink = '<center>----</center>';
$DrillID='';
} else {
$DrillText = '<a href="%s&Select=%s">' . _('Drill Down');
$DrillLink = $_SERVER['PHP_SELF'] . '?' . SID;
$DrillID=$myrow[0];
}
if ($ParentMBflag!='M'){
$AutoIssue = _('N/A');
} elseif ($myrow[9]==0 AND $myrow[8]==1){//autoissue and not controlled
$AutoIssue = _('Yes');
} elseif ($myrow[9]==0) {
$AutoIssue = _('No');
} else {
$AutoIssue = _('N/A');
}
if ($myrow[7]=='D' OR $myrow[7]=='K' OR $myrow[7]=='A'){
$QuantityOnHand = _('N/A');
} else {
$QuantityOnHand = number_format($myrow[10],$myrow[11]);
}
printf("<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 align=right>%s</td>
<td><a href=\"%s&Select=%s&SelectedComponent=%s\">" . _('Edit') . "</a></td>
<td>".$DrillText."</a></td>
<td><a href=\"%s&Select=%s&SelectedComponent=%s&delete=1&ReSelect=%s\">" . _('Delete') . "</a></td>
</tr>",
$Level1,
$myrow[0],
$myrow[1],
$myrow[2],
$myrow[3],
$myrow[4],
ConvertSQLDate($myrow[5]),
ConvertSQLDate($myrow[6]),
$AutoIssue,
$QuantityOnHand,
$_SERVER['PHP_SELF'] . '?' . SID,
$Parent,
$myrow[0],
$DrillLink,
$DrillID,
$_SERVER['PHP_SELF'] . '?' . SID,
$Parent,
$myrow[0],
$UltimateParent);
} //END WHILE LIST LOOP
} //end of function DisplayBOMItems
//---------------------------------------------------------------------------------
/* SelectedParent could come from a post or a get */
if (isset($_GET['SelectedParent'])){
$SelectedParent = $_GET['SelectedParent'];
}else if (isset($_POST['SelectedParent'])){
$SelectedParent = $_POST['SelectedParent'];
}
/* SelectedComponent could also come from a post or a get */
if (isset($_GET['SelectedComponent'])){
$SelectedComponent = $_GET['SelectedComponent'];
} elseif (isset($_POST['SelectedComponent'])){
$SelectedComponent = $_POST['SelectedComponent'];
}
if (isset($_GET['Select'])){
$Select = $_GET['Select'];
} elseif (isset($_POST['Select'])){
$Select = $_POST['Select'];
}
$msg='';
if (isset($Errors)) {
unset($Errors);
}
$Errors = array();
$InputError = 0;
if (isset($Select)) { //Parent Stock Item selected so display BOM or edit Component
$SelectedParent = $Select;
unset($Select);// = NULL;
echo '<P CLASS="page_title_text"><img src="'.$rootpath.'/css/'.$theme.'/images/maintenance.png" TITLE="' . _('Search') . '" ALT="">' . ' ' . $title.'<br>';
If (isset($SelectedParent) AND isset($_POST['Submit'])) {
//editing a component need to do some validation of inputs
$i = 1;
if (!Is_Date($_POST['EffectiveAfter'])) {
$InputError = 1;
prnMsg(_('The effective after date field must be a date in the format dd/mm/yy or dd/mm/yyyy or ddmmyy or ddmmyyyy or dd-mm-yy or dd-mm-yyyy'),'error');
$Errors[$i] = 'EffectiveAfter';
$i++;
}
if (!Is_Date($_POST['EffectiveTo'])) {
$InputError = 1;
prnMsg(_('The effective to date field must be a date in the format dd/mm/yy or dd/mm/yyyy or ddmmyy or ddmmyyyy or dd-mm-yy or dd-mm-yyyy'),'error');
$Errors[$i] = 'EffectiveTo';
$i++;
}
if (!is_numeric($_POST['Quantity'])) {
$InputError = 1;
prnMsg(_('The quantity entered must be numeric'),'error');
$Errors[$i] = 'Quantity';
$i++;
}
if ($_POST['Quantity']==0) {
$InputError = 1;
prnMsg(_('The quantity entered cannot be zero'),'error');
$Errors[$i] = 'Quantity';
$i++;
}
if(!Date1GreaterThanDate2($_POST['EffectiveTo'], $_POST['EffectiveAfter'])){
$InputError = 1;
prnMsg(_('The effective to date must be a date after the effective after date') . '<BR>' . _('The effective to date is') . ' ' . DateDiff($_POST['EffectiveTo'], $_POST['EffectiveAfter'], 'd') . ' ' . _('days before the effective after date') . '! ' . _('No updates have been performed') . '.<BR>' . _('Effective after was') . ': ' . $_POST['EffectiveAfter'] . ' ' . _('and effective to was') . ': ' . $_POST['EffectiveTo'],'error');
$Errors[$i] = 'EffectiveAfter';
$i++;
$Errors[$i] = 'EffectiveTo';
$i++;
}
if($_POST['AutoIssue']==1 and isset($_POST['Component'])){
$sql = "SELECT controlled FROM stockmaster WHERE stockid='" . $_POST['Component'] . "'";
$CheckControlledResult = DB_query($sql,$db);
$CheckControlledRow = DB_fetch_row($CheckControlledResult);
if ($CheckControlledRow[0]==1){
prnMsg(_('Only non-serialised or non-lot controlled items can be set to auto issue. These items require the lot/serial numbers of items issued to the works orders to be specified so autoissue is not an option. Auto issue has been automatically set to off for this component'),'warn');
$_POST['AutoIssue']=0;
}
}
if (!in_array('EffectiveAfter', $Errors)) {
$EffectiveAfterSQL = FormatDateForSQL($_POST['EffectiveAfter']);
}
if (!in_array('EffectiveTo', $Errors)) {
$EffectiveToSQL = FormatDateForSQL($_POST['EffectiveTo']);
}
if (isset($SelectedParent) AND isset($SelectedComponent) AND $InputError != 1) {
$sql = "UPDATE bom SET workcentreadded='" . $_POST['WorkCentreAdded'] . "',
loccode='" . $_POST['LocCode'] . "',
effectiveafter='" . $EffectiveAfterSQL . "',
effectiveto='" . $EffectiveToSQL . "',
quantity= " . $_POST['Quantity'] . ",
autoissue=" . $_POST['AutoIssue'] . "
WHERE bom.parent='" . $SelectedParent . "'
AND bom.component='" . $SelectedComponent . "'";
$ErrMsg = _('Could not update this BOM component because');
$DbgMsg = _('The SQL used to update the component was');
$result = DB_query($sql,$db,$ErrMsg,$DbgMsg);
$msg = _('Details for') . ' - ' . $SelectedComponent . ' ' . _('have been updated') . '.';
UpdateCost($db, $SelectedComponent);
} elseIf ($InputError !=1 AND ! isset($SelectedComponent) AND isset($SelectedParent)) {
/*Selected component is null cos no item selected on first time round so must be adding a record must be Submitting new entries in the new component form */
//need to check not recursive BOM component of itself!
If (!CheckForRecursiveBOM ($SelectedParent, $_POST['Component'], $db)) {
/*Now check to see that the component is not already on the BOM */
$sql = "SELECT component
FROM bom
WHERE parent='$SelectedParent'
AND component='" . $_POST['Component'] . "'
AND workcentreadded='" . $_POST['WorkCentreAdded'] . "'
AND loccode='" . $_POST['LocCode'] . "'" ;
$ErrMsg = _('An error occurred in checking the component is not already on the BOM');
$DbgMsg = _('The SQL that was used to check the component was not already on the BOM and that failed in the process was');
$result = DB_query($sql,$db,$ErrMsg,$DbgMsg);
if (DB_num_rows($result)==0) {
$sql = "INSERT INTO bom (parent,
component,
workcentreadded,
loccode,
quantity,
effectiveafter,
effectiveto,
autoissue)
VALUES ('$SelectedParent',
'" . $_POST['Component'] . "',
'" . $_POST['WorkCentreAdded'] . "',
'" . $_POST['LocCode'] . "',
" . $_POST['Quantity'] . ",
'" . $EffectiveAfterSQL . "',
'" . $EffectiveToSQL . "',
" . $_POST['AutoIssue'] . ")";
$ErrMsg = _('Could not insert the BOM component because');
$DbgMsg = _('The SQL used to insert the component was');
$result = DB_query($sql,$db,$ErrMsg,$DbgMsg);
UpdateCost($db, $_POST['Component']);
$msg = _('A new component part') . ' ' . $_POST['Component'] . ' ' . _('has been added to the bill of material for part') . ' - ' . $SelectedParent . '.';
} else {
/*The component must already be on the BOM */
prnMsg( _('The component') . ' ' . $_POST['Component'] . ' ' . _('is already recorded as a component of') . ' ' . $SelectedParent . '.' . '<BR>' . _('Whilst the quantity of the component required can be modified it is inappropriate for a component to appear more than once in a bill of material'),'error');
$Errors[$i]='ComponentCode';
}
} //end of if its not a recursive BOM
} //end of if no input errors
if ($msg != '') {prnMsg($msg,'success');}
} elseif (isset($_GET['delete']) AND isset($SelectedComponent) AND isset($SelectedParent)) {
//the link to delete a selected record was clicked instead of the Submit button
$sql="DELETE FROM bom WHERE parent='$SelectedParent' AND component='$SelectedComponent'";
$ErrMsg = _('Could not delete this BOM components because');
$DbgMsg = _('The SQL used to delete the BOM was');
$result = DB_query($sql,$db,$ErrMsg,$DbgMsg);
$ComponentSQL = 'SELECT component from bom where parent="' . $SelectedParent .'"';
$ComponentResult = DB_query($ComponentSQL,$db);
$ComponentArray = DB_fetch_row($ComponentResult);
UpdateCost($db, $ComponentArray[0]);
prnMsg(_('The component part') . ' - ' . $SelectedComponent . ' - ' . _('has been deleted from this BOM'),'success');
// Now reselect
} elseif (isset($SelectedParent)
AND !isset($SelectedComponent)
AND ! isset($_POST['submit'])) {
/* It could still be the second time the page has been run and a record has been selected for modification - SelectedParent 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 components 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*/
//DisplayBOMItems($SelectedParent, $db);
} //BOM editing/insertion ifs
if(isset($_GET['ReSelect'])) {
$SelectedParent = $_GET['ReSelect'];
}
//DisplayBOMItems($SelectedParent, $db);
$sql = "SELECT stockmaster.description,
stockmaster.mbflag
FROM stockmaster
WHERE stockmaster.stockid='" . $SelectedParent . "'";
$ErrMsg = _('Could not retrieve the description of the parent part because');
$DbgMsg = _('The SQL used to retrieve description of the parent part was');
$result=DB_query($sql,$db,$ErrMsg,$DbgMsg);
$myrow=DB_fetch_row($result);
$ParentMBflag = $myrow[1];
switch ($ParentMBflag){
case 'A':
$MBdesc = _('Assembly');
break;
case 'B':
$MBdesc = _('Purchased');
break;
case 'M':
$MBdesc = _('Manufactured');
break;
case 'K':
$MBdesc = _('Kit Set');
break;
}
echo "<center><BR><FONT COLOR=BLUE SIZE=3><B> $SelectedParent - " . $myrow[0] . ' ('. $MBdesc. ') </FONT></B>';
echo '<BR><A HREF=' . $_SERVER['PHP_SELF'] . '?' . SID . '>' . _('Select a Different BOM') . '</A></CENTER>';
if (isset($SelectedParent)) {
echo "<Center><a href='" . $_SERVER['PHP_SELF'] . '?' . SID . "Select=$SelectedParent'>" . _('Review Components') . '</a></Center>';
}
// Display Manufatured Parent Items
$sql = "SELECT bom.parent,
stockmaster.description,
stockmaster.mbflag
FROM bom, stockmaster
WHERE bom.component='".$SelectedParent."'
AND stockmaster.stockid=bom.parent
AND stockmaster.mbflag='M'";
$ErrMsg = _('Could not retrieve the description of the parent part because');
$DbgMsg = _('The SQL used to retrieve description of the parent part was');
$result=DB_query($sql,$db,$ErrMsg,$DbgMsg);
$ix = 0;
$reqnl = 0;
if( DB_num_rows($result) > 0 ) {
echo '<CENTER>'._('Manufactured parent items').' : ';
while ($myrow = DB_fetch_array($result)){
echo (($ix)?', ':'').'<A href="'.$_SERVER['PHP_SELF'] . '?' . SID . 'Select='.$myrow['parent'].'">'.
$myrow['description'].' ('.$myrow['parent'].')</A>';
$ix++;
} //end while loop
echo '</CENTER>';
$reqnl = $ix;
}
// Display Assembly Parent Items
$sql = "SELECT bom.parent, stockmaster.description, stockmaster.mbflag
FROM bom, stockmaster
WHERE bom.component='".$SelectedParent."'
AND stockmaster.stockid=bom.parent
AND stockmaster.mbflag='A'";
$ErrMsg = _('Could not retrieve the description of the parent part because');
$DbgMsg = _('The SQL used to retrieve description of the parent part was');
$result=DB_query($sql,$db,$ErrMsg,$DbgMsg);
if( DB_num_rows($result) > 0 ) {
echo (($reqnl)?'<BR>':'').'<CENTER>'._('Assembly parent items').' : ';
$ix = 0;
while ($myrow = DB_fetch_array($result)){
echo (($ix)?', ':'').'<A href="'.$_SERVER['PHP_SELF'] . '?' . SID . 'Select='.$myrow['parent'].'">'.
$myrow['description'].' ('.$myrow['parent'].')</A>';
$ix++;
} //end while loop
echo '</CENTER>';
}
// Display Kit Sets
$sql = "SELECT bom.parent, stockmaster.description, stockmaster.mbflag
FROM bom, stockmaster
WHERE bom.component='".$SelectedParent."'
AND stockmaster.stockid=bom.parent
AND stockmaster.mbflag='K'";
$ErrMsg = _('Could not retrieve the description of the parent part because');
$DbgMsg = _('The SQL used to retrieve description of the parent part was');
$result=DB_query($sql,$db,$ErrMsg,$DbgMsg);
if( DB_num_rows($result) > 0 ) {
echo (($reqnl)?'<BR>':'').'<CENTER>'._('Kit sets').' : ';
$ix = 0;
while ($myrow = DB_fetch_array($result)){
echo (($ix)?', ':'').'<A href="'.$_SERVER['PHP_SELF'] . '?' . SID . 'Select='.$myrow['parent'].'">'.
$myrow['description'].' ('.$myrow['parent'].')</A>';
$ix++;
} //end while loop
echo '</CENTER>';
}
echo "<CENTER><table border=1>";
// *** POPAD&T
$BOMTree = array();
//BOMTree is a 2 dimensional array with three elements for each item in the array - Level, Parent, Component
//display children populates the BOM_Tree from the selected parent
$i =0;
display_children($SelectedParent, 1, $BOMTree);
$TableHeader = '<tr>
<th>' . _('Level') . '</th>
<th>' . _('Code') . '</th>
<th>' . _('Description') . '</th>
<th>' . _('Location') . '</th>
<th>' . _('Work Centre') . '</th>
<th>' . _('Quantity') . '</th>
<th>' . _('Effective After') . '</th>
<th>' . _('Effective To') . '</th>
<th>' . _('Auto Issue') . '</th>
<th>' . _('Qty On Hand') . '</th>
</tr>';
echo $TableHeader;
if(count($BOMTree) == 0) {
echo '<tr class="OddTableRows"><td colspan="8">'._('No materials found.').'</td></tr>';
} else {
$UltimateParent = $SelectedParent;
$k = 0;
$RowCounter = 1;
foreach($BOMTree as $BOMItem){
$Level = $BOMItem['Level'];
$Parent = $BOMItem['Parent'];
$Component = $BOMItem['Component'];
if ($k==1){
echo '<tr class="EvenTableRows">';
$k=0;
}else {
echo '<tr class="OddTableRows">';
$k++;
}
DisplayBOMItems($UltimateParent, $Parent, $Component, $Level, $db);
}
}
// *** end POPAD&T
echo "</table></CENTER><br>";
if (! isset($_GET['delete'])) {
echo '<FORM METHOD="post" action="' . $_SERVER['PHP_SELF'] . '?' . SID . '&Select=' . $SelectedParent .'">';
if (isset($SelectedComponent) and $InputError !=1) {
//editing a selected component from the link to the line item
$sql = "SELECT loccode,
effectiveafter,
effectiveto,
workcentreadded,
quantity,
autoissue
FROM bom
WHERE parent='$SelectedParent'
AND component='$SelectedComponent'";
$result = DB_query($sql, $db);
$myrow = DB_fetch_array($result);
$_POST['LocCode'] = $myrow['loccode'];
$_POST['EffectiveAfter'] = ConvertSQLDate($myrow['effectiveafter']);
$_POST['EffectiveTo'] = ConvertSQLDate($myrow['effectiveto']);
$_POST['WorkCentreAdded'] = $myrow['workcentreadded'];
$_POST['Quantity'] = $myrow['quantity'];
$_POST['AutoIssue'] = $myrow['autoissue'];
prnMsg(_('Edit the details of the selected component in the fields below') . '. <BR>' . _('Click on the Enter Information button to update the component details'),'info');
echo "<br><INPUT TYPE=HIDDEN NAME='SelectedParent' VALUE='$SelectedParent'>";
echo "<INPUT TYPE=HIDDEN NAME='SelectedComponent' VALUE='$SelectedComponent'>";
echo '<CENTER><TABLE><TR><TD>' . _('Component') . ':</TD><TD><B>' . $SelectedComponent . '</B></TD></TR>';
} else { //end of if $SelectedComponent
echo "<INPUT TYPE=HIDDEN NAME='SelectedParent' VALUE='$SelectedParent'>";
/* echo "Enter the details of a new component in the fields below. <BR>Click on 'Enter Information' to add the new component, once all fields are completed.";
*/
echo '<CENTER><TABLE><TR><TD>' . _('Component code') . ':</TD><TD>';
echo "<SELECT " . (in_array('ComponentCode',$Errors) ? 'class="selecterror"' : '' ) ." tabindex='1' name='Component'>";
if ($ParentMBflag=='A'){ /*Its an assembly */
$sql = "SELECT stockmaster.stockid,
stockmaster.description
FROM stockmaster INNER JOIN stockcategory
ON stockmaster.categoryid = stockcategory.categoryid
WHERE ((stockcategory.stocktype='L' AND stockmaster.mbflag ='D')
OR stockmaster.mbflag !='D')
AND stockmaster.mbflag !='K'
AND stockmaster.mbflag !='A'
AND stockmaster.controlled = 0
AND stockmaster.stockid != '$SelectedParent'
ORDER BY stockmaster.stockid";
} else { /*Its either a normal manufac item or a kitset - controlled items ok */
$sql = "SELECT stockmaster.stockid,
stockmaster.description
FROM stockmaster INNER JOIN stockcategory
ON stockmaster.categoryid = stockcategory.categoryid
WHERE ((stockcategory.stocktype='L' AND stockmaster.mbflag ='D')
OR stockmaster.mbflag !='D')
AND stockmaster.mbflag !='K'
AND stockmaster.mbflag !='A'
AND stockmaster.stockid != '$SelectedParent'
ORDER BY stockmaster.stockid";
}
$ErrMsg = _('Could not retrieve the list of potential components because');
$DbgMsg = _('The SQL used to retrieve the list of potential components part was');
$result = DB_query($sql,$db,$ErrMsg, $DbgMsg);
while ($myrow = DB_fetch_array($result)) {
echo "<OPTION VALUE=".$myrow['stockid'].'>' . str_pad($myrow['stockid'],21, '_', STR_PAD_RIGHT) . $myrow['description'];
} //end while loop
echo '</SELECT></TD></TR>';
}
echo "<TR><TD>" . _('Location') . ": </TD><TD><SELECT tabindex='2' name='LocCode'>";
DB_free_result($result);
$sql = 'SELECT locationname, loccode FROM locations';
$result = DB_query($sql,$db);
while ($myrow = DB_fetch_array($result)) {
if (isset($_POST['LocCode']) and $myrow['loccode']==$_POST['LocCode']) {
echo "<OPTION SELECTED VALUE='";
} else {
echo "<OPTION VALUE='";
}
echo $myrow['loccode'] . "'>" . $myrow['locationname'];
} //end while loop
DB_free_result($result);
echo "</SELECT></TD></TR><TR><TD>" . _('Work Centre Added') . ": </TD><TD>";
echo "<SELECT tabindex='3' name='WorkCentreAdded'>";
$sql = 'SELECT code, description FROM workcentres';
$result = DB_query($sql,$db);
if (DB_num_rows($result)==0){
prnMsg( _('There are no work centres set up yet') . '. ' . _('Please use the link below to set up work centres'),'warn');
echo "<BR><A HREF='$rootpath/WorkCentres.php?" . SID . "'>" . _('Work Centre Maintenance') . '</A>';
includes('includes/footer.inc');
exit;
}
while ($myrow = DB_fetch_array($result)) {
if (isset($_POST['WorkCentreAdded']) and $myrow['code']==$_POST['WorkCentreAdded']) {
echo "<OPTION SELECTED VALUE='";
} else {
echo "<OPTION VALUE='";
}
echo $myrow['code'] . "'>" . $myrow['description'];
} //end while loop
DB_free_result($result);
echo "</SELECT></TD></TR><TR><TD>" . _('Quantity') . ": </TD><TD>
<INPUT " . (in_array('Quantity',$Errors) ? 'class="inputerror"' : '' ) ."
tabindex='4' TYPE='Text' name='Quantity' onKeyPress='return restrictToNumbers(this, event)' SIZE=10 MAXLENGTH=8 VALUE=";
if (isset($_POST['Quantity'])){
echo $_POST['Quantity'];
} else {
echo 1;
}
echo "></TD></TR>";
if (!isset($_POST['EffectiveTo']) OR $_POST['EffectiveTo']=='') {
$_POST['EffectiveTo'] = Date($_SESSION['DefaultDateFormat'],Mktime(0,0,0,Date('m'),Date('d'),(Date('y')+20)));
}
if (!isset($_POST['EffectiveAfter']) OR $_POST['EffectiveAfter']=='') {
$_POST['EffectiveAfter'] = Date($_SESSION['DefaultDateFormat'],Mktime(0,0,0,Date('m'),Date('d')-1,Date('y')));
}
echo "<TR><TD>" . _('Effective After') . " (" . $_SESSION['DefaultDateFormat'] . "):</TD>
<TD><INPUT " . (in_array('EffectiveAfter',$Errors) ? 'class="inputerror"' : '' ) .
" tabindex='5' TYPE='Text' name='EffectiveAfter' onChange='return isDate(this, this.value, ".'"'.$_SESSION['DefaultDateFormat'].'"'.")' SIZE=11 MAXLENGTH=10 VALUE=" . $_POST['EffectiveAfter'] .">
</TD></TR><TR><TD>" . _('Effective To') . " (" . $_SESSION['DefaultDateFormat'] . "):</TD><TD>
<INPUT " . (in_array('EffectiveTo',$Errors) ? 'class="inputerror"' : '' ) .
" tabindex='6' TYPE='Text' name='EffectiveTo' onChange='return isDate(this, this.value, ".'"'.$_SESSION['DefaultDateFormat'].'"'.")' SIZE=11 MAXLENGTH=10 VALUE=" . $_POST['EffectiveTo'] ."></TD></TR>";
if ($ParentMBflag=='M'){
echo '<TR><TD>' . _('Auto Issue this Component to Work Orders') . ':</TD>
<TD>
<SELECT tabindex="7" name="AutoIssue">';
if (!isset($_POST['AutoIssue'])){
$_POST['AutoIssue'] = $_SESSION['AutoIssue'];
}
if ($_POST['AutoIssue']==0) {
echo '<OPTION SELECTED VALUE=0>' . _('No');
echo '<OPTION VALUE=1>' . _('Yes');
} else {
echo '<OPTION SELECTED VALUE=1>' . _('Yes');
echo '<OPTION VALUE=0>' . _('No');
}
echo '</SELECT></TD></TR>';
} else {
echo '<INPUT TYPE=HIDDEN NAME="AutoIssue" VALUE=0>';
}
echo "</TABLE><br><CENTER><input tabindex='8' type='Submit' name='Submit' value=" . _('Enter Information') . "></FORM>";
} //end if record deleted no point displaying form to add record
// end of BOM maintenance code - look at the parent selection form if not relevant
// ----------------------------------------------------------------------------------
} elseif (isset($_POST['Search'])){
// Work around to auto select
If ($_POST['Keywords']=='' AND $_POST['StockCode']=='') {
$_POST['StockCode']='%';
}
If ($_POST['Keywords'] AND $_POST['StockCode']) {
$msg=_('Stock description keywords have been used in preference to the Stock code extract entered');
}
If ($_POST['Keywords']=='' AND $_POST['StockCode']=='') {
$msg=_('At least one stock description keyword or an extract of a stock code must be entered for the search');
} else {
If (strlen($_POST['Keywords'])>0) {
//insert wildcard characters in spaces
$i=0;
$SearchString = '%';
while (strpos($_POST['Keywords'], ' ', $i)) {
$wrdlen=strpos($_POST['Keywords'],' ',$i) - $i;
$SearchString=$SearchString . substr($_POST['Keywords'],$i,$wrdlen) . '%';
$i=strpos($_POST['Keywords'],' ',$i) +1;
}
$SearchString = $SearchString. substr($_POST['Keywords'],$i).'%';
$sql = "SELECT stockmaster.stockid,
stockmaster.description,
stockmaster.units,
stockmaster.mbflag,
SUM(locstock.quantity) as totalonhand
FROM stockmaster,
locstock
WHERE stockmaster.stockid = locstock.stockid
AND stockmaster.description " . LIKE . " '$SearchString'
AND (stockmaster.mbflag='M' OR stockmaster.mbflag='K' OR stockmaster.mbflag='A')
GROUP BY stockmaster.stockid,
stockmaster.description,
stockmaster.units,
stockmaster.mbflag
ORDER BY stockmaster.stockid";
} elseif (strlen($_POST['StockCode'])>0){
$sql = "SELECT stockmaster.stockid,
stockmaster.description,
stockmaster.units,
stockmaster.mbflag,
sum(locstock.quantity) as totalonhand
FROM stockmaster,
locstock
WHERE stockmaster.stockid = locstock.stockid
AND stockmaster.stockid " . LIKE . "'%" . $_POST['StockCode'] . "%'
AND (stockmaster.mbflag='M'
OR stockmaster.mbflag='K'
OR stockmaster.mbflag='A')
GROUP BY stockmaster.stockid,
stockmaster.description,
stockmaster.units,
stockmaster.mbflag
ORDER BY stockmaster.stockid";
}
$ErrMsg = _('The SQL to find the parts selected failed with the message');
$result = DB_query($sql,$db,$ErrMsg);
} //one of keywords or StockCode was more than a zero length string
} //end of if search
if (!isset($SelectedParent)) {
echo '<P CLASS="page_title_text"><img src="'.$rootpath.'/css/'.$theme.'/images/magnifier.png" TITLE="' . _('Search') . '" ALT="">' . ' ' . $title;
echo "<FORM ACTION=" . $_SERVER['PHP_SELF'] . "?" . SID ." METHOD=POST><B><BR>" . $msg ."</B>" .
'<DIV CLASS="page_help_text">'. _('Select a manufactured part') . " (" . _('or Assembly or Kit part') . ") " .
_('to maintain the bill of material for using the options below') . "." . "<BR><FONT SIZE=1>" .
_('Parts must be defined in the stock item entry') . "/" . _('modification screen as manufactured') .
", " . _('kits or assemblies to be available for construction of a bill of material') .'</div>'.
"</FONT><br><TABLE align='center' CELLPADDING=3 COLSPAN=4><TR><TD><FONT SIZE=1>" . _('Enter text extracts in the') .
" <B>" . _('description') . "</B>:</FONT></TD><TD><INPUT tabindex='1' TYPE='Text' NAME='Keywords' SIZE=20 MAXLENGTH=25></TD>
<TD><FONT SIZE=3><B>" . _('OR') . "</B></FONT></TD><TD><FONT SIZE=1>" . _('Enter extract of the') .
" <B>" . _('Stock Code') . "</B>:</FONT></TD><TD><INPUT tabindex='2' TYPE='Text' NAME='StockCode' SIZE=15 MAXLENGTH=18></TD>
</TR></TABLE><br><CENTER><INPUT tabindex='3' TYPE=SUBMIT NAME='Search' VALUE=" . _('Search Now') . "></CENTER>";
If (isset($result) AND !isset($SelectedParent)) {
echo '<br><TABLE align="center" CELLPADDING=2 COLSPAN=7 BORDER=1>';
$TableHeader = '<TR><TH>' . _('Code') . '</TH>
<TH>' . _('Description') . '</TH>
<TH>' . _('On Hand') . '</TH>
<TH>' . _('Units') . '</TH>
</TR>';
echo $TableHeader;
$j = 1;
$k=0; //row colour counter
while ($myrow=DB_fetch_array($result)) {
if ($k==1){
echo '<tr class="EvenTableRows">';;
$k=0;
} else {
echo '<tr class="OddTableRows">';;
$k++;
}
if ($myrow['mbflag']=='A' OR $myrow['mbflag']=='K'){
$StockOnHand = 'N/A';
} else {
$StockOnHand = number_format($myrow['totalonhand'],2);
}
$tab = $j+3;
printf("<td><INPUT tabindex='".$tab."' TYPE=SUBMIT NAME='Select' VALUE='%s'</td>
<td>%s</td>
<td ALIGN=RIGHT>%s</td>
<td>%s</td></tr>",
$myrow['stockid'],
$myrow['description'],
$StockOnHand,
$myrow['units']
);
$j++;
//end of page full new headings if
}
//end of while loop
echo '</TABLE>';
}
//end if results to show
if (!isset($SelectedParent) or $SelectedParent=='') {
echo "<script>defaultControl(document.forms[0].StockCode);</script>";
} else {
echo "<script>defaultControl(document.form.JournalProcessDate);</script>";
}
echo "</FORM>";
} //end StockID already selected
include('includes/footer.inc');
?>