forked from timschofield/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpecialOrder.php
758 lines (629 loc) · 30.9 KB
/
SpecialOrder.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
<?php
// SpecialOrder.php
// Allows for a sales order to be created and an indent order to be created on a supplier for a one off item that may never be purchased again. A dummy part is created based on the description and cost details given.
include('includes/DefineSpecialOrderClass.php');
/* Session started in header.php for password checking and authorisation level check */
include('includes/session.php');
if (isset($_POST['ReqDelDate'])){$_POST['ReqDelDate'] = ConvertSQLDate($_POST['ReqDelDate']);};
include('includes/SQL_CommonFunctions.inc');
$ViewTopic = 'SalesOrders';/* ?????????? */
$BookMark = 'SpecialOrder';
$Title = _('Special Order Entry');
include('includes/header.php');
if (empty($_GET['identifier'])) {
/*unique session identifier to ensure that there is no conflict with other supplier tender sessions on the same machine */
$identifier=date('U');
} else {
$identifier=$_GET['identifier'];
}
echo '<p class="page_title_text">
<img src="'.$RootPath.'/css/'.$Theme.'/images/sales.png" title="' . _('Shop Configuration'). '" alt="" />' . $Title. '
</p>';
echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8' ) . '?identifier=' . urlencode($identifier) . '" method="post">';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
if (isset($_GET['NewSpecial']) and $_GET['NewSpecial']=='yes'){
unset($_SESSION['SPL'.$identifier]);
}
if (!isset($_SESSION['SupplierID'])){
echo '<br /><br />';
prnMsg(_('To set up a special') . ', ' . _('the supplier must first be selected from the Select Supplier page'),'info');
echo '<br /><a href="' . $RootPath . '/SelectSupplier.php">' . _('Select the supplier now') . '</a>';
include('includes/footer.php');
exit;
}
if (!isset($_SESSION['CustomerID']) or $_SESSION['CustomerID']==''){
echo '<br />
<br />' . _('To set up a special') . ', ' . _('the customer must first be selected from the Select Customer page') . '
<br />
<a href="' . $RootPath . '/SelectCustomer.php">' . _('Select the customer now') . '</a>';
include('includes/footer.php');
exit;
}
if (isset($_POST['Cancel'])){
unset($_SESSION['SPL'.$identifier]);
}
if (!isset($_SESSION['SPL'.$identifier])){
/* It must be a new special order being created $_SESSION['SPL'.$identifier] would be set up from the order modification code above if a modification to an existing order. */
$_SESSION['SPL'.$identifier] = new SpecialOrder;
}
/*if not already done populate the SPL object with supplier data */
if (!isset($_SESSION['SPL'.$identifier]->SupplierID)){
$SQL = "SELECT suppliers.suppname,
suppliers.currcode,
currencies.rate,
currencies.decimalplaces
FROM suppliers INNER JOIN currencies
ON suppliers.currcode=currencies.currabrev
WHERE supplierid='" . $_SESSION['SupplierID'] . "'";
$ErrMsg = _('The supplier record of the supplier selected') . ": " . $_SESSION['SupplierID'] . ' ' . _('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);
$_SESSION['SPL'.$identifier]->SupplierID = $_SESSION['SupplierID'];
$_SESSION['SPL'.$identifier]->SupplierName = $MyRow['suppname'];
$_SESSION['SPL'.$identifier]->SuppCurrCode = $MyRow['currcode'];
$_SESSION['SPL'.$identifier]->SuppCurrExRate = $MyRow['rate'];
$_SESSION['SPL'.$identifier]->SuppCurrDecimalPlaces = $MyRow['decimalplaces'];
}
if (!isset($_SESSION['SPL'.$identifier]->CustomerID)){
// Now check to ensure this account is not on hold */
$SQL = "SELECT debtorsmaster.name,
holdreasons.dissallowinvoices,
debtorsmaster.currcode,
currencies.rate,
currencies.decimalplaces
FROM debtorsmaster INNER JOIN holdreasons
ON debtorsmaster.holdreason=holdreasons.reasoncode
INNER JOIN currencies
ON debtorsmaster.currcode=currencies.currabrev
WHERE debtorsmaster.debtorno = '" . $_SESSION['CustomerID'] . "'";
$ErrMsg = _('The customer record for') . ' : ' . $_SESSION['CustomerID'] . ' ' . _('cannot be retrieved because');
$DbgMsg = _('The SQL used to retrieve the customer details and failed was');
$Result =DB_query($SQL,$ErrMsg,$DbgMsg);
$MyRow = DB_fetch_array($Result);
if ($MyRow['dissallowinvoices'] != 1){
if ($MyRow['dissallowinvoices']==2){
prnMsg(_('The') . ' ' . $MyRow['name'] . ' ' . _('account is currently flagged as an account that needs to be watched. Please contact the credit control personnel to discuss'),'warn');
}
}
$_SESSION['SPL'.$identifier]->CustomerID = $_SESSION['CustomerID'];
$_SESSION['SPL'.$identifier]->CustomerName = $MyRow['name'];
$_SESSION['SPL'.$identifier]->CustCurrCode = $MyRow['currcode'];
$_SESSION['SPL'.$identifier]->CustCurrExRate = $MyRow['rate'];
$_SESSION['SPL'.$identifier]->CustCurrDecimalPlaces = $MyRow['decimalplaces'];
}
if (isset($_POST['SelectBranch'])){
$SQL = "SELECT brname
FROM custbranch
WHERE debtorno='" . $_SESSION['SPL'.$identifier]->CustomerID . "'
AND branchcode='" . $_POST['SelectBranch'] . "'";
$BranchResult = DB_query($SQL);
$MyRow=DB_fetch_array($BranchResult);
$_SESSION['SPL'.$identifier]->BranchCode = $_POST['SelectBranch'];
$_SESSION['SPL'.$identifier]->BranchName = $MyRow['brname'];
}
echo '<div class="centre">';
echo '</h2></div>';
/*if the branch details and delivery details have not been entered then select them from the list */
if (!isset($_SESSION['SPL'.$identifier]->BranchCode)){
$SQL = "SELECT branchcode,
brname
FROM custbranch
WHERE debtorno='" . $_SESSION['CustomerID'] . "'";
$BranchResult = DB_query($SQL);
if (DB_num_rows($BranchResult)>0) {
echo '<div class="centre">';
echo '<br />
<br />' . _('Select the customer branch to deliver the special to from the list below');
echo '</div>
<br />
<table class="selection">';
echo '<tr>
<th>' ._('Code') . '</th>
<th>' . _('Branch Name') . '</th>
</tr>';
$j = 1;
while ($MyRow=DB_fetch_array($BranchResult)) {
echo '<tr class="striped_row">
<td><input type="submit" name="SelectBranch" value="', $MyRow['branchcode'], '" /></td>
<td>', htmlspecialchars($MyRow['brname'], ENT_QUOTES, 'UTF-8', false), '</td>
</tr>';
//end of page full new headings if
}
//end of while loop
echo '</table>';
echo '</div>
</form>';
include('includes/footer.php');
exit;
} else {
prnMsg( _('There are no branches defined for the customer selected') . '. ' . _('Please select a customer that has branches defined'),'info');
include('includes/footer.php');
exit;
}
}
If(isset($_GET['Delete'])){ /*User hit the delete link on a line */
$_SESSION['SPL'.$identifier]->remove_from_order($_GET['Delete']);
}
If(isset($_POST['EnterLine'])){
/*Add the header info to the session variable in any event */
if (mb_strlen($_POST['QuotationRef'])<3){
prnMsg(_('The reference for this order is less than 3 characters') . ' - ' . _('a reference more than 3 characters is required before the order can be added'),'warn');
}
if ($_POST['Initiator']==''){
prnMsg( _('The person entering this order must be specified in the initiator field') . ' - ' . _('a blank initiator is not allowed'),'warn');
}
$AllowAdd = True; /*always assume the best */
/*THEN CHECK FOR THE WORST */
if (!is_numeric(filter_number_format($_POST['Qty']))){
$AllowAdd = False;
prnMsg( _('Cannot Enter this order line') . '<br />' . _('The quantity of the order item must be numeric'),'warn');
}
if (filter_number_format($_POST['Qty'])<0){
$AllowAdd = False;
prnMsg( _('Cannot Enter this order line') . '<br />' . _('The quantity of the ordered item entered must be a positive amount'),'warn');
}
if (!is_numeric(filter_number_format($_POST['Price']))){
$AllowAdd = False;
prnMsg( _('Cannot Enter this order line') . '<br />' . _('The price entered must be numeric'),'warn');
}
if (!is_numeric(filter_number_format($_POST['Cost']))){
$AllowAdd = False;
prnMsg( _('Cannot Enter this order line') . '<br />' . _('The cost entered must be numeric'),'warn');
}
if (((filter_number_format($_POST['Price'])/$_SESSION['SPL'.$identifier]->CustCurrExRate)-(filter_number_format($_POST['Cost'])/$_SESSION['SPL'.$identifier]->SuppCurrExRate))<0){
$AllowAdd = False;
prnMsg( _('Cannot Enter this order line') . '<br />' . _('The sale is at a lower price than the cost'),'warn');
}
if (!Is_Date($_POST['ReqDelDate'])){
$AllowAdd = False;
prnMsg( _('Cannot Enter this order line') . '<br />' . _('The date entered must be in the format') . ' ' . $_SESSION['DefaultDateFormat'],'warn');
}
If ($AllowAdd == True){
$_SESSION['SPL'.$identifier]->add_to_order ($_POST['LineNo'],
filter_number_format($_POST['Qty']),
$_POST['ItemDescription'],
filter_number_format($_POST['Price']),
filter_number_format($_POST['Cost']),
$_POST['StkCat'],
$_POST['ReqDelDate']);
unset($_POST['Price']);
unset($_POST['Cost']);
unset($_POST['ItemDescription']);
unset($_POST['StkCat']);
unset($_POST['ReqDelDate']);
unset($_POST['Qty']);
}
}
if (isset($_POST['StkLocation'])) {
$_SESSION['SPL'.$identifier]->StkLocation = $_POST['StkLocation'];
}
if (isset($_POST['Initiator'])) {
$_SESSION['SPL'.$identifier]->Initiator = $_POST['Initiator'];
}
if (isset($_POST['QuotationRef'])) {
$_SESSION['SPL'.$identifier]->QuotationRef = $_POST['QuotationRef'];
}
if (isset($_POST['Comments'])) {
$_SESSION['SPL'.$identifier]->Comments = $_POST['Comments'];
}
if (isset($_POST['CustRef'])) {
$_SESSION['SPL'.$identifier]->CustRef = $_POST['CustRef'];
}
if (isset($_POST['Commit'])){ /*User wishes to commit the order to the database */
/*First do some validation
Is the delivery information all entered*/
$InputError=0; /*Start off assuming the best */
if ($_SESSION['SPL'.$identifier]->StkLocation==''
or ! isset($_SESSION['SPL'.$identifier]->StkLocation)){
prnMsg( _('The purchase order can not be committed to the database because there is no stock location specified to book any stock items into'),'error');
$InputError=1;
} elseif ($_SESSION['SPL'.$identifier]->LinesOnOrder <=0){
$InputError=1;
prnMsg(_('The purchase order can not be committed to the database because there are no lines entered on this order'),'error');
}elseif (mb_strlen($_POST['QuotationRef'])<3){
$InputError=1;
prnMsg( _('The reference for this order is less than 3 characters') . ' - ' . _('a reference more than 3 characters is required before the order can be added'),'error');
}elseif ($_POST['Initiator']==''){
$InputError=1;
prnMsg( _('The person entering this order must be specified in the initiator field') . ' - ' . _('a blank initiator is not allowed'),'error');
}
if ($InputError!=1){
if (IsEmailAddress($_SESSION['UserEmail'])){
$UserDetails = ' <a href="mailto:' . $_SESSION['UserEmail'] . '">' . $_SESSION['UsersRealName']. '</a>';
} else {
$UserDetails = ' ' . $_SESSION['UsersRealName'] . ' ';
}
if ($_SESSION['AutoAuthorisePO']==1) {
//if the user has authority to authorise the PO then it will automatically be authorised
$AuthSQL ="SELECT authlevel
FROM purchorderauth
WHERE userid='".$_SESSION['UserID']."'
AND currabrev='".$_SESSION['SPL'.$identifier]->SuppCurrCode."'";
$AuthResult=DB_query($AuthSQL);
$AuthRow=DB_fetch_array($AuthResult);
if (DB_num_rows($AuthResult) > 0
and $AuthRow['authlevel'] > $_SESSION['SPL'.$identifier]->Order_Value()) { //user has authority to authrorise as well as create the order
$StatusComment=date($_SESSION['DefaultDateFormat']).' - ' . _('Order Created and Authorised by') . $UserDetails . '<br />';
$_SESSION['SPL'.$identifier]->AllowPrintPO=1;
$_SESSION['SPL'.$identifier]->Status = 'Authorised';
} else { // no authority to authorise this order
if (DB_num_rows($AuthResult) ==0){
$AuthMessage = _('Your authority to approve purchase orders in') . ' ' . $_SESSION['SPL'.$identifier]->SuppCurrCode . ' ' . _('has not yet been set up') . '<br />';
} else {
$AuthMessage = _('You can only authorise up to').' '.$_SESSION['SPL'.$identifier]->SuppCurrCode.' '.$AuthRow['authlevel'] .'.<br />';
}
prnMsg( _('You do not have permission to authorise this purchase order').'.<br />' . _('This order is for').' '. $_SESSION['SPL'.$identifier]->SuppCurrCode . ' '. $_SESSION['SPL'.$identifier]->Order_Value() .'. '. $AuthMessage . _('If you think this is a mistake please contact the systems administrator') . '<br />' . _('The order will be created with a status of pending and will require authorisation'), 'warn');
$StatusComment=date($_SESSION['DefaultDateFormat']).' - ' . _('Order Created by') . $UserDetails;
$_SESSION['SPL'.$identifier]->Status = 'Pending';
}
} else { //auto authorise is set to off
$StatusComment=date($_SESSION['DefaultDateFormat']).' - ' . _('Order Created by') . $UserDetails;
$_SESSION['SPL'.$identifier]->Status = 'Pending';
}
$SQL = "SELECT contact,
deladd1,
deladd2,
deladd3,
deladd4,
deladd5,
deladd6
FROM locations
WHERE loccode='" . $_SESSION['SPL'.$identifier]->StkLocation . "'";
$StkLocAddResult = DB_query($SQL);
$StkLocAddress = DB_fetch_array($StkLocAddResult);
DB_Txn_Begin();
/*Insert to purchase order header record */
$SQL = "INSERT INTO purchorders (supplierno,
comments,
orddate,
rate,
initiator,
requisitionno,
intostocklocation,
deladd1,
deladd2,
deladd3,
deladd4,
deladd5,
deladd6,
contact,
status,
stat_comment,
allowprint,
revised,
deliverydate)
VALUES ('" . $_SESSION['SPL'.$identifier]->SupplierID . "',
'" . $_SESSION['SPL'.$identifier]->Comments . "',
'" . Date('Y-m-d') . "',
'" . $_SESSION['SPL'.$identifier]->SuppCurrExRate . "',
'" . $_SESSION['SPL'.$identifier]->Initiator . "',
'" . $_SESSION['SPL'.$identifier]->QuotationRef . "',
'" . $_SESSION['SPL'.$identifier]->StkLocation . "',
'" . $StkLocAddress['deladd1'] . "',
'" . $StkLocAddress['deladd2'] . "',
'" . $StkLocAddress['deladd3'] . "',
'" . $StkLocAddress['deladd4'] . "',
'" . $StkLocAddress['deladd5'] . "',
'" . $StkLocAddress['deladd6'] . "',
'" . $StkLocAddress['contact'] . "',
'" . $_SESSION['SPL'.$identifier]->Status . "',
'" . htmlspecialchars($StatusComment, ENT_QUOTES,'UTF-8') . "',
'" . $_SESSION['SPL'.$identifier]->AllowPrintPO . "',
'" . Date('Y-m-d') . "',
'" . Date('Y-m-d') . "')";
$ErrMsg = _('The purchase order header record could not be inserted into the database because');
$DbgMsg = _('The SQL statement used to insert the purchase order header record and failed was');
$Result = DB_query($SQL,$ErrMsg,$DbgMsg,true);
$_SESSION['SPL'.$identifier]->PurchOrderNo = GetNextTransNo(18);
/*Insert the purchase order detail records */
foreach ($_SESSION['SPL'.$identifier]->LineItems as $SPLLine) {
/*Set up the part codes required for this order */
$PartCode = "*" . $_SESSION['SPL'.$identifier]->PurchOrderNo . "_" . $SPLLine->LineNo;
$PartAlreadyExists =True; /*assume the worst */
$Counter = 0;
While ($PartAlreadyExists==True) {
$SQL = "SELECT COUNT(*) FROM stockmaster WHERE stockid = '" . $PartCode . "'";
$PartCountResult = DB_query($SQL);
$PartCount = DB_fetch_row($PartCountResult);
if ($PartCount[0]!=0){
$PartAlreadyExists =True;
if (mb_strlen($PartCode)==20){
$PartCode = '*' . mb_strtoupper(mb_substr($_SESSION['SPL'.$identifier]->PurchOrderNo,0,13)) . '_' . $SPLLine->LineNo;
}
$PartCode = $PartCode . $Counter;
$Counter++;
} else {
$PartAlreadyExists =False;
}
}
$_SESSION['SPL'.$identifier]->LineItems[$SPLLine->LineNo]->PartCode = $PartCode;
$SQL = "INSERT INTO stockmaster (stockid,
categoryid,
description,
longdescription,
materialcost)
VALUES ('" . $PartCode . "',
'" . $SPLLine->StkCat . "',
'" . $SPLLine->ItemDescription . "',
'" . $SPLLine->ItemDescription . "',
'" . $SPLLine->Cost . "')";
$ErrMsg = _('The item record for line') . ' ' . $SPLLine->LineNo . ' ' . _('could not be created because');
$DbgMsg = _('The SQL statement used to insert the item and failed was');
$Result =DB_query($SQL,$ErrMsg,$DbgMsg,true);
$SQL = "INSERT INTO locstock (loccode, stockid)
SELECT loccode,'" . $PartCode . "' FROM locations";
$ErrMsg = _('The item stock locations for the special order line') . ' ' . $SPLLine->LineNo . ' ' ._('could not be created because');
$DbgMsg = _('The SQL statement used to insert the location stock records and failed was');
$Result =DB_query($SQL,$ErrMsg,$DbgMsg,true);
/*need to get the stock category GL information */
$SQL = "SELECT stockact FROM stockcategory WHERE categoryid = '" . $SPLLine->StkCat . "'";
$ErrMsg = _('The item stock category information for the special order line') . ' ' . $SPLLine->LineNo . ' ' . _('could not be retrieved because');
$DbgMsg = _('The SQL statement used to get the category information and that failed was');
$Result =DB_query($SQL,$ErrMsg,$DbgMsg,true);
$StkCatGL=DB_fetch_row($Result);
$GLCode = $StkCatGL[0];
$OrderDate = FormatDateForSQL($SPLLine->ReqDelDate);
$SQL = "INSERT INTO purchorderdetails (orderno,
itemcode,
deliverydate,
itemdescription,
glcode,
unitprice,
quantityord)
VALUES ('";
$SQL = $SQL . $_SESSION['SPL'.$identifier]->PurchOrderNo . "',
'" . $PartCode . "',
'" . $OrderDate . "',
'" . $SPLLine->ItemDescription . "',
'" . $GLCode . "',
'" . $SPLLine->Cost . "',
'" . $SPLLine->Quantity . "')";
$ErrMsg = _('One of the purchase order detail records could not be inserted into the database because');
$DbgMsg = _('The SQL statement used to insert the purchase order detail record and failed was');
$Result = DB_query($SQL,$ErrMsg,$DbgMsg,true);
} /* end of the loop round the detail line items on the order */
echo '<br /><br />' . _('Purchase Order') . ' ' . $_SESSION['SPL'.$identifier]->PurchOrderNo . ' ' . _('on') . ' ' . $_SESSION['SPL'.$identifier]->SupplierName . ' ' . _('has been created');
echo '<br /><a href="' . $RootPath . '/PO_PDFPurchOrder.php?OrderNo=' . $_SESSION['SPL'.$identifier]->PurchOrderNo . '">' . _('Print Purchase Order') . '</a>';
/*Now insert the sales order too */
/*First get the customer delivery information */
$SQL = "SELECT salestype,
brname,
braddress1,
braddress2,
braddress3,
braddress4,
braddress5,
braddress6,
defaultshipvia,
email,
phoneno
FROM custbranch INNER JOIN debtorsmaster
ON custbranch.debtorno=debtorsmaster.debtorno
WHERE custbranch.debtorno='" . $_SESSION['SPL'.$identifier]->CustomerID . "'
AND custbranch.branchcode = '" . $_SESSION['SPL'.$identifier]->BranchCode . "'";
$ErrMsg = _('The delivery and sales type for the customer could not be retrieved for this special order') . ' ' . $SPLLine->LineNo . ' ' . _('because');
$DbgMsg = _('The SQL statement used to get the delivery details and that failed was');
$Result =DB_query($SQL,$ErrMsg,$DbgMsg,true);
$BranchDetails=DB_fetch_array($Result);
$SalesOrderNo=GetNextTransNo (30);
$HeaderSQL = "INSERT INTO salesorders (orderno,
debtorno,
branchcode,
customerref,
orddate,
ordertype,
shipvia,
deliverto,
deladd1,
deladd2,
deladd3,
deladd4,
deladd5,
deladd6,
contactphone,
contactemail,
fromstkloc,
deliverydate)
VALUES ('" . $SalesOrderNo."',
'" . $_SESSION['SPL'.$identifier]->CustomerID . "',
'" . $_SESSION['SPL'.$identifier]->BranchCode . "',
'" . $_SESSION['SPL'.$identifier]->CustRef ."',
'" . Date('Y-m-d') . "',
'" . $BranchDetails['salestype'] . "',
'" . $BranchDetails['defaultshipvia'] ."',
'" . $BranchDetails['brname'] . "',
'" . $BranchDetails['braddress1'] . "',
'" . $BranchDetails['braddress2'] . "',
'" . $BranchDetails['braddress3'] . "',
'" . $BranchDetails['braddress4'] . "',
'" . $BranchDetails['braddress5'] . "',
'" . $BranchDetails['braddress6'] . "',
'" . $BranchDetails['phoneno'] . "',
'" . $BranchDetails['email'] . "',
'" . $_SESSION['SPL'.$identifier]->StkLocation ."',
'" . $OrderDate . "')";
$ErrMsg = _('The sales order cannot be added because');
$InsertQryResult = DB_query($HeaderSQL,$ErrMsg, $DbgMsg);
$StartOf_LineItemsSQL = "INSERT INTO salesorderdetails (orderno,
stkcode,
unitprice,
quantity,
orderlineno)
VALUES ('" . $SalesOrderNo . "'";
$ErrMsg = _('There was a problem inserting a line into the sales order because');
foreach ($_SESSION['SPL'.$identifier]->LineItems as $StockItem) {
$LineItemsSQL = $StartOf_LineItemsSQL . ",
'" . $StockItem->PartCode . "',
'". $StockItem->Price . "',
'" . $StockItem->Quantity . "',
'" . $StockItem->LineNo . "')";
$Ins_LineItemResult = DB_query($LineItemsSQL,$ErrMsg);
} /* inserted line items into sales order details */
unset($_SESSION['SPL'.$identifier]);
prnMsg(_('Sales Order Number') . ' ' . $SalesOrderNo . ' ' . _('has been entered') . '. <br />' .
_('Orders created on a cash sales account may need the delivery details for the order to be modified') . '. <br /><br />' .
_('A freight charge may also be applicable'),'success');
if (count($_SESSION['AllowedPageSecurityTokens'])>1){
/* Only allow print of packing slip for internal staff - customer logon's cannot go here */
echo '<p><a href="' . $RootPath . '/PrintCustOrder.php?TransNo=' . $SalesOrderNo . '">' . _('Print packing slip') . ' (' . _('Preprinted stationery') . ')</a></p>';
echo '<p><a href="' . $RootPath . '/PrintCustOrder_generic.php?TransNo=' . $SalesOrderNo . '">' . _('Print packing slip') . ' (' . _('Laser') . ')</a></p>';
}
DB_Txn_Commit();
unset($_SESSION['SPL'.$identifier]); /*Clear the PO data to allow a newy to be input*/
echo '<br /><br /><a href="' . $RootPath . '/SpecialOrder.php">' . _('Enter A New Special Order') . '</a>';
exit;
} /*end if there were no input errors trapped */
} /* end of the code to do transfer the SPL object to the database - user hit the place Order*/
echo '<fieldset>';
/*Show the header information for modification */
if (!isset($_SESSION['SPL'.$identifier]->BranchCode)){
echo '<legend>' . htmlspecialchars(_('Purchase from') . ' ' . $_SESSION['SPL'.$identifier]->SupplierName . ' ' . _('in') . ' ' . $_SESSION['SPL'.$identifier]->SuppCurrCode . ' ' . _('for') . ' ' . $_SESSION['SPL'.$identifier]->CustomerName . ' (' . $_SESSION['SPL'.$identifier]->CustCurrCode . ')', ENT_QUOTES, 'UTF-8', false) . '</legend>';
} else {
echo '<legend>' . htmlspecialchars(_('Purchase from') . ' ' . $_SESSION['SPL'.$identifier]->SupplierName . ' ' . _('in') . ' ' . $_SESSION['SPL'.$identifier]->SuppCurrCode . ' ' . _('for') . ' ' . $_SESSION['SPL'.$identifier]->CustomerName . ' (' . $_SESSION['SPL'.$identifier]->CustCurrCode . ') - ' . _('delivered to') . ' ' . $_SESSION['SPL'.$identifier]->BranchName . ' ' . _('branch'), ENT_QUOTES, 'UTF-8', false) . '</legend>';
}
echo '<field>
<label for="StkLocation">' . _('Receive Purchase Into and Sell From') . ':</label>
<select name="StkLocation">';
$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);
if (!isset($_SESSION['SPL'.$identifier]->StkLocation) or $_SESSION['SPL'.$identifier]->StkLocation==''){ /*If this is the first time the form loaded set up defaults */
$_SESSION['SPL'.$identifier]->StkLocation = $_SESSION['UserStockLocation'];
}
while ($LocnRow=DB_fetch_array($LocnResult)){
if ($_SESSION['SPL'.$identifier]->StkLocation == $LocnRow['loccode']){
echo '<option selected="selected" value="' . $LocnRow['loccode'] . '">' . $LocnRow['locationname'] . '</option>';
} else {
echo '<option value="' . $LocnRow['loccode'] . '">' . $LocnRow['locationname'] . '</option>';
}
}
echo '</select>
</field>';
echo '<field>
<label for="Initiator">' . _('Initiated By') . ':</label>
<input type="text" name="Initiator" size="11" maxlength="10" value="' . $_SESSION['SPL'.$identifier]->Initiator . '" />
</field>
<field>
<label for="QuotationRef">' . _('Special Ref') . ':</label>
<input type="text" name="QuotationRef" size="16" maxlength="15" value="' . $_SESSION['SPL'.$identifier]->QuotationRef . '" />
</field>
<field>
<label for="CustRef">' . _('Customer Ref') . ':</label>
<input type="text" name="CustRef" size="11" maxlength="10" value="' . $_SESSION['SPL'.$identifier]->CustRef . '" />
</field>
<field>
<label for="Comments">' . _('Comments') . ':</label>
<textarea name="Comments" cols="70" rows="2">' . $_SESSION['SPL'.$identifier]->Comments . '</textarea>
</field>
</fieldset>'; /* Rule off the header */
/*Now show the order so far */
if (count($_SESSION['SPL'.$identifier]->LineItems)>0){
echo '<div class="centre"><b>' . _('Special Order Summary') . '</b></div>';
echo '<table class="selection" cellpadding="2" border="1">';
echo '<tr>
<th>' . _('Item Description') . '</th>
<th>' . _('Delivery') . '</th>
<th>' . _('Quantity') . '</th>
<th>' . _('Purchase Cost') . '<br />' . $_SESSION['SPL'.$identifier]->SuppCurrCode . '</th>
<th>' . _('Sell Price') . '<br />' . $_SESSION['SPL'.$identifier]->CustCurrCode . '</th>
<th>' . _('Total Cost') . '<br />' . $_SESSION['SPL'.$identifier]->SuppCurrCode . '</th>
<th>' . _('Total Price') . '<br />' . $_SESSION['SPL'.$identifier]->CustCurrCode . '</th>
<th>' . _('Total Cost') . '<br />' . $_SESSION['CompanyRecord']['currencydefault'] . '</th>
<th>' . _('Total Price') . '<br />' . $_SESSION['CompanyRecord']['currencydefault'] . '</th>
</tr>';
$_SESSION['SPL'.$identifier]->total = 0;
foreach ($_SESSION['SPL'.$identifier]->LineItems as $SPLLine) {
$LineTotal = $SPLLine->Quantity * $SPLLine->Price;
$LineCostTotal = $SPLLine->Quantity * $SPLLine->Cost;
$DisplayLineTotal = locale_number_format($LineTotal,$_SESSION['SPL'.$identifier]->CustCurrDecimalPlaces);
$DisplayLineCostTotal = locale_number_format($LineCostTotal,$_SESSION['SPL'.$identifier]->SuppCurrDecimalPlaces);
$DisplayLineTotalCurr = locale_number_format($LineTotal/$_SESSION['SPL'.$identifier]->CustCurrExRate,$_SESSION['CompanyRecord']['decimalplaces']);
$DisplayLineCostTotalCurr = locale_number_format($LineCostTotal/$_SESSION['SPL'.$identifier]->SuppCurrExRate,$_SESSION['CompanyRecord']['decimalplaces']);
$DisplayCost = locale_number_format($SPLLine->Cost,$_SESSION['SPL'.$identifier]->SuppCurrDecimalPlaces);
$DisplayPrice = locale_number_format($SPLLine->Price,$_SESSION['SPL'.$identifier]->CustCurrDecimalPlaces);
$DisplayQuantity = locale_number_format($SPLLine->Quantity,'Variable');
echo '<tr class="striped_row">
<td>' . $SPLLine->ItemDescription . '</td>
<td>' . $SPLLine->ReqDelDate . '</td>
<td class="number">' . $DisplayQuantity . '</td>
<td class="number">' . $DisplayCost . '</td>
<td class="number">' . $DisplayPrice . '</td>
<td class="number">' . $DisplayLineCostTotal . '</td>
<td class="number">' . $DisplayLineTotal . '</td>
<td class="number">' . $DisplayLineCostTotalCurr . '</td>
<td class="number">' . $DisplayLineTotalCurr . '</td>
<td><a href="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?identifier=' . $identifier . '&Delete=' . $SPLLine->LineNo . '">' . _('Delete') . '</a></td>
</tr>';
$_SESSION['SPL'.$identifier]->total += ($LineTotal/$_SESSION['SPL'.$identifier]->CustCurrExRate);
}
$DisplayTotal = locale_number_format($_SESSION['SPL'.$identifier]->total,$_SESSION['SPL'.$identifier]->CustCurrDecimalPlaces);
echo '<tr>',
/* '<td colspan="8" class="number">' . _('TOTAL Excl Tax') . '</td>',*/
'<td class="number" colspan="8">', _('Total Excluding Tax'), '</td>',
'<td class="number"><b>', $DisplayTotal, '</b></td>
</tr>
</table>';
}
/*Set up the form to enter new special items into */
echo '<input type="hidden" name="LineNo" value="' . ($_SESSION['SPL'.$identifier]->LinesOnOrder + 1) .'" />';
if (!isset($_POST['ItemDescription'])) {
$_POST['ItemDescription']='';
}
echo '<fieldset>
<legend>', _('Order Details'), '</legend>';
echo '<field>
<label for="ItemDescription">' . _('Ordered item Description') . ':</label>
<input type="text" name="ItemDescription" size="40" maxlength="40" value="' . $_POST['ItemDescription'] . '" />
</field>';
echo '<field>
<label for="StkCat">' . _('Category') . ':</label>
<select name="StkCat">';
$SQL = "SELECT categoryid, categorydescription FROM stockcategory";
$ErrMsg = _('The stock categories could not be retrieved because');
$DbgMsg = _('The SQL used to retrieve stock categories and failed was');
$Result = DB_query($SQL, $ErrMsg, $DbgMsg);
while ($MyRow=DB_fetch_array($Result)){
if (isset($_POST['StkCat']) and $MyRow['categoryid']==$_POST['StkCat']){
echo '<option selected="selected" value="' . $MyRow['categoryid'] . '">' . $MyRow['categorydescription'] . '</option>';
} else {
echo '<option value="' . $MyRow['categoryid'] . '">' . $MyRow['categorydescription'] . '</option>';
}
}
echo '</select>
</field>';
/*default the order quantity to 1 unit */
$_POST['Qty'] = 1;
echo '<field>
<label for="Qty">' . _('Order Quantity') . ':</label>
<input type="text" class="number" size="7" maxlength="6" name="Qty" value="' . locale_number_format($_POST['Qty'],'Variable') . '" />
</field>';
if (!isset($_POST['Cost'])) {
$_POST['Cost']=0;
}
echo '<field>
<label for="Cost">' . _('Unit Cost') . ':</label>
<input type="text" class="number" size="15" maxlength="14" name="Cost" value="' . locale_number_format($_POST['Cost'],$_SESSION['SPL'.$identifier]->SuppCurrDecimalPlaces) . '" />
</field>';
if (!isset($_POST['Price'])) {
$_POST['Price']=0;
}
echo '<field>
<label for="Price">' . _('Unit Price') . ':</label>
<input type="text" class="number" size="15" maxlength="14" name="Price" value="' . locale_number_format($_POST['Price'],$_SESSION['SPL'.$identifier]->CustCurrDecimalPlaces) . '" />
</field>';
/*Default the required delivery date to tomorrow as a starting point */
$_POST['ReqDelDate'] = Date($_SESSION['DefaultDateFormat'],Mktime(0,0,0,Date('m'),Date('d')+1,Date('y')));
echo '<field>
<label for="ReqDelDate">' . _('Required Delivery Date') . ':</label>
<input type="date" size="11" maxlength="10" name="ReqDelDate" value="' . FormatDateForSQL($_POST['ReqDelDate']) . '" />
</field>';
echo '</fieldset>'; /* end of main table */
echo '<div class="centre">
<input type="submit" name="EnterLine" value="' . _('Add Item to Order') . '" />
<input type="reset" name="Cancel" value="' . _('Start Again') . '" />
<input type="submit" name="Commit" value="' . _('Process This Order') . '" />
</div>
</form>';
include('includes/footer.php');
?>