forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PO_Header.php
1155 lines (1010 loc) · 49.3 KB
/
PO_Header.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/DefinePOClass.php');
include ('includes/session.php');
if (isset($_GET['ModifyOrderNumber'])) {
$Title = _('Modify Purchase Order') . ' ' . $_GET['ModifyOrderNumber'];
} else {
$Title = _('Purchase Order Entry');
}
if (isset($_GET['SupplierID'])) {
$_POST['Select'] = $_GET['SupplierID'];
}
/* webERP manual links before header.php */
$ViewTopic = 'PurchaseOrdering';
$BookMark = 'PurchaseOrdering';
include ('includes/header.php');
include ('includes/SQL_CommonFunctions.inc');
/*If the page is called is called without an identifier being set then
* it must be either a new order, or the start of a modification of an
* order, and so we must create a new identifier.
*
* The identifier only needs to be unique for this php session, so a
* unix timestamp will be sufficient.
*/
if (empty($_GET['identifier'])) {
$identifier = date('U');
} else {
$identifier = $_GET['identifier'];
}
/*Page is called with NewOrder=Yes when a new order is to be entered
* the session variable that holds all the PO data $_SESSION['PO'][$identifier]
* is unset to allow all new details to be created */
if (isset($_GET['NewOrder']) and isset($_SESSION['PO' . $identifier])) {
unset($_SESSION['PO' . $identifier]);
$_SESSION['ExistingOrder'] = 0;
}
if (isset($_POST['Select']) and empty($_POST['SupplierContact'])) {
$SQL = "SELECT contact
FROM suppliercontacts
WHERE supplierid='" . $_POST['Select'] . "'";
$SuppCoResult = DB_query($SQL);
if (DB_num_rows($SuppCoResult) > 0) {
$MyRow = DB_fetch_row($SuppCoResult);
$_POST['SupplierContact'] = $MyRow[0];
} else {
$_POST['SupplierContact'] = '';
}
}
if ((isset($_POST['UpdateStatus']) and $_POST['UpdateStatus'] != '')) {
if ($_SESSION['ExistingOrder'] == 0) {
prnMsg(_('This is a new order. It must be created before you can change the status'), 'warn');
$OKToUpdateStatus = 0;
} elseif ($_SESSION['PO' . $identifier]->Status != $_POST['Status']) { //the old status != new status
$OKToUpdateStatus = 1;
$AuthSQL = "SELECT authlevel
FROM purchorderauth
WHERE userid='" . $_SESSION['UserID'] . "'
AND currabrev='" . $_SESSION['PO' . $identifier]->CurrCode . "'";
$AuthResult = DB_query($AuthSQL);
$MyRow = DB_fetch_array($AuthResult);
$AuthorityLevel = $MyRow['authlevel'];
$OrderTotal = $_SESSION['PO' . $identifier]->Order_Value();
if ($_POST['StatusComments'] != '') {
$_POST['StatusComments'] = ' - ' . $_POST['StatusComments'];
}
if (IsEmailAddress($_SESSION['UserEmail'])) {
$UserChangedStatus = ' <a href="mailto:' . $_SESSION['UserEmail'] . '">' . $_SESSION['UsersRealName'] . '</a>';
} else {
$UserChangedStatus = ' ' . $_SESSION['UsersRealName'] . ' ';
}
if ($_POST['Status'] == 'Authorised') {
if ($AuthorityLevel > $OrderTotal) {
$_SESSION['PO' . $identifier]->StatusComments = date($_SESSION['DefaultDateFormat']) . ' - ' . _('Authorised by') . $UserChangedStatus . $_POST['StatusComments'] . '<br />' . html_entity_decode($_POST['StatusCommentsComplete'], ENT_QUOTES, 'UTF-8');
$_SESSION['PO' . $identifier]->AllowPrintPO = 1;
} else {
$OKToUpdateStatus = 0;
prnMsg(_('You do not have permission to authorise this purchase order') . '.<br />' . _('This order is for') . ' ' . $_SESSION['PO' . $identifier]->CurrCode . ' ' . $OrderTotal . '. ' . _('You can only authorise up to') . ' ' . $_SESSION['PO' . $identifier]->CurrCode . ' ' . $AuthorityLevel . '.<br />' . _('If you think this is a mistake please contact the systems administrator'), 'warn');
}
}
if ($_POST['Status'] == 'Rejected' or $_POST['Status'] == 'Cancelled') {
if (!isset($_SESSION['ExistingOrder']) or $_SESSION['ExistingOrder'] != 0) {
/* need to check that not already dispatched or invoiced by the supplier */
if ($_SESSION['PO' . $identifier]->Any_Already_Received() == 1) {
$OKToUpdateStatus = 0; //not ok to update the status
prnMsg(_('This order cannot be cancelled or rejected because some of it has already been received') . '. ' . _('The line item quantities may be modified to quantities more than already received') . '. ' . _('Prices cannot be altered for lines that have already been received') . ' ' . _('and quantities cannot be reduced below the quantity already received'), 'warn');
}
$ShipmentExists = $_SESSION['PO' . $identifier]->Any_Lines_On_A_Shipment();
if ($ShipmentExists != false) {
$OKToUpdateStatus = 0; //not ok to update the status
prnMsg(_('This order cannot be cancelled or rejected because there is at least one line that is allocated to a shipment') . '. ' . _('See shipment number') . ' ' . $ShipmentExists, 'warn');
}
} //!isset($_SESSION['ExistingOrder']) OR $_SESSION['ExistingOrder'] != 0
if ($OKToUpdateStatus == 1) { // none of the order has been received
if ($AuthorityLevel > $OrderTotal) {
$_SESSION['PO' . $identifier]->StatusComments = date($_SESSION['DefaultDateFormat']) . ' - ' . $_POST['Status'] . ' ' . _('by') . $UserChangedStatus . $_POST['StatusComments'] . '<br />' . html_entity_decode($_POST['StatusCommentsComplete'], ENT_QUOTES, 'UTF-8');
} else {
$OKToUpdateStatus = 0;
prnMsg(_('You do not have permission to reject this purchase order') . '.<br />' . _('This order is for') . ' ' . $_SESSION['PO' . $identifier]->CurrCode . ' ' . $OrderTotal . '. ' . _('Your authorisation limit is set at') . ' ' . $_SESSION['PO' . $identifier]->CurrCode . ' ' . $AuthorityLevel . '.<br />' . _('If you think this is a mistake please contact the systems administrator'), 'warn');
}
} //$OKToUpdateStatus == 1
} //$_POST['Status'] == 'Rejected' OR $_POST['Status'] == 'Cancelled'
if ($_POST['Status'] == 'Pending') {
if ($_SESSION['PO' . $identifier]->Any_Already_Received() == 1) {
$OKToUpdateStatus = 0; //not OK to update status
prnMsg(_('This order could not have the status changed back to pending because some of it has already been received. Quantities received will need to be returned to change the order back to pending.'), 'warn');
}
if (($AuthorityLevel > $OrderTotal or $_SESSION['UserID'] == $_SESSION['PO' . $identifier]->Initiator) and $OKToUpdateStatus == 1) {
$_SESSION['PO' . $identifier]->StatusComments = date($_SESSION['DefaultDateFormat']) . ' - ' . _('Order set to pending status by') . $UserChangedStatus . $_POST['StatusComments'] . '<br />' . html_entity_decode($_POST['StatusCommentsComplete'], ENT_QUOTES, 'UTF-8');
} elseif ($AuthorityLevel < $OrderTotal and $_SESSION['UserID'] != $_SESSION['PO' . $identifier]->Initiator) {
$OKToUpdateStatus = 0;
prnMsg(_('You do not have permission to change the status of this purchase order') . '.<br />' . _('This order is for') . ' ' . $_SESSION['PO' . $identifier]->CurrCode . ' ' . $OrderTotal . '. ' . _('Your authorisation limit is set at') . ' ' . $_SESSION['PO' . $identifier]->CurrCode . ' ' . $AuthorityLevel . '.<br />' . _('If you think this is a mistake please contact the systems administrator'), 'warn');
} //$AuthorityLevel < $OrderTotal AND $_SESSION['UserID'] != $_SESSION['PO' . $identifier]->Initiator
} //$_POST['Status'] == 'Pending'
if ($OKToUpdateStatus == 1) {
$_SESSION['PO' . $identifier]->Status = $_POST['Status'];
if ($_SESSION['PO' . $identifier]->Status == 'Authorised') {
$AllowPrint = 1;
} //$_SESSION['PO' . $identifier]->Status == 'Authorised'
else {
$AllowPrint = 0;
}
$SQL = "UPDATE purchorders SET status='" . $_POST['Status'] . "',
stat_comment='" . $_SESSION['PO' . $identifier]->StatusComments . "',
allowprint='" . $AllowPrint . "'
WHERE purchorders.orderno ='" . $_SESSION['ExistingOrder'] . "'";
$ErrMsg = _('The order status could not be updated because');
$UpdateResult = DB_query($SQL, $ErrMsg);
if ($_POST['Status'] == 'Completed' or $_POST['Status'] == 'Cancelled' or $_POST['Status'] == 'Rejected') {
$SQL = "UPDATE purchorderdetails SET completed=1 WHERE orderno='" . $_SESSION['ExistingOrder'] . "'";
$UpdateResult = DB_query($SQL, $ErrMsg);
} else { //To ensure that the purchorderdetails status is correct when it is recovered from a cancelled orders
$SQL = "UPDATE purchorderdetails SET completed=0 WHERE orderno='" . $_SESSION['ExistingOrder'] . "'";
$UpdateResult = DB_query($SQL, $ErrMsg);
}
} //$OKToUpdateStatus == 1
} //end if there is actually a status change the class Status != the POST['Status']
} //End if user hit Update Status
if (isset($_GET['NewOrder']) and isset($_GET['StockID']) and isset($_GET['SelectedSupplier'])) {
/*
* initialise a new order
*/
$_SESSION['ExistingOrder'] = 0;
unset($_SESSION['PO' . $identifier]);
/* initialise new class object */
$_SESSION['PO' . $identifier] = new PurchOrder;
/*
* and fill it with essential data
*/
$_SESSION['PO' . $identifier]->AllowPrintPO = 1;
/* Of course 'cos the order aint even started !!*/
$_SESSION['PO' . $identifier]->GLLink = $_SESSION['CompanyRecord']['gllink_stock'];
/* set the SupplierID we got */
$_SESSION['PO' . $identifier]->SupplierID = $_GET['SelectedSupplier'];
$_SESSION['PO' . $identifier]->DeliveryDate = date($_SESSION['DefaultDateFormat']);
$_SESSION['PO' . $identifier]->Initiator = $_SESSION['UserID'];
$_SESSION['RequireSupplierSelection'] = 0;
$_POST['Select'] = $_GET['SelectedSupplier'];
/*
* the item (it's item code) that should be purchased
*/
$Purch_Item = $_GET['StockID'];
} //End if it's a new order sent with supplier code and the item to order
if (isset($_POST['EnterLines']) or isset($_POST['AllowRePrint'])) {
/*User hit the button to enter line items -
* ensure session variables updated then meta refresh to PO_Items.php*/
$_SESSION['PO' . $identifier]->Location = $_POST['StkLocation'];
$_SESSION['PO' . $identifier]->SupplierContact = isset($_POST['SupplierContact']) ? $_POST['SupplierContact'] : '';
$_SESSION['PO' . $identifier]->DelAdd1 = $_POST['DelAdd1'];
$_SESSION['PO' . $identifier]->DelAdd2 = $_POST['DelAdd2'];
$_SESSION['PO' . $identifier]->DelAdd3 = $_POST['DelAdd3'];
$_SESSION['PO' . $identifier]->DelAdd4 = $_POST['DelAdd4'];
$_SESSION['PO' . $identifier]->DelAdd5 = $_POST['DelAdd5'];
$_SESSION['PO' . $identifier]->DelAdd6 = $_POST['DelAdd6'];
$_SESSION['PO' . $identifier]->SuppDelAdd1 = $_POST['SuppDelAdd1'];
$_SESSION['PO' . $identifier]->SuppDelAdd2 = $_POST['SuppDelAdd2'];
$_SESSION['PO' . $identifier]->SuppDelAdd3 = $_POST['SuppDelAdd3'];
$_SESSION['PO' . $identifier]->SuppDelAdd4 = $_POST['SuppDelAdd4'];
$_SESSION['PO' . $identifier]->SuppDelAdd5 = $_POST['SuppDelAdd5'];
$_SESSION['PO' . $identifier]->SuppTel = $_POST['SuppTel'];
$_SESSION['PO' . $identifier]->Initiator = $_POST['Initiator'];
$_SESSION['PO' . $identifier]->RequisitionNo = $_POST['Requisition'];
$_SESSION['PO' . $identifier]->Version = $_POST['Version'];
$_SESSION['PO' . $identifier]->DeliveryDate = $_POST['DeliveryDate'];
$_SESSION['PO' . $identifier]->Revised = $_POST['Revised'];
$_SESSION['PO' . $identifier]->ExRate = filter_number_format($_POST['ExRate']);
$_SESSION['PO' . $identifier]->Comments = $_POST['Comments'];
$_SESSION['PO' . $identifier]->DeliveryBy = $_POST['DeliveryBy'];
if (isset($_POST['StatusComments'])) {
$_SESSION['PO' . $identifier]->StatusComments = $_POST['StatusComments'];
}
$_SESSION['PO' . $identifier]->PaymentTerms = $_POST['PaymentTerms'];
$_SESSION['PO' . $identifier]->Contact = $_POST['Contact'];
$_SESSION['PO' . $identifier]->Tel = $_POST['Tel'];
$_SESSION['PO' . $identifier]->Port = $_POST['Port'];
if (isset($_POST['RePrint']) and $_POST['RePrint'] == 1) {
$_SESSION['PO' . $identifier]->AllowPrintPO = 1;
$SQL = "UPDATE purchorders
SET purchorders.allowprint='1'
WHERE purchorders.orderno='" . $_SESSION['PO' . $identifier]->OrderNo . "'";
$ErrMsg = _('An error occurred updating the purchase order to allow reprints') . '. ' . _('The error says');
$UpdateResult = DB_query($SQL, $ErrMsg);
} //end if change to allow reprint
else {
$_POST['RePrint'] = 0;
}
if (!isset($_POST['AllowRePrint'])) { // user only hit update not "Enter Lines"
echo '<meta http-equiv="Refresh" content="0; url=' . $RootPath . '/PO_Items.php?identifier=' . $identifier . '">';
echo '<p>';
prnMsg(_('You should automatically be forwarded to the entry of the purchase order line items page') . '. ' . _('If this does not happen') . ' (' . _('if the browser does not support META Refresh') . ') ' . '<a href="' . $RootPath . '/PO_Items.php?identifier=' . $identifier . '">' . _('click here') . '</a> ' . _('to continue'), 'info');
include ('includes/footer.php');
exit;
} // end if reprint not allowed
} //isset($_POST['EnterLines']) OR isset($_POST['AllowRePrint'])
/* end of if isset _POST'EnterLines' */
echo '<span style="float:left"><a href="' . $RootPath . '/PO_SelectOSPurchOrder.php?identifier=' . $identifier . '">' . _('Back to Purchase Orders') . '</a></span>';
/*The page can be called with ModifyOrderNumber=x where x is a purchase
* order number. The page then looks up the details of order x and allows
* these details to be modified */
if (isset($_GET['ModifyOrderNumber'])) {
include ('includes/PO_ReadInOrder.inc');
}
if (!isset($_SESSION['PO' . $identifier])) {
/* It must be a new order being created
* $_SESSION['PO'.$identifier] would be set up from the order modification
* code above if a modification to an existing order. Also
* $ExistingOrder would be set to 1. The delivery check screen
* is where the details of the order are either updated or
* inserted depending on the value of ExistingOrder
* */
$_SESSION['ExistingOrder'] = 0;
$_SESSION['PO' . $identifier] = new PurchOrder;
$_SESSION['PO' . $identifier]->AllowPrintPO = 1;
/*Of course cos the order aint even started !!*/
$_SESSION['PO' . $identifier]->GLLink = $_SESSION['CompanyRecord']['gllink_stock'];
if ($_SESSION['PO' . $identifier]->SupplierID == '' or !isset($_SESSION['PO' . $identifier]->SupplierID)) {
/* a session variable will have to maintain if a supplier
* has been selected for the order or not the session
* variable supplierID holds the supplier code already
* as determined from user id /password entry */
$_SESSION['RequireSupplierSelection'] = 1;
} else {
$_SESSION['RequireSupplierSelection'] = 0;
}
} //end if initiating a new PO
if (isset($_POST['ChangeSupplier'])) {
if ($_SESSION['PO' . $identifier]->Status == 'Pending' and $_SESSION['UserID'] == $_SESSION['PO' . $identifier]->Initiator) {
if ($_SESSION['PO' . $identifier]->Any_Already_Received() == 0) {
$_SESSION['RequireSupplierSelection'] = 1;
$_SESSION['PO' . $identifier]->Status = 'Pending';
$_SESSION['PO' . $identifier]->StatusComments == date($_SESSION['DefaultDateFormat']) . ' - ' . _('Supplier changed by') . ' <a href="mailto:' . $_SESSION['UserEmail'] . '">' . $_SESSION['UserID'] . '</a> - ' . $_POST['StatusComments'] . '<br />' . html_entity_decode($_POST['StatusCommentsComplete'], ENT_QUOTES, 'UTF-8');
} else {
echo '<br /><br />';
prnMsg(_('Cannot modify the supplier of the order once some of the order has been received'), 'warn');
}
}
} //user hit ChangeSupplier
if (isset($_POST['SearchSuppliers'])) {
if (mb_strlen($_POST['Keywords']) > 0 and mb_strlen($_SESSION['PO' . $identifier]->SupplierID) > 0) {
prnMsg(_('Supplier name keywords have been used in preference to the supplier code extract entered'), 'warn');
}
if (mb_strlen($_POST['Keywords']) > 0) {
//insert wildcard characters in spaces
$SearchString = '%' . str_replace(' ', '%', $_POST['Keywords']) . '%';
$SQL = "SELECT suppliers.supplierid,
suppliers.suppname,
suppliers.address1,
suppliers.address2,
suppliers.address3,
suppliers.address4,
suppliers.address5,
suppliers.address6,
suppliers.currcode
FROM suppliers
WHERE suppliers.suppname " . LIKE . " '" . $SearchString . "'
ORDER BY suppliers.suppname";
} elseif (mb_strlen($_POST['SuppCode']) > 0) {
$SQL = "SELECT suppliers.supplierid,
suppliers.suppname,
suppliers.address1,
suppliers.address2,
suppliers.address3,
suppliers.address4,
suppliers.address5,
suppliers.address6,
suppliers.currcode
FROM suppliers
WHERE suppliers.supplierid " . LIKE . " '%" . $_POST['SuppCode'] . "%'
ORDER BY suppliers.supplierid";
} else {
$SQL = "SELECT suppliers.supplierid,
suppliers.suppname,
suppliers.address1,
suppliers.address2,
suppliers.address3,
suppliers.address4,
suppliers.address5,
suppliers.address6,
suppliers.currcode
FROM suppliers
ORDER BY suppliers.supplierid";
}
$ErrMsg = _('The searched supplier records requested cannot be retrieved because');
$Result_SuppSelect = DB_query($SQL, $ErrMsg);
$SuppliersReturned = DB_num_rows($Result_SuppSelect);
if (DB_num_rows($Result_SuppSelect) == 1) {
$MyRow = DB_fetch_array($Result_SuppSelect);
$_POST['Select'] = $MyRow['supplierid'];
} elseif (DB_num_rows($Result_SuppSelect) == 0) {
prnMsg(_('No supplier records contain the selected text') . ' - ' . _('please alter your search criteria and try again'), 'info');
}
} /*end of if search for supplier codes/names */
if ((!isset($_POST['SearchSuppliers']) or $_POST['SearchSuppliers'] == '') and (isset($_SESSION['PO' . $identifier]->SupplierID) and $_SESSION['PO' . $identifier]->SupplierID != '')) {
/* The session variables are set but the form variables could have been lost
need to restore the form variables from the session */
$_POST['SupplierID'] = $_SESSION['PO' . $identifier]->SupplierID;
$_POST['SupplierName'] = $_SESSION['PO' . $identifier]->SupplierName;
$_POST['CurrCode'] = $_SESSION['PO' . $identifier]->CurrCode;
$_POST['ExRate'] = $_SESSION['PO' . $identifier]->ExRate;
$_POST['PaymentTerms'] = $_SESSION['PO' . $identifier]->PaymentTerms;
$_POST['DelAdd1'] = $_SESSION['PO' . $identifier]->DelAdd1;
$_POST['DelAdd2'] = $_SESSION['PO' . $identifier]->DelAdd2;
$_POST['DelAdd3'] = $_SESSION['PO' . $identifier]->DelAdd3;
$_POST['DelAdd4'] = $_SESSION['PO' . $identifier]->DelAdd4;
$_POST['DelAdd5'] = $_SESSION['PO' . $identifier]->DelAdd5;
$_POST['DelAdd6'] = $_SESSION['PO' . $identifier]->DelAdd6;
$_POST['SuppDelAdd1'] = $_SESSION['PO' . $identifier]->SuppDelAdd1;
$_POST['SuppDelAdd2'] = $_SESSION['PO' . $identifier]->SuppDelAdd2;
$_POST['SuppDelAdd3'] = $_SESSION['PO' . $identifier]->SuppDelAdd3;
$_POST['SuppDelAdd4'] = $_SESSION['PO' . $identifier]->SuppDelAdd4;
$_POST['SuppDelAdd5'] = $_SESSION['PO' . $identifier]->SuppDelAdd5;
$_POST['SuppDelAdd6'] = $_SESSION['PO' . $identifier]->SuppDelAdd6;
if (!isset($_POST['DeliveryDate'])) {
$_POST['DeliveryDate'] = $_SESSION['PO' . $identifier]->DeliveryDate;
}
}
if (isset($_POST['Select'])) {
/* will only be true if page called from supplier selection form or item purchasing data order link
* or set because only one supplier record returned from a search
*/
$SQL = "SELECT suppliers.suppname,
suppliers.currcode,
currencies.rate,
currencies.decimalplaces,
suppliers.paymentterms,
suppliers.address1,
suppliers.address2,
suppliers.address3,
suppliers.address4,
suppliers.address5,
suppliers.address6,
suppliers.telephone,
suppliers.port,
suppliers.defaultshipper
FROM suppliers INNER JOIN currencies
ON suppliers.currcode=currencies.currabrev
WHERE supplierid='" . $_POST['Select'] . "'";
$ErrMsg = _('The supplier record of the supplier selected') . ': ' . $_POST['Select'] . ' ' . _('cannot be retrieved because');
$DbgMsg = _('The SQL used to retrieve the supplier details and failed was');
$Result = DB_query($SQL, $ErrMsg, $DbgMsg);
$MyRow = DB_fetch_array($Result);
// added for suppliers lookup fields
$AuthSql = "SELECT cancreate
FROM purchorderauth
WHERE userid='" . $_SESSION['UserID'] . "'
AND currabrev='" . $MyRow['currcode'] . "'";
$AuthResult = DB_query($AuthSql);
if (($AuthRow = DB_fetch_array($AuthResult) and $AuthRow['cancreate'] == 0)) {
$_POST['SupplierName'] = $MyRow['suppname'];
$_POST['CurrCode'] = $MyRow['currcode'];
$_POST['CurrDecimalPlaces'] = $MyRow['decimalplaces'];
$_POST['ExRate'] = $MyRow['rate'];
$_POST['PaymentTerms'] = $MyRow['paymentterms'];
$_POST['SuppDelAdd1'] = $MyRow['address1'];
$_POST['SuppDelAdd2'] = $MyRow['address2'];
$_POST['SuppDelAdd3'] = $MyRow['address3'];
$_POST['SuppDelAdd4'] = $MyRow['address4'];
$_POST['SuppDelAdd5'] = $MyRow['address5'];
$_POST['SuppDelAdd6'] = $MyRow['address6'];
$_POST['SuppTel'] = $MyRow['telephone'];
$_POST['Port'] = $MyRow['port'];
$_POST['DeliveryBy'] = $MyRow['defaultshipper'];
$_SESSION['PO' . $identifier]->SupplierID = $_POST['Select'];
$_SESSION['RequireSupplierSelection'] = 0;
$_SESSION['PO' . $identifier]->SupplierName = $_POST['SupplierName'];
$_SESSION['PO' . $identifier]->CurrCode = $_POST['CurrCode'];
$_SESSION['PO' . $identifier]->CurrDecimalPlaces = $_POST['CurrDecimalPlaces'];
$_SESSION['PO' . $identifier]->ExRate = $_POST['ExRate'];
$_SESSION['PO' . $identifier]->PaymentTerms = $_POST['PaymentTerms'];
$_SESSION['PO' . $identifier]->SuppDelAdd1 = $_POST['SuppDelAdd1'];
$_SESSION['PO' . $identifier]->SuppDelAdd2 = $_POST['SuppDelAdd2'];
$_SESSION['PO' . $identifier]->SuppDelAdd3 = $_POST['SuppDelAdd3'];
$_SESSION['PO' . $identifier]->SuppDelAdd4 = $_POST['SuppDelAdd4'];
$_SESSION['PO' . $identifier]->SuppDelAdd5 = $_POST['SuppDelAdd5'];
$_SESSION['PO' . $identifier]->SuppDelAdd6 = $_POST['SuppDelAdd6'];
$_SESSION['PO' . $identifier]->SuppTel = $_POST['SuppTel'];
$_SESSION['PO' . $identifier]->Port = $_POST['Port'];
$_SESSION['PO' . $Identifier]->DeliveryBy = $_POST['DeliveryBy'];
} else {
prnMsg(_('You do not have the authority to raise Purchase Orders for') . ' ' . $MyRow['suppname'] . '. ' . _('Please Consult your system administrator for more information.') . '<br />' . _('You can setup authorisations') . ' ' . '<a href="PO_AuthorisationLevels.php">' . _('here') . '</a>', 'warn');
include ('includes/footer.php');
exit;
}
// end of added for suppliers lookup fields
} /* isset($_POST['Select']) will only be true if page called from supplier selection form or item purchasing data order link
* or set because only one supplier record returned from a search
*/
else {
$_POST['Select'] = $_SESSION['PO' . $identifier]->SupplierID;
$SQL = "SELECT suppliers.suppname,
suppliers.currcode,
currencies.decimalplaces,
suppliers.paymentterms,
suppliers.address1,
suppliers.address2,
suppliers.address3,
suppliers.address4,
suppliers.address5,
suppliers.address6,
suppliers.telephone,
suppliers.port,
suppliers.defaultshipper
FROM suppliers INNER JOIN currencies
ON suppliers.currcode=currencies.currabrev
WHERE supplierid='" . $_POST['Select'] . "'";
$ErrMsg = _('The supplier record of the supplier selected') . ': ' . $_POST['Select'] . ' ' . _('cannot be retrieved because');
$DbgMsg = _('The SQL used to retrieve the supplier details and failed was');
$Result = DB_query($SQL, $ErrMsg, $DbgMsg);
$MyRow = DB_fetch_array($Result);
// added for suppliers lookup fields
if (!isset($_SESSION['PO' . $identifier])) {
$_POST['SupplierName'] = $MyRow['suppname'];
$_POST['CurrCode'] = $MyRow['currcode'];
$_POST['CurrDecimalPlaces'] = $MyRow['decimalplaces'];
$_POST['ExRate'] = $MyRow['rate'];
$_POST['PaymentTerms'] = $MyRow['paymentterms'];
$_POST['SuppDelAdd1'] = $MyRow['address1'];
$_POST['SuppDelAdd2'] = $MyRow['address2'];
$_POST['SuppDelAdd3'] = $MyRow['address3'];
$_POST['SuppDelAdd4'] = $MyRow['address4'];
$_POST['SuppDelAdd5'] = $MyRow['address5'];
$_POST['SuppDelAdd6'] = $MyRow['address6'];
$_POST['SuppTel'] = $MyRow['telephone'];
$_POST['Port'] = $MyRow['port'];
$_POST['DeliveryBy'] = $MyRow['defaultshipper'];
$_SESSION['PO' . $identifier]->SupplierID = $_POST['Select'];
$_SESSION['RequireSupplierSelection'] = 0;
$_SESSION['PO' . $identifier]->SupplierName = $_POST['SupplierName'];
$_SESSION['PO' . $identifier]->CurrCode = $_POST['CurrCode'];
$_SESSION['PO' . $identifier]->CurrDecimalPlaces = $_POST['CurrDecimalPlaces'];
$_SESSION['PO' . $identifier]->ExRate = filter_number_format($_POST['ExRate']);
$_SESSION['PO' . $identifier]->PaymentTerms = $_POST['PaymentTerms'];
$_SESSION['PO' . $identifier]->SuppDelAdd1 = $_POST['SuppDelAdd1'];
$_SESSION['PO' . $identifier]->SuppDelAdd2 = $_POST['SuppDelAdd2'];
$_SESSION['PO' . $identifier]->SuppDelAdd3 = $_POST['SuppDelAdd3'];
$_SESSION['PO' . $identifier]->SuppDelAdd4 = $_POST['SuppDelAdd4'];
$_SESSION['PO' . $identifier]->SuppDelAdd5 = $_POST['SuppDelAdd5'];
$_SESSION['PO' . $identifier]->SuppDelAdd6 = $_POST['SuppDelAdd6'];
$_SESSION['PO' . $identifier]->SuppTel = $_POST['SuppTel'];
$_SESSION['PO' . $identifier]->Port = $_POST['Port'];
$_SESSION['PO' . $Identifier]->DeliveryBy = $_POST['DeliveryBy'];
// end of added for suppliers lookup fields
}
} // NOT isset($_POST['Select']) - not called with supplier selection so update variables
// part of step 1
if ($_SESSION['RequireSupplierSelection'] == 1 or !isset($_SESSION['PO' . $identifier]->SupplierID) or $_SESSION['PO' . $identifier]->SupplierID == '') {
echo '<p class="page_title_text"><img src="' . $RootPath . '/css/' . $Theme . '/images/supplier.png" title="' . _('Purchase Order') . '" alt="" />' . ' ' . _('Purchase Order: Select Supplier') . '</p>';
echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?identifier=' . $identifier . '" method="post" id="choosesupplier">';
echo '<div>';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
if (isset($SuppliersReturned)) {
echo '<input type="hidden" name="SuppliersReturned" value="' . $SuppliersReturned . '" />';
}
echo '<table cellpadding="3" class="selection">
<tr>
<td>' . _('Enter text in the supplier name') . ':</td>
<td><input type="text" name="Keywords" autofocus="autofocus" size="20" maxlength="25" /></td>
<td><h3><b>' . _('OR') . '</b></h3></td>
<td>' . _('Enter text extract in the supplier code') . ':</td>
<td><input type="text" name="SuppCode" size="15" maxlength="18" /></td>
</tr>
</table>
<br />
<div class="centre">
<input type="submit" name="SearchSuppliers" value="' . _('Search Now') . '" />
<input type="submit" value="' . _('Reset') . '" /></div>';
if (isset($Result_SuppSelect)) {
echo '<br /><table cellpadding="3" class="selection">
<thead>
<tr>
<th class="ascending">' . _('Code') . '</th>
<th class="ascending">' . _('Supplier Name') . '</th>
<th class="ascending">' . _('Address') . '</th>
<th class="ascending">' . _('Currency') . '</th>
</tr>
</thead>
<tbody>';
while ($MyRow = DB_fetch_array($Result_SuppSelect)) {
echo '<tr class="striped_row">
<td><input type="submit" style="width:100%" name="Select" value="' . $MyRow['supplierid'] . '" /></td>
<td>' . $MyRow['suppname'] . '</td><td>';
for ($i = 1;$i <= 6;$i++) {
if ($MyRow['address' . $i] != '') {
echo $MyRow['address' . $i] . '<br />';
}
}
echo '</td>
<td>' . $MyRow['currcode'] . '</td>
</tr>';
//end of page full new headings if
} //end of while loop
echo '</tbody></table>';
}
//end if results to show
//end if RequireSupplierSelection
} else {
/* everything below here only do if a supplier is selected */
echo '<form id="form1" action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?identifier=' . $identifier . '" method="post">';
echo '<div>';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
echo '<p class="page_title_text">
<img src="' . $RootPath . '/css/' . $Theme . '/images/supplier.png" title="' . _('Purchase Order') . '" alt="" />
' . $_SESSION['PO' . $identifier]->SupplierName . ' - ' . _('All amounts stated in') . '
' . $_SESSION['PO' . $identifier]->CurrCode . '</p>';
if ($_SESSION['ExistingOrder']) {
echo _(' Modify Purchase Order Number') . ' ' . $_SESSION['PO' . $identifier]->OrderNo;
}
if (isset($Purch_Item)) {
/*This is set if the user hits the link from the supplier purchasing info shown on SelectProduct.php */
prnMsg(_('Purchase Item(s) with this code') . ': ' . $Purch_Item, 'info');
echo '<div class="centre">';
echo '<br />
<table class="table_index">
<tr>
<td class="menu_group_item">';
/* the link */
echo '<a href="' . $RootPath . '/PO_Items.php?NewItem=' . $Purch_Item . '&identifier=' . $identifier . '">' . _('Enter Line Item to this purchase order') . '</a>';
echo '</td>
</tr>
</table>
</div>
<br />';
if (isset($_GET['Quantity'])) {
$Qty = $_GET['Quantity'];
} else {
$Qty = 1;
}
$SQL = "SELECT stockmaster.controlled,
stockmaster.serialised,
stockmaster.description,
stockmaster.units ,
stockmaster.decimalplaces,
b.price,
b.suppliersuom,
b.suppliers_partno,
b.conversionfactor,
b.leadtime,
stockcategory.stockact
FROM stockmaster INNER JOIN stockcategory
ON stockmaster.categoryid=stockcategory.categoryid
LEFT JOIN (SELECT purchdata.price,purchdata.leadtime,purchdata.supplierno,purchdata.stockid,purchdata.suppliersuom,purchdata.suppliers_partno,purchdata.conversionfactor,purchdata.effectivefrom FROM purchdata INNER JOIN (SELECT max(a.effectivefrom) as eff,a.supplierno,a.stockid from purchdata a GROUP BY a.stockid,a.supplierno) as c ON purchdata.supplierno=c.supplierno AND purchdata.stockid=c.stockid AND purchdata.effectivefrom=c.eff) as b
ON stockmaster.stockid = b.stockid
AND b.effectivefrom <= '" . Date('Y-m-d') . "'
WHERE stockmaster.stockid='" . $Purch_Item . "'
AND b.supplierno ='" . $_GET['SelectedSupplier'] . "'";
$Result = DB_query($SQL);
$PurchItemRow = DB_fetch_array($Result);
if (!isset($PurchItemRow['conversionfactor'])) {
$PurchItemRow['conversionfactor'] = 1;
}
if (!isset($PurchItemRow['leadtime'])) {
$PurchItemRow['leadtime'] = 1;
}
$_SESSION['PO' . $identifier]->add_to_order(1, $Purch_Item, $PurchItemRow['serialised'], $PurchItemRow['controlled'], $Qty * $PurchItemRow['conversionfactor'], $PurchItemRow['description'], $PurchItemRow['price'] / $PurchItemRow['conversionfactor'], $PurchItemRow['units'], $PurchItemRow['stockact'], $_SESSION['PO' . $identifier]->DeliveryDate, 0, 0, '', 0, 0, '', $PurchItemRow['decimalplaces'], $PurchItemRow['suppliersuom'], $PurchItemRow['conversionfactor'], $PurchItemRow['leadtime'], $PurchItemRow['suppliers_partno']);
echo '<meta http-equiv="refresh" content="0; url=' . $RootPath . '/PO_Items.php?identifier=' . $identifier . '">';
}
/*Set up form for entry of order header stuff */
if (!isset($_POST['LookupDeliveryAddress']) and (!isset($_POST['StkLocation']) or $_POST['StkLocation']) and (isset($_SESSION['PO' . $identifier]->Location) and $_SESSION['PO' . $identifier]->Location != '')) {
/* The session variables are set but the form variables have
* been lost --
* need to restore the form variables from the session */
$_POST['StkLocation'] = $_SESSION['PO' . $identifier]->Location;
$_POST['SupplierContact'] = $_SESSION['PO' . $identifier]->SupplierContact;
$_POST['DelAdd1'] = $_SESSION['PO' . $identifier]->DelAdd1;
$_POST['DelAdd2'] = $_SESSION['PO' . $identifier]->DelAdd2;
$_POST['DelAdd3'] = $_SESSION['PO' . $identifier]->DelAdd3;
$_POST['DelAdd4'] = $_SESSION['PO' . $identifier]->DelAdd4;
$_POST['DelAdd5'] = $_SESSION['PO' . $identifier]->DelAdd5;
$_POST['DelAdd6'] = $_SESSION['PO' . $identifier]->DelAdd6;
$_POST['Initiator'] = $_SESSION['PO' . $identifier]->Initiator;
$_POST['Requisition'] = $_SESSION['PO' . $identifier]->RequisitionNo;
$_POST['Version'] = $_SESSION['PO' . $identifier]->Version;
$_POST['DeliveryDate'] = $_SESSION['PO' . $identifier]->DeliveryDate;
$_POST['Revised'] = $_SESSION['PO' . $identifier]->Revised;
$_POST['ExRate'] = $_SESSION['PO' . $identifier]->ExRate;
$_POST['Comments'] = $_SESSION['PO' . $identifier]->Comments;
$_POST['DeliveryBy'] = $_SESSION['PO' . $identifier]->DeliveryBy;
$_POST['PaymentTerms'] = $_SESSION['PO' . $identifier]->PaymentTerms;
$SQL = "SELECT realname FROM www_users WHERE userid='" . $_POST['Initiator'] . "'";
$Result = DB_query($SQL);
$MyRow = DB_fetch_array($Result);
$_POST['InitiatorName'] = $MyRow['realname'];
}
echo '<br />
<table width="80%">
<tr>
<th><h3>' . _('Order Initiation Details') . '</h3></th>
<th><h3>' . _('Order Status') . '</h3></th>
</tr>
<tr><td style="width:50%">';
//sub table starts
echo '<table class="selection" width="100%">';
echo '<tr>
<td>' . _('PO Date') . ':</td>
<td>';
if ($_SESSION['ExistingOrder'] != 0) {
echo ConvertSQLDate($_SESSION['PO' . $identifier]->Orig_OrderDate);
} else {
/* DefaultDateFormat defined in config.php */
echo Date($_SESSION['DefaultDateFormat']);
}
echo '</td></tr>';
if (isset($_GET['ModifyOrderNumber']) and $_GET['ModifyOrderNumber'] != '') {
$_SESSION['PO' . $identifier]->Version+= 1;
$_POST['Version'] = $_SESSION['PO' . $identifier]->Version;
} elseif (isset($_SESSION['PO' . $identifier]->Version) and $_SESSION['PO' . $identifier]->Version != '') {
$_POST['Version'] = $_SESSION['PO' . $identifier]->Version;
} else {
$_POST['Version'] = '1';
}
if (!isset($_POST['DeliveryDate'])) {
$_POST['DeliveryDate'] = date($_SESSION['DefaultDateFormat']);
}
echo '<tr>
<td>' . _('Version') . ' #' . ':</td>
<td><input type="hidden" name="Version" size="16" maxlength="15" value="' . $_POST['Version'] . '" />' . $_POST['Version'] . '</td>
</tr>
<tr>
<td>' . _('Revised') . ':</td>
<td><input type="hidden" name="Revised" size="11" maxlength="15" value="' . date($_SESSION['DefaultDateFormat']) . '" />' . date($_SESSION['DefaultDateFormat']) . '</td>
</tr>
<tr>
<td>' . _('Delivery Date') . ':</td>
<td><input type="text" required="required" autofocus="autofocus" class="date" name="DeliveryDate" size="11" value="' . $_POST['DeliveryDate'] . '" /></td>
</tr>';
if (!isset($_POST['Initiator'])) {
$_POST['Initiator'] = $_SESSION['UserID'];
$_POST['InitiatorName'] = $_SESSION['UsersRealName'];
$_POST['Requisition'] = '';
}
if (!isset($_POST['InitiatorName'])) {
$_POST['InitiatorName'] = $_SESSION['UsersRealName'];
}
echo '<tr>
<td>' . _('Initiated By') . ':</td>
<td><input type="hidden" name="Initiator" size="11" maxlength="10" value="' . $_POST['Initiator'] . '" />' . $_POST['InitiatorName'] . '</td>
</tr>
<tr>
<td>' . _('Requisition Ref') . ':</td>
<td><input type="text" name="Requisition" size="16" maxlength="15" title="' . _('Enter our purchase requisition reference if needed') . '" value="' . $_POST['Requisition'] . '" /></td>
</tr>
<tr>
<td>' . _('Date Printed') . ':</td>
<td>';
if (isset($_SESSION['PO' . $identifier]->DatePurchaseOrderPrinted) and mb_strlen($_SESSION['PO' . $identifier]->DatePurchaseOrderPrinted) > 6) {
echo ConvertSQLDate($_SESSION['PO' . $identifier]->DatePurchaseOrderPrinted);
$Printed = True;
} else {
$Printed = False;
echo _('Not yet printed') . '</td></tr>';
}
if (isset($_POST['AllowRePrint'])) {
$SQL = "UPDATE purchorders SET allowprint=1 WHERE orderno='" . $_SESSION['PO' . $identifier]->OrderNo . "'";
$Result = DB_query($SQL);
}
if ($_SESSION['PO' . $identifier]->AllowPrintPO == 0 and empty($_POST['RePrint'])) {
echo '<tr>
<td>' . _('Allow Reprint') . ':</td>
<td><select name="RePrint" onchange="ReloadForm(form1.AllowRePrint)">
<option selected="selected" value="0">' . _('No') . '</option>
<option value="1">' . _('Yes') . '</option>
</select></td>';
echo '<td><input type="submit" name="AllowRePrint" value="Update" /></td></tr>';
} elseif ($Printed) {
echo '<tr>
<td colspan="2"><a target="_blank" href="' . $RootPath . '/PO_PDFPurchOrder.php?OrderNo=' . $_SESSION['ExistingOrder'] . '&identifier=' . $identifier . '">' . _('Reprint Now') . '</a></td></tr>';
} //$Printed
echo '</table></td>';
//Set up the next column with a sub-table in it too
echo '<td style="width:50%" valign="top">
<table class="selection" width="100%">';
if ($_SESSION['ExistingOrder'] != 0 and $_SESSION['PO' . $identifier]->Status == 'Printed') {
echo '<tr>
<td><a href="' . $RootPath . '/GoodsReceived.php?PONumber=' . $_SESSION['PO' . $identifier]->OrderNo . '&identifier=' . $identifier . '">' . _('Receive this order') . '</a></td>
</tr>';
}
if ($_SESSION['PO' . $identifier]->Status == '') { //then its a new order
echo '<tr>
<td><input type="hidden" name="Status" value="NewOrder" />' . _('New Purchase Order') . '</td>
</tr>';
} else {
echo '<tr>
<td>' . _('Status') . ' : </td>
<td><select name="Status" onchange="ReloadForm(form1.UpdateStatus)">';
switch ($_SESSION['PO' . $identifier]->Status) {
case 'Pending':
echo '<option selected="selected" value="Pending">' . _('Pending') . '</option>
<option value="Authorised">' . _('Authorised') . '</option>
<option value="Rejected">' . _('Rejected') . '</option>';
break;
case 'Authorised':
echo '<option value="Pending">' . _('Pending') . '</option>
<option selected="selected" value="Authorised">' . _('Authorised') . '</option>
<option value="Cancelled">' . _('Cancelled') . '</option>';
break;
case 'Printed':
echo '<option value="Pending">' . _('Pending') . '</option>
<option selected="selected" value="Printed">' . _('Printed') . '</option>
<option value="Cancelled">' . _('Cancelled') . '</option>
<option value="Completed">' . _('Completed') . '</option>';
break;
case 'Completed':
echo '<option selected="selected" value="Completed">' . _('Completed') . '</option>';
break;
case 'Rejected':
echo '<option selected="selected" value="Rejected">' . _('Rejected') . '</option>
<option value="Pending">' . _('Pending') . '</option>
<option value="Authorised">' . _('Authorised') . '</option>';
break;
case 'Cancelled':
echo '<option selected="selected" value="Cancelled">' . _('Cancelled') . '</option>
<option value="Authorised">' . _('Authorised') . '</option>
<option value="Pending">' . _('Pending') . '</option>';
break;
}
echo '</select></td>
</tr>
<tr>
<td>' . _('Status Comment') . ':</td>
<td><input type="text" name="StatusComments" size="50" /></td>
</tr>
<tr>
<td colspan="2">' . html_entity_decode($_SESSION['PO' . $identifier]->StatusComments, ENT_QUOTES, 'UTF-8') . '</td>
</tr>
<input type="hidden" name="StatusCommentsComplete" value="' . htmlspecialchars($_SESSION['PO' . $identifier]->StatusComments, ENT_QUOTES, 'UTF-8') . '" />
<tr>
<td><input type="submit" name="UpdateStatus" value="' . _('Status Update') . '" /></td>
</tr>';
} //end its not a new order
echo '</table></td>
</tr>
<tr>
<th><h3>' . _('Warehouse Info') . '</h3></th>
<!-- <th><h3>' . _('Delivery To') . '</h3></th> -->
<th><h3>' . _('Supplier Info') . '</h3></th>
</tr>
<tr><td valign="top">';
/*nested table level1 */
echo '<table class="selection" width="100%">
<tr>
<td>' . _('Warehouse') . ':</td>
<td><select required="required" name="StkLocation" onchange="ReloadForm(form1.LookupDeliveryAddress)">';
$SQL = "SELECT locations.loccode,
locationname
FROM locations INNER JOIN locationusers ON locationusers.loccode=locations.loccode AND locationusers.userid='" . $_SESSION['UserID'] . "' AND locationusers.canupd=1";
$LocnResult = DB_query($SQL);
while ($LocnRow = DB_fetch_array($LocnResult)) {
if (isset($_POST['StkLocation']) and ($_POST['StkLocation'] == $LocnRow['loccode']) or (empty($_POST['StkLocation']) and $LocnRow['loccode'] == $_SESSION['UserStockLocation'])) {
echo '<option selected="selected" value="' . $LocnRow['loccode'] . '">' . $LocnRow['locationname'] . '</option>';
} else {
echo '<option value="' . $LocnRow['loccode'] . '">' . $LocnRow['locationname'] . '</option>';
}
}
echo '</select>
<input type="submit" name="LookupDeliveryAddress" value="' . _('Select') . '" /></td>
</tr>';
/* If this is the first time
* the form loaded set up defaults */
if (!isset($_POST['StkLocation']) or $_POST['StkLocation'] == '') {
$_POST['StkLocation'] = $_SESSION['UserStockLocation'];
$SQL = "SELECT deladd1,
deladd2,
deladd3,
deladd4,
deladd5,
deladd6,
tel,
contact
FROM locations
WHERE loccode='" . $_POST['StkLocation'] . "'";
$LocnAddrResult = DB_query($SQL);
if (DB_num_rows($LocnAddrResult) == 1) {
$LocnRow = DB_fetch_array($LocnAddrResult);
$_POST['DelAdd1'] = $LocnRow['deladd1'];
$_POST['DelAdd2'] = $LocnRow['deladd2'];
$_POST['DelAdd3'] = $LocnRow['deladd3'];
$_POST['DelAdd4'] = $LocnRow['deladd4'];
$_POST['DelAdd5'] = $LocnRow['deladd5'];
$_POST['DelAdd6'] = $LocnRow['deladd6'];
$_POST['Tel'] = $LocnRow['tel'];
$_POST['Contact'] = $LocnRow['contact'];
$_SESSION['PO' . $identifier]->Location = $_POST['StkLocation'];
$_SESSION['PO' . $identifier]->DelAdd1 = $_POST['DelAdd1'];
$_SESSION['PO' . $identifier]->DelAdd2 = $_POST['DelAdd2'];
$_SESSION['PO' . $identifier]->DelAdd3 = $_POST['DelAdd3'];
$_SESSION['PO' . $identifier]->DelAdd4 = $_POST['DelAdd4'];
$_SESSION['PO' . $identifier]->DelAdd5 = $_POST['DelAdd5'];
$_SESSION['PO' . $identifier]->DelAdd6 = $_POST['DelAdd6'];
$_SESSION['PO' . $identifier]->Tel = $_POST['Tel'];
$_SESSION['PO' . $identifier]->Contact = $_POST['Contact'];
} //end a location record was returned
else {
/*The default location of the user is crook */
prnMsg(_('The default stock location set up for this user is not a currently defined stock location') . '. ' . _('Your system administrator needs to amend your user record'), 'error');
}
} //end StkLocation was not set
elseif (isset($_POST['LookupDeliveryAddress'])) {
$SQL = "SELECT deladd1,
deladd2,
deladd3,
deladd4,
deladd5,
deladd6,
tel,
contact
FROM locations
WHERE loccode='" . $_POST['StkLocation'] . "'";
$LocnAddrResult = DB_query($SQL);
if (DB_num_rows($LocnAddrResult) == 1) {
$LocnRow = DB_fetch_array($LocnAddrResult);
$_POST['DelAdd1'] = $LocnRow['deladd1'];
$_POST['DelAdd2'] = $LocnRow['deladd2'];
$_POST['DelAdd3'] = $LocnRow['deladd3'];
$_POST['DelAdd4'] = $LocnRow['deladd4'];
$_POST['DelAdd5'] = $LocnRow['deladd5'];
$_POST['DelAdd6'] = $LocnRow['deladd6'];
$_POST['Tel'] = $LocnRow['tel'];
$_POST['Contact'] = $LocnRow['contact'];
$_SESSION['PO' . $identifier]->Location = $_POST['StkLocation'];
$_SESSION['PO' . $identifier]->DelAdd1 = $_POST['DelAdd1'];
$_SESSION['PO' . $identifier]->DelAdd2 = $_POST['DelAdd2'];
$_SESSION['PO' . $identifier]->DelAdd3 = $_POST['DelAdd3'];
$_SESSION['PO' . $identifier]->DelAdd4 = $_POST['DelAdd4'];
$_SESSION['PO' . $identifier]->DelAdd5 = $_POST['DelAdd5'];
$_SESSION['PO' . $identifier]->DelAdd6 = $_POST['DelAdd6'];
$_SESSION['PO' . $identifier]->Tel = $_POST['Tel'];
$_SESSION['PO' . $identifier]->Contact = $_POST['Contact'];
} //There was a location record returned
} //user clicked Lookup Delivery Address
echo '<tr>
<td>' . _('Delivery Contact') . ':</td>
<td><input type="text" name="Contact" size="41" title="' . _('Enter the name of the contact at the delivery address - normally our warehouse person at that warehouse') . '" value="' . $_SESSION['PO' . $identifier]->Contact . '" /></td>
</tr>
<tr>
<td>' . _('Address') . ' 1 :</td>
<td><input type="text" name="DelAdd1" size="41" maxlength="40" value="' . $_POST['DelAdd1'] . '" /></td>
</tr>
<tr>
<td>' . _('Address') . ' 2 :</td>
<td><input type="text" name="DelAdd2" size="41" maxlength="40" value="' . $_POST['DelAdd2'] . '" /></td>
</tr>
<tr>
<td>' . _('Address') . ' 3 :</td>
<td><input type="text" name="DelAdd3" size="41" maxlength="40" value="' . $_POST['DelAdd3'] . '" /></td>
</tr>
<tr>
<td>' . _('Address') . ' 4 :</td>
<td><input type="text" name="DelAdd4" size="41" maxlength="40" value="' . $_POST['DelAdd4'] . '" /></td>
</tr>
<tr>
<td>' . _('Address') . ' 5 :</td>
<td><input type="text" name="DelAdd5" size="21" maxlength="20" value="' . $_POST['DelAdd5'] . '" /></td>
</tr>
<tr>
<td>' . _('Address') . ' 6 :</td>
<td><input type="text" name="DelAdd6" size="16" maxlength="15" value="' . $_POST['DelAdd6'] . '" /></td>
</tr>
<tr>
<td>' . _('Phone') . ':</td>
<td><input type="tel" name="Tel" pattern="[0-9+\-\s()]*" size="31" maxlength="30" value="' . $_SESSION['PO' . $identifier]->Tel . '" /></td>
</tr>
<tr>