forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BOMs.php
1168 lines (1019 loc) · 42.8 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
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
include ('includes/session.php');
$Title = _('Multi-Level Bill Of Materials Maintenance');
include ('includes/header.php');
include ('includes/SQL_CommonFunctions.inc');
function display_children($Parent, $Level, &$BOMTree) {
global $i;
// retrive all children of parent
$ChildrenResult = DB_query("SELECT parent,
component
FROM bom WHERE parent='" . $Parent . "'
ORDER BY sequence");
if (DB_num_rows($ChildrenResult) > 0) {
while ($MyRow = DB_fetch_array($ChildrenResult)) {
if ($Parent != $MyRow['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'] = $MyRow['component']; // Component
// call this function again to display this
// child's children
++$i;
if (isset($_POST['ShowAllLevels']) and $_POST['ShowAllLevels'] == 'Yes') {
display_children($MyRow['component'], $Level + 1, $BOMTree);
}
} else {
prnMsg(_('The component and the parent is the same'), 'error');
echo $MyRow['component'], '<br/>';
include ('includes/footer.inc');
exit;
}
}
}
}
function CheckForRecursiveBOM($UltimateParent, $ComponentToCheck) {
/* 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, $ErrMsg, $DbgMsg);
if (DB_num_rows($Result) != 0) {
while ($MyRow = DB_fetch_array($Result)) {
if ($MyRow['component'] == $UltimateParent) {
return 1;
}
if (CheckForRecursiveBOM($UltimateParent, $MyRow['component'])) {
return 1;
}
} //(while loop)
} //end if $Result is true
return 0;
} //end of function CheckForRecursiveBOM
function DisplayBOMItems($UltimateParent, $Parent, $Component, $Level) {
global $ParentMBflag;
$SQL = "SELECT bom.component,
stockcategory.categorydescription,
stockmaster.description as itemdescription,
stockmaster.units,
locations.locationname,
locations.loccode,
workcentres.description as workcentrename,
workcentres.code as workcentrecode,
bom.quantity,
bom.effectiveafter,
bom.effectiveto,
bom.sequence,
stockmaster.mbflag,
bom.autoissue,
bom.remark,
stockmaster.controlled,
locstock.quantity AS qoh,
stockmaster.decimalplaces
FROM bom
INNER JOIN stockmaster
ON bom.component=stockmaster.stockid
INNER JOIN stockcategory
ON stockcategory.categoryid = stockmaster.categoryid
INNER JOIN locations
ON bom.loccode = locations.loccode
INNER JOIN workcentres
ON bom.workcentreadded=workcentres.code
INNER JOIN locstock
ON bom.loccode=locstock.loccode
AND bom.component = locstock.stockid
INNER JOIN locationusers
ON locationusers.loccode=locations.loccode
AND locationusers.userid='" . $_SESSION['UserID'] . "'
AND locationusers.canupd=1
WHERE bom.component='" . $Component . "'
AND bom.parent = '" . $Parent . "'
ORDER BY bom.sequence ASC";
$ErrMsg = _('Could not retrieve the BOM components because');
$DbgMsg = _('The SQL used to retrieve the components was');
$Result = DB_query($SQL, $ErrMsg, $DbgMsg);
$RowCounter = 0;
while ($MyRow = DB_fetch_array($Result)) {
$Level1 = str_repeat('- ', $Level - 1) . $Level;
if ($ParentMBflag != 'M' and $ParentMBflag != 'G') {
$AutoIssue = _('N/A');
} elseif ($MyRow['controlled'] == 0 and $MyRow['autoissue'] == 1) { //autoissue and not controlled
$AutoIssue = _('Yes');
} elseif ($MyRow['controlled'] == 1) {
$AutoIssue = _('No');
} else {
$AutoIssue = _('N/A');
}
if ($MyRow['mbflag'] == 'D' //dummy orservice
or $MyRow['mbflag'] == 'K' //kit-set
or $MyRow['mbflag'] == 'A' // assembly
or $MyRow['mbflag'] == 'G') /* ghost */ {
$QuantityOnHand = _('N/A');
} else {
$QuantityOnHand = locale_number_format($MyRow['qoh'], $MyRow['decimalplaces']);
}
$TextIndent = $Level . 'em';
if (!empty($MyRow['remark'])) {
$MyRow['remark'] = ' **' . ' ' . $MyRow['remark'];
}
echo '<tr class="striped_row">
<td class="number" style="text-align:left;text-indent:', $TextIndent, ';" >', $Level1, '</td>
<td class="number">', $MyRow['sequence'], '</td>
<td>', $MyRow['categorydescription'], '</td>
<td>', $MyRow['component'], '</td>
<td>', $MyRow['itemdescription'], '</td>
<td>', $MyRow['locationname'], '</td>
<td>', $MyRow['workcentrename'], '</td>
<td class="number">', locale_number_format($MyRow['quantity'], 'Variable'), '</td>
<td>', $MyRow['units'], '</td>
<td class="noprint">', ConvertSQLDate($MyRow['effectiveafter']), '</td>
<td class="noprint">', ConvertSQLDate($MyRow['effectiveto']), '</td>
<td class="noprint">', $AutoIssue, '</td>
<td class="number noprint">', $QuantityOnHand, '</td>
<td class="noprint"><a href="', htmlspecialchars(basename(__FILE__), ENT_QUOTES, 'UTF-8'), '?SelectedParent=', urlencode($Parent), '&SelectedComponent=', urlencode($MyRow['component']), '&Location=', urlencode($MyRow['loccode']), '&WorkCentre=', urlencode($MyRow['workcentrecode']), '&ShowAllLevels=', $_POST['ShowAllLevels'], '&Edit=Yes">', _('Edit'), '</a></td>';
if ($MyRow['mbflag'] == 'B' or $MyRow['mbflag'] == 'K' or $MyRow['mbflag'] == 'D') {
echo '<td class="noprint">
<div class="centre">', _('No lower levels'), '</div>
</td>';
} else {
echo '<td class="noprint">
<a href="', htmlspecialchars(basename(__FILE__), ENT_QUOTES, 'UTF-8'), '?SelectedParent=', urlencode($MyRow['component']), '&ShowAllLevels=', $_POST['ShowAllLevels'], '">' . _('Drill Down') . '</a>
</td>';
}
echo '<td class="noprint">
<a href="', htmlspecialchars(basename(__FILE__), ENT_QUOTES, 'UTF-8') . '?SelectedParent=', urlencode($Parent), '&SelectedComponent=', urlencode($MyRow['component']), '&delete=1&ReSelect=', urlencode($UltimateParent), '&Location=', urlencode($MyRow['loccode']), '&WorkCentre=', urlencode($MyRow['workcentrecode']), '&ShowAllLevels=', $_POST['ShowAllLevels'], '" onclick="return confirm(\'' . _('Are you sure you wish to delete this component from this bill of materials?') . '\', \'Confirm Delete\', this);">', _('Delete'), '</a></td>
</tr><tr><td colspan="11" style="text-indent:', $TextIndent, ';">', $MyRow['remark'], '</td>
</tr>';
} //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'];
}
if (isset($_GET['ShowAllLevels'])) {
$_POST['ShowAllLevels'] = $_GET['ShowAllLevels'];
}
// Default behaviour is to show all levels
if (!isset($_POST['ShowAllLevels'])) {
$_POST['ShowAllLevels'] = 'Yes';
}
if (isset($_POST['ComponentSearch']) or isset($_POST['Next']) or isset($_POST['Previous'])) {
if (!isset($_POST['Next']) and !isset($_POST['Previous'])) {
$_POST['Offset'] = 0;
}
if (isset($_POST['Previous']) and $_POST['Offset'] != 0) {
$_POST['Offset'] = $_POST['Offset'] - 1;
}
if (isset($_POST['Next'])) {
$_POST['Offset'] = $_POST['Offset'] + 1;
}
echo '<div class="toplink noprint">
<a href="', htmlspecialchars(basename(__FILE__), ENT_QUOTES, 'UTF-8'), '?SelectedParent=', urlencode($SelectedParent), '">', _('Return to main BOM screen'), '</a>
</div>';
echo '<p class="page_title_text noprint">
<img src="', $RootPath, '/css/', $_SESSION['Theme'], '/images/magnifier.png" title="', _('Search'), '" alt="" /> ', _('Select component to add to BOM'), '
</p>';
//DisplayBOMItems($SelectedParent);
$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, $ErrMsg, $DbgMsg);
$MyRow = DB_fetch_row($Result);
$ParentMBflag = $MyRow[1];
if ($_POST['StockCat'] == 'All') {
$_POST['StockCat'] = '';
}
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 . "'
AND stockmaster.stockid LIKE '%" . $_POST['StockCode'] . "%'
AND stockmaster.description LIKE '%" . $_POST['Keywords'] . "%'
AND stockmaster.categoryid LIKE '%" . $_POST['StockCat'] . "%'
ORDER BY stockmaster.stockid
LIMIT " . $_SESSION['DisplayRecordsMax'] . "
OFFSET " . ($_POST['Offset'] * $_SESSION['DisplayRecordsMax']);
} else {
/*Its either a normal manufac item, phantom, 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 . "'
AND stockmaster.stockid LIKE '%" . $_POST['StockCode'] . "%'
AND stockmaster.description LIKE '%" . $_POST['Keywords'] . "%'
AND stockmaster.categoryid LIKE '%" . $_POST['StockCat'] . "%'
ORDER BY stockmaster.stockid
LIMIT " . $_SESSION['DisplayRecordsMax'] . "
OFFSET " . ($_POST['Offset'] * $_SESSION['DisplayRecordsMax']);
}
$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, $ErrMsg, $DbgMsg);
echo '<form method="post" action="', htmlspecialchars(basename(__FILE__), ENT_QUOTES, 'UTF-8'), '?SelectedParent=', urlencode($SelectedParent), '">';
echo '<input type="hidden" name="FormID" value="', $_SESSION['FormID'], '" />';
echo '<table class="noprint">
<tr>
<th colspan="3">
<input style="float:left" type="submit" name="Previous" value="<<', _('Previous'), '" />
<input style="float:right" type="submit" name="Next" value="', _('Next'), '>>" />
</th>
</tr>
<tr>
<th>', _('Item Code'), '</th>
<th>', _('Item Description'), '</th>
<th></th>
</tr>';
while ($MyRow = DB_fetch_array($Result)) {
echo '<tr>
<td>', $MyRow['stockid'], '</td>
<td>', $MyRow['description'], '</td>
<td><a href="', htmlspecialchars(basename(__FILE__), ENT_QUOTES, 'UTF-8'), '?SelectedParent=', urlencode($SelectedParent), '&SelectedComponent=', urlencode($MyRow['stockid']), '&Add=Yes">', _('Add to the BOM'), '</a></td>
</tr>';
}
echo '</table>';
echo '<input type="hidden" name="Offset" value="', $_POST['Offset'], '" />';
echo '<input type="hidden" name="StockCode" value="', $_POST['StockCode'], '" />';
echo '<input type="hidden" name="Keywords" value="', $_POST['Keywords'], '" />';
echo '<input type="hidden" name="StockCat" value="', $_POST['StockCat'], '" />';
echo '</form>';
include ('includes/footer.php');
exit;
}
/* SelectedComponent could also come from a post or a get */
if (isset($_GET['SelectedComponent'])) {
$SelectedComponent = $_GET['SelectedComponent'];
} elseif (isset($_POST['SelectedComponent'])) {
$SelectedComponent = $_POST['SelectedComponent'];
}
/* delete function requires Location to be set */
if (isset($_GET['Location'])) {
$Location = $_GET['Location'];
} elseif (isset($_POST['Location'])) {
$Location = $_POST['Location'];
} else {
$Location = $_SESSION['UserStockLocation'];
}
/* delete function requires WorkCentre to be set */
if (isset($_GET['WorkCentre'])) {
$WorkCentre = $_GET['WorkCentre'];
} elseif (isset($_POST['WorkCentre'])) {
$WorkCentre = $_POST['WorkCentre'];
}
if (isset($_POST['Cancel'])) {
unset($SelectedComponent);
}
//---------------------------------------------------------------------------------
if (isset($_POST['renumber'])) {
$SQL = "SELECT parent,
sequence,
component,
workcentreadded,
loccode
FROM bom
WHERE parent='" . $SelectedParent . "'
ORDER BY sequence ASC";
$Result = DB_query($SQL);
$Sequence = 10;
while ($MyRow = DB_fetch_array($Result)) {
$UpdateSQL = "UPDATE bom
SET sequence='" . $Sequence . "'
WHERE parent='" . $SelectedParent . "'
AND sequence='" . $MyRow['sequence'] . "'
AND component='" . $MyRow['component'] . "'
AND workcentreadded='" . $MyRow['workcentreadded'] . "'
AND loccode='" . $MyRow['loccode'] . "'";
$UpdateResult = DB_query($UpdateSQL);
$Sequence = $Sequence + 10;
}
}
$Msg = '';
$InputError = 0;
if (isset($_GET['Add']) or isset($_GET['Edit'])) {
//editing a selected component from the link to the line item
/* We do want to show the new component entry form in any case - it is a lot of work to get back to it otherwise if we need to add */
echo '<form method="post" action="', htmlspecialchars(basename(__FILE__), ENT_QUOTES, 'UTF-8'), '?SelectedParent=', $SelectedParent, '">';
echo '<input type="hidden" name="FormID" value="', $_SESSION['FormID'], '" />';
$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, $ErrMsg, $DbgMsg);
$MyRow = DB_fetch_row($Result);
$ParentMBflag = $MyRow[1];
echo '<p class="page_title_text noprint">
<img src="', $RootPath, '/css/', $_SESSION['Theme'], '/images/maintenance.png" title="', _('Search'), '" alt="" /> ', _('Component Details'), '
</p>';
echo '<table class="noprint">';
if (isset($_GET['Edit'])) {
$SQL = "SELECT bom.loccode,
effectiveafter,
effectiveto,
sequence,
workcentreadded,
quantity,
autoissue,
remark
FROM bom
INNER JOIN locationusers
ON locationusers.loccode=bom.loccode
AND locationusers.userid='" . $_SESSION['UserID'] . "'
AND locationusers.canupd=1
WHERE parent='" . $SelectedParent . "'
AND component='" . $SelectedComponent . "'
AND workcentreadded='" . $WorkCentre . "'
AND bom.loccode='" . $Location . "'";
$Result = DB_query($SQL);
$MyRow = DB_fetch_array($Result);
$_POST['LocCode'] = $MyRow['loccode'];
$_POST['EffectiveAfter'] = ConvertSQLDate($MyRow['effectiveafter']);
$_POST['EffectiveTo'] = ConvertSQLDate($MyRow['effectiveto']);
$_POST['Sequence'] = $MyRow['sequence'];
$_POST['WorkCentreAdded'] = $MyRow['workcentreadded'];
$_POST['Quantity'] = locale_number_format($MyRow['quantity'], 'Variable');
$_POST['AutoIssue'] = $MyRow['autoissue'];
$_POST['Comment'] = $MyRow['remark'];
echo '<input type="hidden" name="Edit" value="Yes" />';
echo '<tr>
<th colsspan="2">', ('Edit Component Details'), '</th>
</tr>';
} else {
$SQL = "SELECT MAX(sequence) AS seqnum FROM bom WHERE parent='" . $SelectedParent . "'";
$Result = DB_query($SQL);
$MyRow = DB_fetch_array($Result);
$_POST['LocCode'] = $Location;
$_POST['EffectiveAfter'] = date($_SESSION['DefaultDateFormat']);
$_POST['EffectiveTo'] = Date($_SESSION['DefaultDateFormat'], Mktime(0, 0, 0, Date('m'), Date('d'), (Date('y') + 20)));
$_POST['Sequence'] = $MyRow['seqnum'] + 10;
$_POST['WorkCentreAdded'] = '';
$_POST['Quantity'] = locale_number_format(1, 'Variable');
$_POST['AutoIssue'] = $_SESSION['AutoIssue'];
$_POST['Comment'] = '';
echo '<input type="hidden" name="Add" value="Yes" />';
echo '<tr>
<th colspan="2">', _('New Component Details'), '</th>
</tr>';
}
echo '<input type="hidden" name="ShowAllLevels" value="', $_POST['ShowAllLevels'], '" />';
echo '<input type="hidden" name="SelectedParent" value="', $SelectedParent, '" />';
echo '<input type="hidden" name="SelectedComponent" value="', $SelectedComponent, '" />';
echo '<tr>
<td>', _('Component'), ':</td>
<td>', $SelectedComponent, '<td>
</tr>';
echo '<tr>
<td>', _('Sequence in BOM'), ':</td>
<td><input type="text" class="integer" required="required" name="Sequence" size="6" autofocus="autofocus" value="', $_POST['Sequence'], '" /></td>
</tr>';
/* 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.";
*/
$SQL = "SELECT locationname,
locations.loccode
FROM locations
INNER JOIN locationusers
ON locationusers.loccode=locations.loccode
AND locationusers.userid='" . $_SESSION['UserID'] . "'
AND locationusers.canupd=1
WHERE locations.usedforwo = 1";
$Result = DB_query($SQL);
echo '<tr>
<td>', _('Location'), ': </td>
<td>
<select required="required" name="LocCode">';
while ($MyRow = DB_fetch_array($Result)) {
if (isset($_POST['LocCode']) and $MyRow['loccode'] == $_POST['LocCode']) {
echo '<option selected="selected" value="', $MyRow['loccode'], '">', $MyRow['locationname'], '</option>';
} else {
echo '<option value="', $MyRow['loccode'], '">', $MyRow['locationname'], '</option>';
}
} //end while loop
DB_free_result($Result);
echo '</select>
</td>
</tr>';
$SQL = "SELECT code,
description
FROM workcentres
INNER JOIN locationusers
ON locationusers.loccode=workcentres.location
AND locationusers.userid='" . $_SESSION['UserID'] . "'
AND locationusers.canupd=1";
$Result = DB_query($SQL);
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 '<a href="', $RootPath, '/WorkCentres.php">', _('Work Centre Maintenance'), '</a></field></fieldset>';
include ('includes/footer.php');
exit;
}
echo '<tr>
<td>', _('Work Centre Added'), ': </td>
<td>
<select required="required" name="WorkCentreAdded">';
while ($MyRow = DB_fetch_array($Result)) {
if (isset($_POST['WorkCentreAdded']) and $MyRow['code'] == $_POST['WorkCentreAdded']) {
echo '<option selected="selected" value="', $MyRow['code'], '">', $MyRow['description'], '</option>';
} else {
echo '<option value="', $MyRow['code'], '">', $MyRow['description'], '</option>';
}
} //end while loop
echo '</select>
</td>
</tr>';
echo '<tr>
<td>', _('Quantity'), ': </td>
<td><input type="text" class="number" name="Quantity" size="10" required="required" maxlength="8" value="', $_POST['Quantity'], '" /></td>
</tr>';
echo '<tr>
<td>', _('Effective After'), ' (', $_SESSION['DefaultDateFormat'], '):</td>
<td><input type="text" name="EffectiveAfter" class="date" size="11" required="required" maxlength="10" value="', $_POST['EffectiveAfter'], '" /></td>
</tr>';
echo '<tr>
<td>', _('Effective To'), ' (', $_SESSION['DefaultDateFormat'], '):</td>
<td><input type="text" name="EffectiveTo" class="date" size="11" required="required" maxlength="10" value="', $_POST['EffectiveTo'], '" /></td>
</tr>';
if ($ParentMBflag == 'M' or $ParentMBflag == 'G') {
echo '<tr>
<td>', _('Auto Issue this Component to Work Orders'), ':</td>
<td>
<select required="required" name="AutoIssue">';
if ($_POST['AutoIssue'] == 0) {
echo '<option selected="selected" value="0">', _('No'), '</option>';
echo '<option value="1">', _('Yes'), '</option>';
} else {
echo '<option selected="selected" value="1">', _('Yes'), '</option>';
echo '<option value="0">', _('No'), '</option>';
}
echo '</select>
</td>
</tr>';
} else {
echo '<input type="hidden" name="AutoIssue" value="0" />';
}
if (!isset($_POST['Comment'])) {
$_POST['Comment'] = '';
}
echo '<tr>
<td>', _('Comment'), '</td>
<td><textarea rows="3" col="20" name="Comment" >', $_POST['Comment'], '</textarea></td>
</tr>';
echo '</table>
<div class="centre">
<input type="submit" name="Submit" value="', _('Enter Information'), '" />
<input type="submit" name="Cancel" value="', _('Cancel'), '" />
</div>
</form>';
include ('includes/footer.php');
exit;
}
if (isset($SelectedParent)) { //Parent Stock Item selected so display BOM or edit Component
echo '<div class="toplink noprint">
<a href="', htmlspecialchars(basename(__FILE__), ENT_QUOTES, 'UTF-8'), '">', _('Select a Different BOM'), '</a>
</div>';
echo '<p class="page_title_text noprint">
<img src="', $RootPath, '/css/', $_SESSION['Theme'], '/images/maintenance.png" title="', _('Search'), '" alt="" /> ', $Title, '
</p>';
if (isset($SelectedParent) and isset($_POST['Submit'])) {
//editing a component need to do some validation of inputs
if (!is_date($_POST['EffectiveAfter'])) {
$InputError = 1;
prnMsg(_('The effective after date field must be a date in the format') . ' ' . $_SESSION['DefaultDateFormat'], 'error');
}
if (!is_date($_POST['EffectiveTo'])) {
$InputError = 1;
prnMsg(_('The effective to date field must be a date in the format') . ' ' . $_SESSION['DefaultDateFormat'], 'error');
}
if (!is_numeric(filter_number_format($_POST['Quantity']))) {
$InputError = 1;
prnMsg(_('The quantity entered must be numeric'), 'error');
}
/* Comment this out to make substittute material can be recorded in the BOM
if (filter_number_format($_POST['Quantity']) == 0) {
$InputError = 1;
prnMsg(_('The quantity entered cannot be zero'), 'error');
}
+ */
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');
}
if ($_POST['AutoIssue'] == 1 and isset($_POST['Component'])) {
$SQL = "SELECT controlled FROM stockmaster WHERE stockid='" . $_POST['Component'] . "'";
$CheckControlledResult = DB_query($SQL);
$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 ($_POST['SelectedComponent'] == $SelectedParent) {
$InputError = 1;
prnMsg(_('The component selected is the same with the parent, it is not allowed'), 'error');
}
$EffectiveAfterSQL = FormatDateForSQL($_POST['EffectiveAfter']);
$EffectiveToSQL = FormatDateForSQL($_POST['EffectiveTo']);
if (isset($SelectedParent) and isset($SelectedComponent) and isset($_POST['Edit']) and $InputError != 1) {
$SQL = "UPDATE bom SET workcentreadded='" . $_POST['WorkCentreAdded'] . "',
loccode='" . $_POST['LocCode'] . "',
effectiveafter='" . $EffectiveAfterSQL . "',
effectiveto='" . $EffectiveToSQL . "',
sequence='" . $_POST['Sequence'] . "',
quantity= '" . filter_number_format($_POST['Quantity']) . "',
autoissue='" . $_POST['AutoIssue'] . "',
remark='" . $_POST['Comment'] . "'
WHERE bom.parent='" . $SelectedParent . "'
AND bom.component='" . $SelectedComponent . "'
AND workcentreadded='" . $_POST['WorkCentreAdded'] . "'
AND loccode='" . $_POST['LocCode'] . "'";
$ErrMsg = _('Could not update this BOM component because');
$DbgMsg = _('The SQL used to update the component was');
$Result = DB_query($SQL, $ErrMsg, $DbgMsg);
$Msg = _('Details for') . ' - ' . $SelectedComponent . ' ' . _('have been updated') . '.';
UpdateCost($SelectedComponent);
} elseif ($InputError != 1 and isset($SelectedComponent) and isset($SelectedParent) and isset($_POST['Add'])) {
/*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['SelectedComponent'])) {
/*Now check to see that the component is not already on the BOM */
$SQL = "SELECT component
FROM bom
WHERE parent='" . $SelectedParent . "'
AND component='" . $_POST['SelectedComponent'] . "'
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, $ErrMsg, $DbgMsg);
if (DB_num_rows($Result) == 0) {
$SQL = "INSERT INTO bom (parent,
component,
workcentreadded,
loccode,
quantity,
sequence,
effectiveafter,
effectiveto,
autoissue,
remark)
VALUES ('" . $SelectedParent . "',
'" . $_POST['SelectedComponent'] . "',
'" . $_POST['WorkCentreAdded'] . "',
'" . $_POST['LocCode'] . "',
" . filter_number_format($_POST['Quantity']) . ",
" . $_POST['Sequence'] . ",
'" . $EffectiveAfterSQL . "',
'" . $EffectiveToSQL . "',
" . $_POST['AutoIssue'] . ",
'" . $_POST['Comment'] . "'
)";
$ErrMsg = _('Could not insert the BOM component because');
$DbgMsg = _('The SQL used to insert the component was');
$Result = DB_query($SQL, $ErrMsg, $DbgMsg);
UpdateCost($_POST['SelectedComponent']);
$Msg = _('A new component part') . ' ' . $_POST['SelectedComponent'] . ' ' . _('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');
}
} //end of if its not a recursive BOM
} //end of if no input errors
unset($SelectedComponent);
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 . "'
AND loccode='" . $Location . "'
AND workcentreadded='" . $WorkCentre . "'";
$ErrMsg = _('Could not delete this BOM components because');
$DbgMsg = _('The SQL used to delete the BOM was');
$Result = DB_query($SQL, $ErrMsg, $DbgMsg);
$ComponentSQL = "SELECT component
FROM bom
WHERE parent='" . $SelectedParent . "'";
$ComponentResult = DB_query($ComponentSQL);
$ComponentArray = DB_fetch_row($ComponentResult);
UpdateCost($ComponentArray[0]);
prnMsg(_('The component part') . ' - ' . $SelectedComponent . ' - ' . _('has been deleted from this BOM'), 'success');
// Now reset to enable New Component Details to display after delete
unset($SelectedComponent);
} 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);
} //BOM editing/insertion ifs
if (isset($_GET['ReSelect'])) {
$SelectedParent = $_GET['ReSelect'];
}
//DisplayBOMItems($SelectedParent);
$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, $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;
case 'G':
$MBdesc = _('Phantom');
break;
}
// 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, $ErrMsg, $DbgMsg);
$i = 0;
if (DB_num_rows($Result) > 0) {
echo '<table class="selection noprint">
<tr>
<th>', _('Manufactured parent items'), ' : ';
while ($MyRow = DB_fetch_array($Result)) {
echo (($i) ? ', ' : ''), '<a href="', htmlspecialchars(basename(__FILE__), ENT_QUOTES, 'UTF-8'), '?SelectedParent=', urlencode($MyRow['parent']), '">', $MyRow['description'], ' (', $MyRow['parent'], ')</a>';
++$i;
} //end while loop
echo '</th>
</tr>
</table>';
}
// Display Assembly Parent Items
$SQL = "SELECT bom.parent,
stockmaster.description,
stockmaster.mbflag
FROM bom INNER JOIN stockmaster
ON bom.parent=stockmaster.stockid
WHERE bom.component='" . $SelectedParent . "'
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, $ErrMsg, $DbgMsg);
if (DB_num_rows($Result) > 0) {
echo '<table class="noprint">
<tr>
<th>', _('Assembly parent items'), ' : ';
$i = 0;
while ($MyRow = DB_fetch_array($Result)) {
echo (($i) ? ', ' : ''), '<a href="', htmlspecialchars(basename(__FILE__), ENT_QUOTES, 'UTF-8'), '?SelectedParent=', urlencode($MyRow['parent']), '">', $MyRow['description'], ' (', $MyRow['parent'], ')</a>';
++$i;
} //end while loop
echo '</th>
</tr>
</table>';
}
// Display Kit Sets
$SQL = "SELECT bom.parent,
stockmaster.description,
stockmaster.mbflag
FROM bom
INNER JOIN stockmaster
ON bom.parent=stockmaster.stockid
INNER JOIN locationusers
ON locationusers.loccode=bom.loccode
AND locationusers.userid='" . $_SESSION['UserID'] . "'
AND locationusers.canupd=1
WHERE bom.component='" . $SelectedParent . "'
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, $ErrMsg, $DbgMsg);
if (DB_num_rows($Result) > 0) {
echo '<table>
<tr>
<th>', _('Kit sets'), ' : ';
$i = 0;
while ($MyRow = DB_fetch_array($Result)) {
echo (($i) ? ', ' : ''), '<a href="', htmlspecialchars(basename(__FILE__), ENT_QUOTES, 'UTF-8'), '?SelectedParent=', urlencode($MyRow['parent']), '">', $MyRow['description'], ' (', $MyRow['parent'], ')</a>';
++$i;
} //end while loop
echo '</th>
</tr>
</table>';
}
// Display Phantom/Ghosts
$SQL = "SELECT bom.parent,
stockmaster.description,
stockmaster.mbflag
FROM bom
INNER JOIN stockmaster
ON bom.parent=stockmaster.stockid
INNER JOIN locationusers
ON locationusers.loccode=bom.loccode
AND locationusers.userid='" . $_SESSION['UserID'] . "'
AND locationusers.canupd=1
WHERE bom.component='" . $SelectedParent . "'
AND stockmaster.mbflag='G'";
$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, $ErrMsg, $DbgMsg);
if (DB_num_rows($Result) > 0) {
echo '<table>
<tr>
<th>', _('Phantom'), ' : ';
$i = 0;
while ($MyRow = DB_fetch_array($Result)) {
echo (($i) ? ', ' : ''), '<a href="', htmlspecialchars(basename(__FILE__), ENT_QUOTES, 'UTF-8'), '?SelectedParent=', urlencode($MyRow['parent']), '">', $MyRow['description'], ' (', $MyRow['parent'], ')</a>';
++$i;
} //end while loop
echo '</th>
</tr>
</table>';
}
echo '<form action="', htmlspecialchars(basename(__FILE__), ENT_QUOTES, 'UTF-8'), '" method="post">';
echo '<input type="hidden" name="FormID" value="', $_SESSION['FormID'], '" />';
echo '<input type="hidden" name="SelectedParent" value="', $SelectedParent, '" />';
echo '<table>';
echo '<tr>
<th colspan="15"><b>', $SelectedParent, ' - ', $MyRow[0], ' (', $MBdesc, ') </b></th>
<th>
<img src="', $RootPath, '/css/', $_SESSION['Theme'], '/images/printer.png" class="PrintIcon noprint" title="', _('Print'), '" alt="', _('Print'), '" onclick="window.print();" />
</th>
</tr>';
$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);
echo '<tr>
<th>', _('Level'), '</th>
<th>', _('Sequence'), '</th>
<th>', _('Category Description'), '</th>
<th>', _('Code'), '</th>
<th>', _('Description'), '</th>
<th>', _('Location'), '</th>
<th>', _('Work Centre'), '</th>
<th>', _('Quantity'), '</th>
<th>', _('UOM'), '</th>
<th class="noprint">', _('Effective After'), '</th>
<th class="noprint">', _('Effective To'), '</th>
<th class="noprint">', _('Auto Issue'), '</th>
<th class="noprint">', _('Qty On Hand'), '</th>
<th colspan="3"></th>
</tr>';
if (count($BOMTree) == 0) {
echo '<tr>
<td colspan="8">', _('No materials found.'), '</td>
</tr>';
} else {
$UltimateParent = $SelectedParent;
$k = 0;
$RowCounter = 1;
$BOMTree = arrayUnique($BOMTree);
foreach ($BOMTree as $BOMItem) {
$Level = $BOMItem['Level'];
$Parent = $BOMItem['Parent'];
$Component = $BOMItem['Component'];
DisplayBOMItems($UltimateParent, $Parent, $Component, $Level);
}
}
echo '</table>
<input type="submit" class="noprint" name="renumber" value="Re-Sequence the BOM" />
</form>';
if (!isset($SelectedComponent)) {
echo '<form action="', htmlspecialchars(basename(__FILE__), ENT_QUOTES, 'UTF-8'), '" method="post">';
echo '<input type="hidden" name="FormID" value="', $_SESSION['FormID'], '" />';
echo '<table class="noprint">
<tr>
<th colspan="2">', _('Select new component for BOM'), '</th>
</tr>';
$SQL = "SELECT categoryid,
categorydescription
FROM stockcategory
WHERE stocktype='F' OR stocktype='D' OR stocktype='L'
ORDER BY categorydescription";
$Result = DB_query($SQL);
echo '<tr>
<td>', _('Select a Stock Category'), ': </td>
<td>
<select name="StockCat">';
if (!isset($_POST['StockCat']) or $_POST['StockCat'] == 'All') {
echo '<option selected="selected" value="All">', _('All'), '</option>';
$_POST['StockCat'] = 'All';
} else {
echo '<option value="All">', _('All'), '</option>';
}
while ($MyRow = DB_fetch_array($Result)) {
if ($_POST['StockCat'] == $MyRow['categoryid']) {
echo '<option selected="selected" value="', $MyRow['categoryid'], '">', $MyRow['categorydescription'], '</option>';
} else {
echo '<option value="', $MyRow['categoryid'], '">', $MyRow['categorydescription'], '</option>';
}
}
echo '</select>
</td>
</tr>';
echo '<tr>
<td>', _('Enter text extracts in the description'), ':</td>
<td><input type="text" name="Keywords" size="20" maxlength="25" /></td>
</tr>
<tr>
<td><b>', _('OR'), '</b></td>
</tr>
<tr>
<td>', _('Enter extract of the Stock Code'), ':</td>
<td><input type="text" autofocus="autofocus" name="StockCode" size="15" maxlength="20" /></td>
</field>
</table>
<input type="hidden" name="SelectedParent" value="', $SelectedParent, '" />
<div class="centre noprint">
<input type="submit" name="ComponentSearch" value="', _('Search Now'), '" />
</div>
</form>';
}
// end of BOM maintenance code - look at the parent selection form if not relevant
// ----------------------------------------------------------------------------------
} elseif (isset($_POST['Search'])) {