-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathFixedAssetItems.php
More file actions
926 lines (818 loc) · 36.2 KB
/
FixedAssetItems.php
File metadata and controls
926 lines (818 loc) · 36.2 KB
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
<?php
/* $Revision: 1.2 $ */
$PageSecurity = 11;
include('includes/session.inc');
$title = _('Fixed Asset Maintenance');
include('includes/header.inc');
/*If this form is called with the StockID then it is assumed that the stock item is to be modified */
if (isset($_GET['StockID'])){
$StockID =trim(strtoupper($_GET['StockID']));
} elseif (isset($_POST['StockID'])){
$StockID =trim(strtoupper($_POST['StockID']));
} else {
$StockID = '';
}
if (isset($StockID)) {
$sql = "SELECT COUNT(stockid) FROM assetmanager WHERE stockid='".$StockID."'";
$result = DB_query($sql,$db);
$myrow = DB_fetch_row($result);
if ($myrow[0]==0) {
$New=1;
}
}
echo '<a href="' . $rootpath . '/SelectProduct.php?' . SID . '">' . _('Back to Items') . '</a><br>' . "\n";
if (isset($_FILES['ItemPicture']) AND $_FILES['ItemPicture']['name'] !='') {
$result = $_FILES['ItemPicture']['error'];
$UploadTheFile = 'Yes'; //Assume all is well to start off with
$filename = $_SESSION['part_pics_dir'] . '/' . $StockID . '.jpg';
//But check for the worst
if (strtoupper(substr(trim($_FILES['ItemPicture']['name']),strlen($_FILES['ItemPicture']['name'])-3))!='JPG'){
prnMsg(_('Only jpg files are supported - a file extension of .jpg is expected'),'warn');
$UploadTheFile ='No';
} elseif ( $_FILES['ItemPicture']['size'] > ($_SESSION['MaxImageSize']*1024)) { //File Size Check
prnMsg(_('The file size is over the maximum allowed. The maximum size allowed in KB is') . ' ' . $_SESSION['MaxImageSize'],'warn');
$UploadTheFile ='No';
} elseif ( $_FILES['ItemPicture']['type'] == "text/plain" ) { //File Type Check
prnMsg( _('Only graphics files can be uploaded'),'warn');
$UploadTheFile ='No';
} elseif (file_exists($filename)){
prnMsg(_('Attempting to overwrite an existing item image'),'warn');
$result = unlink($filename);
if (!$result){
prnMsg(_('The existing image could not be removed'),'error');
$UploadTheFile ='No';
}
}
if ($UploadTheFile=='Yes'){
$result = move_uploaded_file($_FILES['ItemPicture']['tmp_name'], $filename);
$message = ($result)?_('File url') ."<a href='". $filename ."'>" . $filename . '</a>' : _('Something is wrong with uploading a file');
}
/* EOR Add Image upload for New Item - by Ori */
}
if (isset($Errors)) {
unset($Errors);
}
$Errors = array();
$InputError = 0;
if (isset($_POST['submit'])) {
//initialise no input errors assumed initially before we test
/* actions to take once the user has clicked the submit button
ie the page has called itself with some user input */
//first off validate inputs sensible
$i=1;
if (!isset($_POST['Description']) or strlen($_POST['Description']) > 50 OR strlen($_POST['Description'])==0) {
$InputError = 1;
prnMsg (_('The stock item description must be entered and be fifty characters or less long') . '. ' . _('It cannot be a zero length string either') . ' - ' . _('a description is required'),'error');
$Errors[$i] = 'Description';
$i++;
}
if (strlen($_POST['LongDescription'])==0) {
$InputError = 1;
prnMsg (_('The stock item description cannot be a zero length string') . ' - ' . _('a long description is required'),'error');
$Errors[$i] = 'LongDescription';
$i++;
}
if (strlen($StockID) ==0) {
$InputError = 1;
prnMsg (_('The Stock Item code cannot be empty'),'error');
$Errors[$i] = 'StockID';
$i++;
}
if (strstr($StockID,' ') OR strstr($StockID,"'") OR strstr($StockID,'+') OR strstr($StockID,"\\") OR strstr($StockID,"\"") OR strstr($StockID,'&') OR strstr($StockID,'.') OR strstr($StockID,'"')) {
$InputError = 1;
prnMsg(_('The stock item code cannot contain any of the following characters') . " - ' & + \" \\ " . _('or a space'),'error');
$Errors[$i] = 'StockID';
$i++;
$StockID='';
}
if (strlen($_POST['Units']) >20) {
$InputError = 1;
prnMsg(_('The unit of measure must be 20 characters or less long'),'error');
$Errors[$i] = 'Units';
$i++;
}
if (strlen($_POST['BarCode']) >20) {
$InputError = 1;
prnMsg(_('The barcode must be 20 characters or less long'),'error');
$Errors[$i] = 'BarCode';
$i++;
}
if (!is_numeric($_POST['Volume'])) {
$InputError = 1;
prnMsg (_('The volume of the packaged item in cubic metres must be numeric') ,'error');
$Errors[$i] = 'Volume';
$i++;
}
if ($_POST['Volume'] <0) {
$InputError = 1;
prnMsg(_('The volume of the packaged item must be a positive number'),'error');
$Errors[$i] = 'Volume';
$i++;
}
if (!is_numeric($_POST['KGS'])) {
$InputError = 1;
prnMsg(_('The weight of the packaged item in KGs must be numeric'),'error');
$Errors[$i] = 'KGS';
$i++;
}
if ($_POST['KGS']<0) {
$InputError = 1;
prnMsg(_('The weight of the packaged item must be a positive number'),'error');
$Errors[$i] = 'KGS';
$i++;
}
if (!is_numeric($_POST['EOQ'])) {
$InputError = 1;
prnMsg(_('The economic order quantity must be numeric'),'error');
$Errors[$i] = 'EOQ';
$i++;
}
if ($_POST['EOQ'] <0) {
$InputError = 1;
prnMsg (_('The economic order quantity must be a positive number'),'error');
$Errors[$i] = 'EOQ';
$i++;
}
if ($_POST['Controlled']==0 AND $_POST['Serialised']==1){
$InputError = 1;
prnMsg(_('The item can only be serialised if there is lot control enabled already') . '. ' . _('Batch control') . ' - ' . _('with any number of items in a lot/bundle/roll is enabled when controlled is enabled') . '. ' . _('Serialised control requires that only one item is in the batch') . '. ' . _('For serialised control') . ', ' . _('both controlled and serialised must be enabled'),'error');
$Errors[$i] = 'Serialised';
$i++;
}
if ($_POST['NextSerialNo']!=0 AND $_POST['Serialised']==0){
$InputError = 1;
prnMsg(_('The item can only have automatically generated serial numbers if it is a serialised item'),'error');
$Errors[$i] = 'NextSerialNo';
$i++;
}
if ($_POST['NextSerialNo']!=0 AND $_POST['MBFlag']!='M'){
$InputError = 1;
prnMsg(_('The item can only have automatically generated serial numbers if it is a manufactured item'),'error');
$Errors[$i] = 'NextSerialNo';
$i++;
}
if (($_POST['MBFlag']=='A' OR $_POST['MBFlag']=='K' OR $_POST['MBFlag']=='D' OR $_POST['MBFlag']=='G') AND $_POST['Controlled']==1){
$InputError = 1;
prnMsg(_('Assembly/Kitset/Phantom/Service/Labour items cannot also be controlled items') . '. ' . _('Assemblies/Dummies/Phantom and Kitsets are not physical items and batch/serial control is therefore not appropriate'),'error');
$Errors[$i] = 'Controlled';
$i++;
}
if (trim($_POST['CategoryID'])==''){
$InputError = 1;
prnMsg(_('There are no inventory categories defined. All inventory items must belong to a valid inventory category,'),'error');
$Errors[$i] = 'CategoryID';
$i++;
}
if (!is_numeric($_POST['Pansize'])) {
$InputError = 1;
prnMsg(_('Pansize quantity must be numeric'),'error');
$Errors[$i] = 'Pansize';
$i++;
}
if (!is_numeric($_POST['ShrinkFactor'])) {
$InputError = 1;
prnMsg(_('Shrinkage factor quantity must be numeric'),'error');
$Errors[$i] = 'ShrinkFactor';
$i++;
}
if ($InputError !=1){
if ($_POST['Serialised']==1){ /*Not appropriate to have several dp on serial items */
$_POST['DecimalPlaces']=0;
}
if (!isset($_POST['New']) and !isset($New)) { /*so its an existing one */
/*first check on the changes being made we must disallow:
- changes from manufactured or purchased to Service, Assembly or Kitset if there is stock - changes from manufactured, kitset or assembly where a BOM exists
*/
$sql = "SELECT mbflag,
controlled,
serialised
FROM stockmaster WHERE stockid = '$StockID'";
$MBFlagResult = DB_query($sql,$db);
$myrow = DB_fetch_row($MBFlagResult);
$OldMBFlag = $myrow[0];
$OldControlled = $myrow[1];
$OldSerialised = $myrow[2];
$sql = "SELECT SUM(locstock.quantity) FROM locstock WHERE stockid='$StockID'";
$result = DB_query($sql,$db);
$stkqtychk = DB_fetch_row($result);
if ($OldMBFlag != $_POST['MBFlag']){
if (($OldMBFlag == 'M' OR $OldMBFlag=='B') AND ($_POST['MBFlag']=='A' OR $_POST['MBFlag']=='K' OR $_POST['MBFlag']=='D' OR $_POST['MBFlag']=='G')){ /*then need to check that there is no stock holding first */
/* stock holding OK for phantom (ghost) items */
if ($stkqtychk[0]!=0 AND $OldMBFlag!='G'){
$InputError=1;
prnMsg( _('The make or buy flag cannot be changed from') . ' ' . $OldMBFlag . ' ' . _('to') . ' ' . $_POST['MBFlag'] . ' ' . _('where there is a quantity of stock on hand at any location') . '. ' . _('Currently there are') . ' ' . $stkqtychk[0] . ' ' . _('on hand') , 'errror');
}
/* don't allow controlled/serialized */
if ($_POST['Controlled']==1){
$InputError=1;
prnMsg( _('The make or buy flag cannot be changed from') . ' ' . $OldMBFlag . ' ' . _('to') . ' ' . $_POST['MBFlag'] . ' ' . _('where the item is to be lot controlled') . '. ' . _('Kitset, phantom, dummy and assembly items cannot be lot controlled'), 'error');
}
}
/*now check that if the item is being changed to a kitset, there are no items on sales orders or purchase orders*/
if ($_POST['MBFlag']=='K') {
$sql = "SELECT quantity-qtyinvoiced
FROM salesorderdetails
WHERE stkcode = '$StockID'
AND completed=0";
$result = DB_query($sql,$db);
$ChkSalesOrds = DB_fetch_row($result);
if ($ChkSalesOrds[0]!=0){
$InputError = 1;
prnMsg( _('The make or buy flag cannot be changed to a kitset where there is a quantity outstanding to be delivered on sales orders') . '. ' . _('Currently there are') .' ' . $ChkSalesOrds[0] . ' '. _('outstanding'), 'error');
}
}
/*now check that if it is to be a kitset or assembly or dummy there is no quantity on purchase orders outstanding*/
if ($_POST['MBFlag']=='K' OR $_POST['MBFlag']=='A' OR $_POST['MBFlag']=='D') {
$sql = "SELECT quantityord-quantityrecd
FROM purchorderdetails
WHERE itemcode = '$StockID'
AND completed=0";
$result = DB_query($sql,$db);
$ChkPurchOrds = DB_fetch_row($result);
if ($ChkPurchOrds[0]!=0){
$InputError = 1;
prnMsg( _('The make or buy flag cannot be changed to'). ' ' . $_POST['MBFlag'] . ' '. _('where there is a quantity outstanding to be received on purchase orders') . '. ' . _('Currently there are'). ' ' . $ChkPurchOrds[0] . ' '. _('yet to be received'). 'error');
}
}
/*now check that if it was a Manufactured, Kitset, Phantom or Assembly and is being changed to a purchased or dummy - that no BOM exists */
if (($OldMBFlag=='M' OR $OldMBFlag =='K' OR $OldMBFlag=='A' OR $OldMBFlag=='G') AND ($_POST['MBFlag']=='B' OR $_POST['MBFlag']=='D')) {
$sql = "SELECT COUNT(*) FROM bom WHERE parent = '$StockID'";
$result = DB_query($sql,$db);
$ChkBOM = DB_fetch_row($result);
if ($ChkBOM[0]!=0){
$InputError = 1;
prnMsg( _('The make or buy flag cannot be changed from manufactured, kitset or assembly to'). ' ' . $_POST['MBFlag'] . ' '. _('where there is a bill of material set up for the item') . '. ' . _('Bills of material are not appropriate for purchased or dummy items'), 'error');
}
}
/*now check that if it was Manufac, Phantom or Purchased and is being changed to assembly or kitset, it is not a component on an existing BOM */
if (($OldMBFlag=='M' OR $OldMBFlag =='B' OR $OldMBFlag=='D' OR $OldMBFlag=='G') AND ($_POST['MBFlag']=='A' OR $_POST['MBFlag']=='K')) {
$sql = "SELECT COUNT(*) FROM bom WHERE component = '$StockID'";
$result = DB_query($sql,$db);
$ChkBOM = DB_fetch_row($result);
if ($ChkBOM[0]!=0){
$InputError = 1;
prnMsg( _('The make or buy flag cannot be changed from manufactured, purchased or dummy to a kitset or assembly where the item is a component in a bill of material') . '. ' . _('Assembly and kitset items are not appropriate as components in a bill of materials'), 'error');
}
}
}
/* Do some checks for changes in the Serial & Controlled setups */
if ($OldControlled != $_POST['Controlled'] AND $stkqtychk[0]!=0){
$InputError=1;
prnMsg( _('You can not change a Non-Controlled Item to Controlled (or back from Controlled to non-controlled when there is currently stock on hand for the item') , 'error');
}
if ($OldSerialised != $_POST['Serialised'] AND $stkqtychk[0]!=0){
$InputError=1;
prnMsg( _('You can not change a Serialised Item to Non-Serialised (or vice-versa) when there is a quantity on hand for the item') , 'error');
}
if ($InputError == 0){
$sql = "UPDATE stockmaster
SET longdescription='" . $_POST['LongDescription'] . "',
description='" . $_POST['Description'] . "',
discontinued=" . $_POST['Discontinued'] . ",
controlled=" . $_POST['Controlled'] . ",
serialised=" . $_POST['Serialised'].",
perishable=" . $_POST['Perishable'].",
categoryid='" . $_POST['CategoryID'] . "',
units='" . $_POST['Units'] . "',
mbflag='" . $_POST['MBFlag'] . "',
eoq=" . $_POST['EOQ'] . ",
volume=" . $_POST['Volume'] . ",
kgs=" . $_POST['KGS'] . ",
barcode='" . $_POST['BarCode'] . "',
discountcategory='" . $_POST['DiscountCategory'] . "',
taxcatid=" . $_POST['TaxCat'] . ",
decimalplaces=" . $_POST['DecimalPlaces'] . ",
appendfile='" . $_POST['ItemPDF'] . "',
shrinkfactor=" . $_POST['ShrinkFactor'] . ",
pansize=" . $_POST['Pansize'] . ",
nextserialno=" . $_POST['NextSerialNo'] . "
WHERE stockid='$StockID'";
$ErrMsg = _('The stock item could not be updated because');
$DbgMsg = _('The SQL that was used to update the stock item and failed was');
$result = DB_query($sql,$db,$ErrMsg,$DbgMsg);
//delete any properties for the item no longer relevant with the change of category
$result = DB_query("DELETE FROM stockitemproperties
WHERE stockid ='" . $StockID . "'",
$db);
//now insert any item properties
for ($i=0;$i<=$_POST['PropertyCounter'];$i++){
if ($_POST['PropType' . $i] ==2){
if ($_POST['PropValue' . $i]=='on'){
$_POST['PropValue' . $i]=1;
} else {
$_POST['PropValue' . $i]=0;
}
}
$result = DB_query("INSERT INTO stockitemproperties (stockid,
stkcatpropid,
value)
VALUES ('" . $StockID . "',
" . $_POST['PropID' . $i] . ",
'" . $_POST['PropValue' . $i] . "')",
$db);
} //end of loop around properties defined for the category
prnMsg( _('Stock Item') . ' ' . $StockID . ' ' . _('has been updated'), 'success');
}
} else { //it is a NEW part
//but lets be really sure here
$result = DB_query("SELECT stockid FROM stockmaster WHERE stockid='" . $StockID ."'",$db);
if (DB_num_rows($result)==1){
prnMsg(_('The stock code entered is actually already in the database - duplicate stock codes are prohibited by the system. Try choosing an alternative stock code'),'error');
exit;
} else {
$sql = "INSERT INTO stockmaster (
stockid,
description,
longdescription,
categoryid,
units,
mbflag,
eoq,
discontinued,
controlled,
serialised,
perishable,
volume,
kgs,
barcode,
discountcategory,
taxcatid,
decimalplaces,
appendfile,
shrinkfactor,
pansize)
VALUES ('$StockID',
'" . $_POST['Description'] . "',
'" . $_POST['LongDescription'] . "',
'" . $_POST['CategoryID'] . "',
'" . $_POST['Units'] . "',
'" . $_POST['MBFlag'] . "',
" . $_POST['EOQ'] . ",
" . $_POST['Discontinued'] . ",
" . $_POST['Controlled'] . ",
" . $_POST['Serialised']. ",
" . $_POST['Perishable']. ",
" . $_POST['Volume'] . ",
" . $_POST['KGS'] . ",
'" . $_POST['BarCode'] . "',
'" . $_POST['DiscountCategory'] . "',
" . $_POST['TaxCat'] . ",
" . $_POST['DecimalPlaces']. ",
'" . $_POST['ItemPDF']. "',
" . $_POST['ShrinkFactor'] . ",
" . $_POST['Pansize'] . "
)";
$ErrMsg = _('The item could not be added because');
$DbgMsg = _('The SQL that was used to add the item failed was');
$result = DB_query($sql,$db, $ErrMsg, $DbgMsg);
//now insert any item properties
for ($i=0;$i<=$_POST['PropertyCounter'];$i++){
if ($_POST['PropType' . $i] ==2){
if ($_POST['PropValue' . $i]=='on'){
$_POST['PropValue' . $i]=1;
} else {
$_POST['PropValue' . $i]=0;
}
}
$sql="INSERT INTO stockitemproperties (stockid,
stkcatpropid,
value)
VALUES ('" . $StockID . "',
" . $_POST['PropID' . $i] . ",
'" . $_POST['PropValue' . $i] . "')";
$result = DB_query($sql,$db);
} //end of loop around properties defined for the category
if (DB_error_no($db) ==0) {
$sql = "INSERT INTO locstock (loccode,
stockid)
SELECT locations.loccode,
'" . $StockID . "'
FROM locations";
$ErrMsg = _('The locations for the item') . ' ' . $StockID . ' ' . _('could not be added because');
$DbgMsg = _('NB Locations records can be added by opening the utility page') . ' <i>Z_MakeStockLocns.php</i> ' . _('The SQL that was used to add the location records that failed was');
$InsResult = DB_query($sql,$db,$ErrMsg,$DbgMsg);
if (DB_error_no($db) ==0) {
prnMsg( _('New Item') .' ' . "<a
href='SelectProduct.php?StockID=$StockID'>$StockID</a>" . ' '. _('has been added to the database'),'success'); unset($_POST['LongDescription']);
unset($_POST['Description']);
unset($_POST['EOQ']);
// Leave Category ID set for ease of batch entry
// unset($_POST['CategoryID']);
unset($_POST['Units']);
unset($_POST['MBFlag']);
unset($_POST['Discontinued']);
unset($_POST['Controlled']);
unset($_POST['Serialised']);
unset($_POST['Perishable']);
unset($_POST['Volume']);
unset($_POST['KGS']);
unset($_POST['BarCode']);
unset($_POST['ReorderLevel']);
unset($_POST['DiscountCategory']);
unset($_POST['DecimalPlaces']);
unset($_POST['ItemPDF']);
unset($_POST['ShrinkFactor']);
unset($_POST['Pansize']);
unset($StockID);
}//ALL WORKED SO RESET THE FORM VARIABLES
}//THE INSERT OF THE NEW CODE WORKED SO BANG IN THE STOCK LOCATION RECORDS TOO
}//END CHECK FOR ALREADY EXISTING ITEM OF THE SAME CODE
}
} else {
echo '<br>'. "\n";
prnMsg( _('Validation failed, no updates or deletes took place'), 'error');
}
} elseif (isset($_POST['delete']) AND strlen($_POST['delete']) >1 ) {
//the button to delete a selected record was clicked instead of the submit button
$CancelDelete = 0;
// PREVENT DELETES IF DEPENDENT RECORDS IN 'StockMoves'
$sql= "SELECT COUNT(*) FROM stockmoves WHERE stockid='$StockID'";
$result = DB_query($sql,$db);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
$CancelDelete = 1;
prnMsg( _('Cannot delete this stock item because there are stock movements that refer to this item'),'warn');
echo '<br>' . _('There are') . ' ' . $myrow[0] . ' ' . _('stock movements that refer to this item');
} else {
$sql= "SELECT COUNT(*) FROM bom WHERE component='$StockID'";
$result = DB_query($sql,$db);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
$CancelDelete = 1;
prnMsg( _('Cannot delete this item record because there are bills of material that require this part as a component'),'warn');
echo '<br>' . _('There are') . ' ' . $myrow[0] . ' ' . _('bills of material that require this part as a component');
} else {
$sql= "SELECT COUNT(*) FROM salesorderdetails WHERE stkcode='$StockID'";
$result = DB_query($sql,$db);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
$CancelDelete = 1;
prnMsg( _('Cannot delete this item record because there are existing sales orders for this part'),'warn');
echo '<br>' . _('There are') . ' ' . $myrow[0] . ' ' . _('sales order items against this part');
} else {
$sql= "SELECT COUNT(*) FROM salesanalysis WHERE stockid='$StockID'";
$result = DB_query($sql,$db);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
$CancelDelete = 1;
prnMsg(_('Cannot delete this item because sales analysis records exist for it'),'warn');
echo '<br>' . _('There are') . ' ' . $myrow[0] . ' ' . _('sales analysis records against this part');
} else {
$sql= "SELECT COUNT(*) FROM purchorderdetails WHERE itemcode='$StockID'";
$result = DB_query($sql,$db);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
$CancelDelete = 1;
prnMsg(_('Cannot delete this item because there are existing purchase order items for it'),'warn');
echo '<br>' . _('There are') . ' ' . $myrow[0] . ' ' . _('purchase order item record relating to this part');
} else {
$sql = "SELECT SUM(quantity) AS qoh FROM locstock WHERE stockid='$StockID'";
$result = DB_query($sql,$db);
$myrow = DB_fetch_row($result);
if ($myrow[0]!=0) {
$CancelDelete = 1;
prnMsg( _('Cannot delete this item because there is currently some stock on hand'),'warn');
echo '<br>' . _('There are') . ' ' . $myrow[0] . ' ' . _('on hand for this part');
}
}
}
}
}
}
if ($CancelDelete==0) {
$result = DB_Txn_Begin($db);
/*Deletes LocStock records*/
$sql ="DELETE FROM locstock WHERE stockid='$StockID'";
$result=DB_query($sql,$db,_('Could not delete the location stock records because'),'',true);
/*Deletes Price records*/
$sql ="DELETE FROM prices WHERE stockid='$StockID'";
$result=DB_query($sql,$db,_('Could not delete the prices for this stock record because'),'',true);
/*and cascade deletes in PurchData */
$sql ="DELETE FROM purchdata WHERE stockid='$StockID'";
$result=DB_query($sql,$db,_('Could not delete the purchasing data because'),'',true);
/*and cascade delete the bill of material if any */
$sql = "DELETE FROM bom WHERE parent='$StockID'";
$result=DB_query($sql,$db,_('Could not delete the bill of material because'),'',true);
$sql="DELETE FROM stockmaster WHERE stockid='$StockID'";
$result=DB_query($sql,$db, _('Could not delete the item record'),'',true);
$result = DB_Txn_Commit($db);
prnMsg(_('Deleted the stock master record for') . ' ' . $StockID . '....' .
'<br>. . ' . _('and all the location stock records set up for the part') .
'<br>. . .' . _('and any bill of material that may have been set up for the part') .
'<br> . . . .' . _('and any purchasing data that may have been set up for the part') .
'<br> . . . . .' . _('and any prices that may have been set up for the part'),'success');
unset($_POST['LongDescription']);
unset($_POST['Description']);
unset($_POST['EOQ']);
unset($_POST['CategoryID']);
unset($_POST['Units']);
unset($_POST['MBFlag']);
unset($_POST['Discontinued']);
unset($_POST['Controlled']);
unset($_POST['Serialised']);
unset($_POST['Perishable']);
unset($_POST['Volume']);
unset($_POST['KGS']);
unset($_POST['BarCode']);
unset($_POST['ReorderLevel']);
unset($_POST['DiscountCategory']);
unset($_POST['TaxCat']);
unset($_POST['DecimalPlaces']);
unset($_POST['ItemPDF']);
unset($StockID);
unset($_SESSION['SelectedStockItem']);
//echo "<meta http-equiv='Refresh' content='0; url=" . $rootpath . '/SelectProduct.php?' . SID ."'>";
} //end if Delete Part
}
echo '<form name="ItemForm" enctype="multipart/form-data" method="post" action="' . $_SERVER['PHP_SELF'] . '?' .SID .'"><table>
<tr><td><table>'. "\n"; // Nested table
if (!isset($StockID) or $StockID=='') {
/*If the page was called without $StockID passed to page then assume a new stock item is to be entered show a form with a part Code field other wise the form showing the fields with the existing entries against the part will show for editing with only a hidden StockID field. New is set to flag that the page may have called itself and still be entering a new part, in which case the page needs to know not to go looking up details for an existing part*/
$New = true;
echo '<input type="hidden" name="New" value="1">'. "\n";
echo '<tr><td>'. _('Asset Code'). ':</td><td><input ' . (in_array('StockID',$Errors) ? 'class="inputerror"' : '' ) .' type="text" name="StockID" size=21 maxlength=20></td></tr>'. "\n";
} elseif (!isset($_POST['UpdateCategories']) and $InputError!=1) { // Must be modifying an existing item and no changes made yet
$sql = "SELECT stockid,
description,
longdescription,
categoryid,
units,
mbflag,
discontinued,
controlled,
serialised,
perishable,
eoq,
volume,
kgs,
barcode,
discountcategory,
taxcatid,
decimalplaces,
appendfile,
nextserialno
FROM stockmaster
WHERE stockid = '$StockID'";
$result = DB_query($sql, $db);
$myrow = DB_fetch_array($result);
$_POST['LongDescription'] = $myrow['longdescription'];
$_POST['Description'] = $myrow['description'];
$_POST['EOQ'] = $myrow['eoq'];
$_POST['CategoryID'] = $myrow['categoryid'];
$_POST['Units'] = $myrow['units'];
$_POST['MBFlag'] = $myrow['mbflag'];
$_POST['Discontinued'] = $myrow['discontinued'];
$_POST['Controlled'] = $myrow['controlled'];
$_POST['Serialised'] = $myrow['serialised'];
$_POST['Perishable'] = $myrow['perishable'];
$_POST['Volume'] = $myrow['volume'];
$_POST['KGS'] = $myrow['kgs'];
$_POST['BarCode'] = $myrow['barcode'];
$_POST['DiscountCategory'] = $myrow['discountcategory'];
$_POST['TaxCat'] = $myrow['taxcatid'];
$_POST['DecimalPlaces'] = $myrow['decimalplaces'];
$_POST['ItemPDF'] = $myrow['appendfile'];
$_POST['NextSerialNo'] = $myrow['nextserialno'];
echo '<tr><td>' . _('Asset Code') . ':</td><td>'.$StockID.'</td></tr>'. "\n";
echo '<input type="Hidden" name="StockID" value='.$StockID.'>'. "\n";
} else { // some changes were made to the data so don't re-set form variables to DB ie the code above
echo '<tr><td>' . _('Asset Code') . ':</td><td>'.$StockID.'</td></tr>';
echo "<input type='Hidden' name='StockID' value='$StockID'>";
}
if (isset($_POST['Description'])) {
$Description = $_POST['Description'];
} else {
$Description ='';
}
echo '<tr><td>' . _('Asset Description') . ' (' . _('short') . '):</td><td><input ' . (in_array('Description',$Errors) ? 'class="inputerror"' : '' ) .' type="Text" name="Description" size=52 maxlength=50 value="' . htmlentities($Description,ENT_QUOTES,_('ISO-8859-1')) . '"></td></tr>'."\n";
if (isset($_POST['LongDescription'])) {
$LongDescription = AddCarriageReturns($_POST['LongDescription']);
} else {
$LongDescription ='';
}
echo '<tr><td>' . _('Asset Description') . ' (' . _('long') . '):</td><td><textarea ' . (in_array('LongDescription',$Errors) ? 'class="texterror"' : '' ) .' name="LongDescription" cols=40 rows=4>' . stripslashes($LongDescription) . '</textarea></td></tr>'."\n";
// Generate selection drop down from pdf_append directory - by emdx,
// developed with examples from http://au2.php.net/manual/en/function.opendir.php
function select_files($dir, $label = '', $select_name = 'ItemPDF', $curr_val = '', $char_length = 60) {
$teller = 0;
if (!file_exists($dir)) {
mkdir($dir);
chmod($dir, 0777);
}
if ($handle = opendir($dir)) {
$mydir = "<select name=".$select_name.">\n";
$mydir .= '<option VALUE=0>none';
if (isset($_POST['ItemPDF'])) {
$curr_val = $_POST['ItemPDF'];
} else {
$curr_val .= 'none';
}
while (false !== ($file = readdir($handle)))
{
$files[] = $file;
}
closedir($handle);
sort($files);
foreach ($files as $val) {
if (is_file($dir.$val)) {
$mydir .= '<option VALUE='.$val;
$mydir .= ($val == $curr_val) ? ' selected>' : '>';
$mydir .= $val."\n";
$teller++;
}
}
$mydir .= "";
}
return $mydir;
}
if (!isset($_POST['ItemPDF'])) {
$_POST['ItemPDF'] = '';
}
echo '<tr><td>' . _('PDF attachment (.pdf)') . ':' . "\n</td><td>" . select_files('companies/' . $_SESSION['DatabaseName'] .'/pdf_append//','' , 'ItemPDF', $_POST['ItemPDF'], '60') . '</td></tr>'. "\n";
// Add image upload for New Item - by Ori
echo '<tr><td>'. _('Image File (.jpg)') . ':</td><td><input type="file" id="ItemPicture" name="ItemPicture"></td></tr>';
// EOR Add Image upload for New Item - by Ori
echo '<tr><td>' . _('Category') . ':</td><td><select name="CategoryID" onChange="ReloadForm(ItemForm.UpdateCategories)">';
$sql = 'SELECT categoryid, categorydescription FROM stockcategory WHERE stocktype="A"';
$ErrMsg = _('The stock categories could not be retrieved because');
$DbgMsg = _('The SQL used to retrieve stock categories and failed was');
$result = DB_query($sql,$db,$ErrMsg,$DbgMsg);
while ($myrow=DB_fetch_array($result)){
if (!isset($_POST['CategoryID']) or $myrow['categoryid']==$_POST['CategoryID']){
echo '<option selected VALUE="'. $myrow['categoryid'] . '">' . $myrow['categorydescription'];
} else {
echo '<option VALUE="'. $myrow['categoryid'] . '">' . $myrow['categorydescription'];
}
$category=$myrow['categoryid'];
}
echo '</select><a target="_blank" href="'. $rootpath . '/FixedAssetCategories.php?' . SID . '">'.' ' . _('Add or Modify Asset Categories') . '</a></td></tr>';
if (!isset($_POST['CategoryID'])) {
$_POST['CategoryID']=$category;
}
if (!isset($_POST['EOQ']) or $_POST['EOQ']==''){
$_POST['EOQ']=0;
}
if (!isset($_POST['Volume']) or $_POST['Volume']==''){
$_POST['Volume']=0;
}
if (!isset($_POST['KGS']) or $_POST['KGS']==''){
$_POST['KGS']=0;
}
if (!isset($_POST['Controlled']) or $_POST['Controlled']==''){
$_POST['Controlled']=0;
}
if (!isset($_POST['Serialised']) or $_POST['Serialised']=='' || $_POST['Controlled']==0){
$_POST['Serialised']=0;
}
if (!isset($_POST['DecimalPlaces']) or $_POST['DecimalPlaces']==''){
$_POST['DecimalPlaces']=0;
}
if (!isset($_POST['Discontinued']) or $_POST['Discontinued']==''){
$_POST['Discontinued']=0;
}
if (!isset($_POST['Pansize'])) {
$_POST['Pansize']=0;
}
if (!isset($_POST['ShrinkFactor'])) {
$_POST['ShrinkFactor']=0;
}
if (!isset($_POST['NextSerialNo'])) {
$_POST['NextSerialNo']=0;
}
echo '<input type="hidden" class="number" name="EOQ" size=12 maxlength=10 value="0">';
echo '<tr><td>' . _('Packaged Volume (metres cubed)') . ':</td><td><input ' . (in_array('Volume',$Errors) ? 'class="inputerror"' : '' ) .' type="Text" class="number" name="Volume" size=12 maxlength=10 value="' . $_POST['Volume'] . '"></td></tr>';
echo '<tr><td>' . _('Packaged Weight (KGs)') . ':</td><td><input ' . (in_array('KGS',$Errors) ? 'class="inputerror"' : '' ) .' type="Text" class="number" name="KGS" size=12 maxlength=10 value="' . $_POST['KGS'] . '"></td></tr>';
if (!isset($_POST['Units'])) {
$UOMrow['unitname']=_('each');
}
echo '<input type=hidden name=Units value="each">';
echo '<tr><td>' . _('Manufactured or Purchased') . ':</td><td><select name="MBFlag">';
if (!isset($_POST['MBFlag']) or $_POST['MBFlag']=='M'){
echo '<option selected value="M">' . _('Manufactured') . '</option>';
} else {
echo '<option value="M">' . _('Manufactured') . '</option>';
}
if (!isset($_POST['MBFlag']) or $_POST['MBFlag']=='B' OR !isset($_POST['MBFlag']) OR $_POST['MBFlag']==''){
echo '<option selected value="B">' . _('Purchased') . '</option>';
} else {
echo '<option value="B">' . _('Purchased') . '</option>';
}
echo '</select></td></tr>';
echo '<input type=hidden name=Discontinued value="0">';
echo '<input type=hidden name=Controlled value="1">';
echo '<input type=hidden name=Serialised value="1">';
echo '<input type=hidden name=Perishable value="0">';
echo '<input type="hidden" class="number" name="DecimalPlaces" size=1 maxlength=1 value="0">';
if (isset($_POST['BarCode'])) {
$BarCode = $_POST['BarCode'];
} else {
$BarCode='';
}
echo '<tr><td>' . _('Bar Code') . ':</td><td><input ' . (in_array('BarCode',$Errors) ? 'class="inputerror"' : '' ) .' type="Text" name="BarCode" size=22 maxlength=20 value="' . $BarCode . '"></td></tr>';
if (isset($_POST['DiscountCategory'])) {
$DiscountCategory = $_POST['DiscountCategory'];
} else {
$DiscountCategory='';
}
echo '<input type="hidden" name="DiscountCategory" size=2 maxlength=2 value="' . $DiscountCategory . '">';
echo '<tr><td>' . _('Tax Category') . ':</td><td><select name="TaxCat">';
$sql = 'SELECT taxcatid, taxcatname FROM taxcategories ORDER BY taxcatname';
$result = DB_query($sql, $db);
if (!isset($_POST['TaxCat'])){
$_POST['TaxCat'] = $_SESSION['DefaultTaxCategory'];
}
while ($myrow = DB_fetch_array($result)) {
if ($_POST['TaxCat'] == $myrow['taxcatid']){
echo '<option selected value=' . $myrow['taxcatid'] . '>' . $myrow['taxcatname'] . '</option>';
} else {
echo '<option value=' . $myrow['taxcatid'] . '>' . $myrow['taxcatname'] . '</option>';
}
} //end while loop
echo '</select></td></tr>';
echo '<input type="hidden" class="number" name="Pansize" size="6" maxlength="6" value=' . $_POST['Pansize'] . '>';
echo '<input type="hidden" class="number" name="ShrinkFactor" size="6" maxlength="6" value=' . $_POST['ShrinkFactor'] . '>';
if (function_exists('imagecreatefrompng')){
$StockImgLink = '<img src="GetStockImage.php?SID&automake=1&textcolor=FFFFFF&bgcolor=CCCCCC'.
'&StockID='.urlencode($StockID).
'&text='.
'&width=64'.
'&height=64'.
'" >';
} else {
if( isset($StockID) and file_exists($_SESSION['part_pics_dir'] . '/' .$StockID.'.jpg') ) {
$StockImgLink = '<img src="' . $_SESSION['part_pics_dir'] . '/' .$StockID.'.jpg" >';
} else {
$StockImgLink = _('No Image');
}
}
echo '</table></td><td>' . _('Image') . '<br>'.$StockImgLink . '</td></tr></table><div class="centre">';
if (!isset($_POST['CategoryID'])) {
$_POST['CategoryID'] = '';
}
echo '<table><tr><th colspan="2">' . _('Asset Category Properties') . '</th></tr>';
$sql = "SELECT stkcatpropid,
label,
controltype,
defaultvalue
FROM stockcatproperties
WHERE categoryid ='" . $_POST['CategoryID'] . "'
AND reqatsalesorder =0
ORDER BY stkcatpropid";
$PropertiesResult = DB_query($sql,$db);
$PropertyCounter = 0;
$PropertyWidth = array();
while ($PropertyRow=DB_fetch_array($PropertiesResult)){
$PropValResult = DB_query("SELECT value FROM
stockitemproperties
WHERE stockid='" . $StockID . "'
AND stkcatpropid =" . $PropertyRow['stkcatpropid'],
$db);
$PropValRow = DB_fetch_row($PropValResult);
$PropertyValue = $PropValRow[0];
echo '<input type="hidden" name="PropID' . $PropertyCounter . '" value=' .$PropertyRow['stkcatpropid'] .'>';
echo '<tr><td>' . $PropertyRow['label'] . '</td>
<td>';
switch ($PropertyRow['controltype']) {
case 0; //textbox
echo '<input type="textbox" name="PropValue' . $PropertyCounter . '" size="20" maxlength="100" value="' . $PropertyValue . '">';
break;
case 1; //select box
$OptionValues = explode(',',$PropertyRow['defaultvalue']);
echo '<select name="PropValue' . $PropertyCounter . '">';
foreach ($OptionValues as $PropertyOptionValue){
if ($PropertyOptionValue == $PropertyValue){
echo '<option selected value="' . $PropertyOptionValue . '">' . $PropertyOptionValue . '</option>';
} else {
echo '<option value="' . $PropertyOptionValue . '">' . $PropertyOptionValue . '</option>';
}
}
echo '</select>';
break;
case 2; //checkbox
echo '<input type="checkbox" name="PropValue' . $PropertyCounter . '"';
if ($PropertyValue==1){
echo '"checked"';
}
echo '>';
break;
} //end switch
echo '<input type="hidden" name="PropType' . $PropertyCounter .'" value=' . $PropertyRow['controltype'] . '>';
echo '</td></tr>';
$PropertyCounter++;
} //end loop round properties for the item category
echo '</table>';
echo '<input type="hidden" name="PropertyCounter" value=2>';
if (isset($New)) {
echo '<input type="Submit" name="submit" value="' . _('Insert New Item') . '">';
echo '<input type="submit" name="UpdateCategories" style="visibility:hidden;width:1px" value="' . _('Categories') . '">';
} else {
// Now the form to enter the item properties
echo '<input type="submit" name="submit" value="' . _('Update') . '">';
echo '<input type="submit" name="UpdateCategories" style="visibility:hidden;width:1px" value="' . _('Categories') . '">';
echo '<p>';
prnMsg( _('Only click the Delete button if you are sure you wish to delete the item!') . _('Checks will be made to ensure that there are no stock movements, sales analysis records, sales order items or purchase order items for the item') . '. ' . _('No deletions will be allowed if they exist'), 'warn', _('WARNING'));
echo '<p><input type="Submit" name="delete" value="' . _('Delete This Item') . '" onclick="return confirm(\'' . _('Are You Sure?') . '\');">';
}
echo '</form></div>';
include('includes/footer.inc');
?>