forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Customers.php
1196 lines (1092 loc) · 43.3 KB
/
Customers.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
include('includes/session.php');
include('includes/CurrenciesArray.php'); // To get the currency name from the currency code.
if (isset($_POST['Edit']) or isset($_GET['Edit']) or isset($_GET['DebtorNo'])) {
$ViewTopic = 'AccountsReceivable';
$BookMark = 'AmendCustomer';
} else {
$ViewTopic = 'AccountsReceivable';
$BookMark = 'NewCustomer';
}
$Title = _('Customer Maintenance');
/* webERP manual links before header.php */
$ViewTopic= 'AccountsReceivable';
$BookMark = 'NewCustomer';
include('includes/header.php');
include('includes/SQL_CommonFunctions.inc');
include('includes/CountriesArray.php');
echo '<p class="page_title_text">
<img src="'.$RootPath.'/css/'.$Theme.'/images/customer.png" title="' . _('Customer') .
'" alt="" />' . ' ' . _('Customer Maintenance') . '
</p>';
if (isset($Errors)) {
unset($Errors);
}
$Errors = array();
if (isset($_POST['submit'])) {
//initialise no input errors assumed initially before we test
$InputError = 0;
$i=1;
/* 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
$_POST['DebtorNo'] = mb_strtoupper($_POST['DebtorNo']);
$sql="SELECT COUNT(debtorno) FROM debtorsmaster WHERE debtorno='".$_POST['DebtorNo']."'";
$result=DB_query($sql);
$myrow=DB_fetch_row($result);
if ($myrow[0]>0 AND isset($_POST['New'])) {
$InputError = 1;
prnMsg( _('The customer number already exists in the database'),'error');
$Errors[$i] = 'DebtorNo';
$i++;
}elseif (mb_strlen($_POST['CustName']) > 40 OR mb_strlen($_POST['CustName'])==0) {
$InputError = 1;
prnMsg( _('The customer name must be entered and be forty characters or less long'),'error');
$Errors[$i] = 'CustName';
$i++;
} elseif ($_SESSION['AutoDebtorNo']==0 AND mb_strlen($_POST['DebtorNo']) ==0) {
$InputError = 1;
prnMsg( _('The debtor code cannot be empty'),'error');
$Errors[$i] = 'DebtorNo';
$i++;
} elseif ($_SESSION['AutoDebtorNo']==0 AND (ContainsIllegalCharacters($_POST['DebtorNo']) OR mb_strpos($_POST['DebtorNo'], ' '))) {
$InputError = 1;
prnMsg( _('The customer code cannot contain any of the following characters') . " . - ' & + \" " . _('or a space'),'error');
$Errors[$i] = 'DebtorNo';
$i++;
} elseif (mb_strlen($_POST['Address1']) >40) {
$InputError = 1;
prnMsg( _('The Line 1 of the address must be forty characters or less long'),'error');
$Errors[$i] = 'Address1';
$i++;
} elseif (mb_strlen($_POST['Address2']) >40) {
$InputError = 1;
prnMsg( _('The Line 2 of the address must be forty characters or less long'),'error');
$Errors[$i] = 'Address2';
$i++;
} elseif (mb_strlen($_POST['Address3']) >40) {
$InputError = 1;
prnMsg( _('The Line 3 of the address must be forty characters or less long'),'error');
$Errors[$i] = 'Address3';
$i++;
} elseif (mb_strlen($_POST['Address4']) >50) {
$InputError = 1;
prnMsg( _('The Line 4 of the address must be fifty characters or less long'),'error');
$Errors[$i] = 'Address4';
$i++;
} elseif (mb_strlen($_POST['Address5']) >20) {
$InputError = 1;
prnMsg( _('The Line 5 of the address must be twenty characters or less long'),'error');
$Errors[$i] = 'Address5';
$i++;
} elseif (!is_numeric(filter_number_format($_POST['CreditLimit']))) {
$InputError = 1;
prnMsg( _('The credit limit must be numeric'),'error');
$Errors[$i] = 'CreditLimit';
$i++;
} elseif (!is_numeric(filter_number_format($_POST['PymtDiscount']))) {
$InputError = 1;
prnMsg( _('The payment discount must be numeric'),'error');
$Errors[$i] = 'PymtDiscount';
$i++;
} elseif (!Is_Date($_POST['ClientSince'])) {
$InputError = 1;
prnMsg( _('The customer since field must be a date in the format') . ' ' . $_SESSION['DefaultDateFormat'],'error');
$Errors[$i] = 'ClientSince';
$i++;
} elseif (!is_numeric(filter_number_format($_POST['Discount']))) {
$InputError = 1;
prnMsg( _('The discount percentage must be numeric'),'error');
$Errors[$i] = 'Discount';
$i++;
} elseif (filter_number_format($_POST['CreditLimit']) <0) {
$InputError = 1;
prnMsg( _('The credit limit must be a positive number'),'error');
$Errors[$i] = 'CreditLimit';
$i++;
} elseif ((filter_number_format($_POST['PymtDiscount'])> 10) OR (filter_number_format($_POST['PymtDiscount']) <0)) {
$InputError = 1;
prnMsg( _('The payment discount is expected to be less than 10% and greater than or equal to 0'),'error');
$Errors[$i] = 'PymtDiscount';
$i++;
} elseif ((filter_number_format($_POST['Discount'])> 100) OR (filter_number_format($_POST['Discount']) <0)) {
$InputError = 1;
prnMsg( _('The discount is expected to be less than 100% and greater than or equal to 0'),'error');
$Errors[$i] = 'Discount';
$i++;
}
if ($InputError !=1){
$SQL_ClientSince = FormatDateForSQL($_POST['ClientSince']);
if (!isset($_POST['New'])) {
$sql = "SELECT count(id)
FROM debtortrans
where debtorno = '" . $_POST['DebtorNo'] . "'";
$result = DB_query($sql);
$myrow = DB_fetch_array($result);
if ($myrow[0] == 0) {
$sql = "UPDATE debtorsmaster SET name='" . $_POST['CustName'] . "',
address1='" . $_POST['Address1'] . "',
address2='" . $_POST['Address2'] . "',
address3='" . $_POST['Address3'] ."',
address4='" . $_POST['Address4'] . "',
address5='" . $_POST['Address5'] . "',
address6='" . $_POST['Address6'] . "',
currcode='" . $_POST['CurrCode'] . "',
clientsince='" . $SQL_ClientSince. "',
holdreason='" . $_POST['HoldReason'] . "',
paymentterms='" . $_POST['PaymentTerms'] . "',
discount='" . filter_number_format($_POST['Discount'])/100 . "',
discountcode='" . $_POST['DiscountCode'] . "',
pymtdiscount='" . filter_number_format($_POST['PymtDiscount'])/100 . "',
creditlimit='" . filter_number_format($_POST['CreditLimit']) . "',
salestype = '" . $_POST['SalesType'] . "',
invaddrbranch='" . $_POST['AddrInvBranch'] . "',
taxref='" . $_POST['TaxRef'] . "',
customerpoline='" . $_POST['CustomerPOLine'] . "',
typeid='" . $_POST['typeid'] . "',
language_id='" . $_POST['LanguageID'] . "'
WHERE debtorno = '" . $_POST['DebtorNo'] . "'";
} else {
$CurrSQL = "SELECT currcode
FROM debtorsmaster
where debtorno = '" . $_POST['DebtorNo'] . "'";
$CurrResult = DB_query($CurrSQL);
$CurrRow = DB_fetch_array($CurrResult);
$OldCurrency = $CurrRow[0];
$sql = "UPDATE debtorsmaster SET name='" . $_POST['CustName'] . "',
address1='" . $_POST['Address1'] . "',
address2='" . $_POST['Address2'] . "',
address3='" . $_POST['Address3'] ."',
address4='" . $_POST['Address4'] . "',
address5='" . $_POST['Address5'] . "',
address6='" . $_POST['Address6'] . "',
clientsince='" . $SQL_ClientSince . "',
holdreason='" . $_POST['HoldReason'] . "',
paymentterms='" . $_POST['PaymentTerms'] . "',
discount='" . filter_number_format($_POST['Discount'])/100 . "',
discountcode='" . $_POST['DiscountCode'] . "',
pymtdiscount='" . filter_number_format($_POST['PymtDiscount'])/100 . "',
creditlimit='" . filter_number_format($_POST['CreditLimit']) . "',
salestype = '" . $_POST['SalesType'] . "',
invaddrbranch='" . $_POST['AddrInvBranch'] . "',
taxref='" . $_POST['TaxRef'] . "',
customerpoline='" . $_POST['CustomerPOLine'] . "',
typeid='" . $_POST['typeid'] . "',
language_id='" . $_POST['LanguageID'] . "'
WHERE debtorno = '" . $_POST['DebtorNo'] . "'";
if ($OldCurrency != $_POST['CurrCode']) {
prnMsg( _('The currency code cannot be updated as there are already transactions for this customer'),'info');
}
}
$ErrMsg = _('The customer could not be updated because');
$result = DB_query($sql,$ErrMsg);
prnMsg( _('Customer updated'),'success');
echo '<br />';
} else { //it is a new customer
/* set the DebtorNo if $AutoDebtorNo in config.php has been set to
something greater 0 */
if ($_SESSION['AutoDebtorNo'] > 0) {
/* system assigned, sequential, numeric */
if ($_SESSION['AutoDebtorNo']== 1) {
$_POST['DebtorNo'] = GetNextTransNo(500);
}
}
$sql = "INSERT INTO debtorsmaster (
debtorno,
name,
address1,
address2,
address3,
address4,
address5,
address6,
currcode,
clientsince,
holdreason,
paymentterms,
discount,
discountcode,
pymtdiscount,
creditlimit,
salestype,
invaddrbranch,
taxref,
customerpoline,
typeid,
language_id)
VALUES ('" . $_POST['DebtorNo'] ."',
'" . $_POST['CustName'] ."',
'" . $_POST['Address1'] ."',
'" . $_POST['Address2'] ."',
'" . $_POST['Address3'] . "',
'" . $_POST['Address4'] . "',
'" . $_POST['Address5'] . "',
'" . $_POST['Address6'] . "',
'" . $_POST['CurrCode'] . "',
'" . $SQL_ClientSince . "',
'" . $_POST['HoldReason'] . "',
'" . $_POST['PaymentTerms'] . "',
'" . filter_number_format($_POST['Discount'])/100 . "',
'" . $_POST['DiscountCode'] . "',
'" . filter_number_format($_POST['PymtDiscount'])/100 . "',
'" . filter_number_format($_POST['CreditLimit']) . "',
'" . $_POST['SalesType'] . "',
'" . $_POST['AddrInvBranch'] . "',
'" . $_POST['TaxRef'] . "',
'" . $_POST['CustomerPOLine'] . "',
'" . $_POST['typeid'] . "',
'" . $_POST['LanguageID'] . "')";
$ErrMsg = _('This customer could not be added because');
$result = DB_query($sql,$ErrMsg);
$BranchCode = mb_substr($_POST['DebtorNo'],0,4);
echo '<meta http-equiv="Refresh" content="0; url=' . $RootPath .'/CustomerBranches.php?DebtorNo=' . $_POST['DebtorNo'] . '">';
echo '<div class="centre">' . _('You should automatically be forwarded to the entry of a new Customer Branch page') .
'. ' . _('If this does not happen') .' (' . _('if the browser does not support META Refresh') . ') ' .
'<a href="' . $RootPath . '/CustomerBranches.php?DebtorNo=' . $_POST['DebtorNo'] . '"></a></div>';
include('includes/footer.php');
exit;
}
} else {
prnMsg( _('Validation failed') . '. ' . _('No updates or deletes took place'),'error');
}
} elseif (isset($_POST['delete'])) {
//the link to delete a selected record was clicked instead of the submit button
$CancelDelete = 0;
// PREVENT DELETES IF DEPENDENT RECORDS IN 'DebtorTrans'
$sql= "SELECT COUNT(*) FROM debtortrans WHERE debtorno='" . $_POST['DebtorNo'] . "'";
$result = DB_query($sql);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
$CancelDelete = 1;
prnMsg( _('This customer cannot be deleted because there are transactions that refer to it'),'warn');
echo '<br /> ' . _('There are') . ' ' . $myrow[0] . ' ' . _('transactions against this customer');
} else {
$sql= "SELECT COUNT(*) FROM salesorders WHERE debtorno='" . $_POST['DebtorNo'] . "'";
$result = DB_query($sql);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
$CancelDelete = 1;
prnMsg( _('Cannot delete the customer record because orders have been created against it'),'warn');
echo '<br /> ' . _('There are') . ' ' . $myrow[0] . ' ' . _('orders against this customer');
} else {
$sql= "SELECT COUNT(*) FROM salesanalysis WHERE cust='" . $_POST['DebtorNo'] . "'";
$result = DB_query($sql);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
$CancelDelete = 1;
prnMsg( _('Cannot delete this customer record because sales analysis records exist for it'),'warn');
echo '<br /> ' . _('There are') . ' ' . $myrow[0] . ' ' . _('sales analysis records against this customer');
} else {
// Check if there are any users that refer to this CUSTOMER code
$SQL= "SELECT COUNT(*) FROM www_users WHERE www_users.customerid = '" . $_POST['DebtorNo'] . "'";
$result = DB_query($SQL);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
prnMsg(_('Cannot delete this customer because users exist that refer to it') . '. ' . _('Purge old users first'),'warn');
echo '<br />' . _('There are') . ' ' . $myrow[0] . ' '._('users referring to this Branch/customer');
} else {
// Check if there are any contract that refer to this branch code
$SQL = "SELECT COUNT(*) FROM contracts WHERE contracts.debtorno = '" . $_POST['DebtorNo'] . "'";
$result = DB_query($SQL);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
prnMsg(_('Cannot delete this customer because contracts have been created that refer to it') . '. ' . _('Purge old contracts first'),'warn');
echo '<br />' . _('There are') . ' ' . $myrow[0] . ' '._('contracts referring to this customer');
}
}
}
}
}
if ($CancelDelete==0) { //ie not cancelled the delete as a result of above tests
$SQL="DELETE FROM custbranch WHERE debtorno='" . $_POST['DebtorNo'] . "'";
$result = DB_query($SQL,$ErrMsg);
$sql="DELETE FROM custcontacts WHERE debtorno='" . $_POST['DebtorNo'] . "'";
$result = DB_query($sql);
$sql="DELETE FROM debtorsmaster WHERE debtorno='" . $_POST['DebtorNo'] . "'";
$result = DB_query($sql);
prnMsg( _('Customer') . ' ' . $_POST['DebtorNo'] . ' ' . _('has been deleted - together with all the associated branches and contacts'),'success');
include('includes/footer.php');
unset($_SESSION['CustomerID']);
exit;
} //end if Delete Customer
}
if(isset($_POST['Reset'])){
unset($_POST['CustName']);
unset($_POST['Address1']);
unset($_POST['Address2']);
unset($_POST['Address3']);
unset($_POST['Address4']);
unset($_POST['Address5']);
unset($_POST['Address6']);
unset($_POST['HoldReason']);
unset($_POST['PaymentTerms']);
unset($_POST['Discount']);
unset($_POST['DiscountCode']);
unset($_POST['PymtDiscount']);
unset($_POST['CreditLimit']);
// Leave Sales Type set so as to faciltate fast customer setup
// unset($_POST['SalesType']);
unset($_POST['DebtorNo']);
unset($_POST['InvAddrBranch']);
unset($_POST['TaxRef']);
unset($_POST['CustomerPOLine']);
unset($_POST['LanguageID']);
// Leave Type ID set so as to faciltate fast customer setup
// unset($_POST['typeid']);
}
/*DebtorNo could be set from a post or a get when passed as a parameter to this page */
if (isset($_POST['DebtorNo'])){
$DebtorNo = $_POST['DebtorNo'];
} elseif (isset($_GET['DebtorNo'])){
$DebtorNo = $_GET['DebtorNo'];
}
if (isset($_POST['ID'])){
$ID = $_POST['ID'];
} elseif (isset($_GET['ID'])){
$ID = $_GET['ID'];
} else {
$ID='';
}
if (isset($_POST['Edit'])){
$Edit = $_POST['Edit'];
} elseif (isset($_GET['Edit'])){
$Edit = $_GET['Edit'];
} else {
$Edit='';
}
if (isset($_POST['Add'])){
$Add = $_POST['Add'];
} elseif (isset($_GET['Add'])){
$Add = $_GET['Add'];
}
if(isset($_POST['AddContact']) AND (isset($_POST['AddContact'])!='')){
echo '<meta http-equiv="Refresh" content="0; url=' . $RootPath . '/AddCustomerContacts.php?DebtorNo=' .$DebtorNo.'">';
}
if (!isset($DebtorNo)) {
/*If the page was called without $_POST['DebtorNo'] passed to page then assume a new customer is to be entered show a form with a Debtor Code field other wise the form showing the fields with the existing entries against the customer will show for editing with only a hidden DebtorNo field*/
/* First check that all the necessary items have been setup */
$SetupErrors=0; //Count errors
$sql="SELECT COUNT(typeabbrev)
FROM salestypes";
$result=DB_query($sql);
$myrow=DB_fetch_row($result);
if ($myrow[0]==0) {
prnMsg( _('In order to create a new customer you must first set up at least one sales type/price list') . '<br />' .
_('Click').' ' . '<a target="_blank" href="' . $RootPath . '/SalesTypes.php">' . _('here').' ' . '</a>' . _('to set up your price lists'),'warning') . '<br />';
$SetupErrors += 1;
}
$sql="SELECT COUNT(typeid)
FROM debtortype";
$result=DB_query($sql);
$myrow=DB_fetch_row($result);
if ($myrow[0]==0) {
prnMsg( _('In order to create a new customer you must first set up at least one customer type') . '<br />' .
_('Click').' ' . '<a target="_blank" href="' . $RootPath . '/CustomerTypes.php">' . _('here').' ' . '</a>' . _('to set up your customer types'),'warning');
$SetupErrors += 1;
}
if ($SetupErrors>0) {
echo '<br /><div class="centre"><a href="'.htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') .'" >' . _('Click here to continue') . '</a></div>';
include('includes/footer.php');
exit;
}
echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '">
<div>
<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />
<input type="hidden" name="New" value="Yes" />';
$DataError =0;
echo '<table class="selection" cellspacing="4">
<tr>
<td valign="top">
<table class="selection">';
/* if $AutoDebtorNo in config.php has not been set or if it has been set to a number less than one,
then provide an input box for the DebtorNo to manually assigned */
if ($_SESSION['AutoDebtorNo']==0) {
echo '<tr>
<td>' . _('Customer Code') . ':</td>
<td><input type="text" data-type="no-illegal-chars" tabindex="1" name="DebtorNo" required="required" autofocus="autofocus" title ="'._('Up to 10 characters for the customer code. The following characters are prohibited:') . ' \' " + . & \\ > <" placeholder="'._('alpha-numeric').'" size="11" maxlength="10" /></td></tr>';
}
echo '<tr>
<td>' . _('Customer Name') . ':</td>
<td><input tabindex="2" type="text" name="CustName" required="required" size="42" maxlength="40" /></td>
</tr>
<tr>
<td>' . _('Address Line 1 (Street)') . ':</td>
<td><input tabindex="3" type="text" name="Address1" required="required" size="42" maxlength="40" /></td>
</tr>
<tr>
<td>' . _('Address Line 2 (Street)') . ':</td>
<td><input tabindex="4" type="text" name="Address2" size="42" maxlength="40" /></td>
</tr>
<tr>
<td>' . _('Address Line 3 (Suburb/City)') . ':</td>
<td><input tabindex="5" type="text" name="Address3" size="42" maxlength="40" /></td>
</tr>
<tr>
<td>' . _('Address Line 4 (State/Province)') . ':</td>
<td><input tabindex="6" type="text" name="Address4" size="42" maxlength="40" /></td>
</tr>
<tr>
<td>' . _('Address Line 5 (Postal Code)') . ':</td>
<td><input tabindex="7" type="text" name="Address5" size="22" maxlength="20" /></td>
</tr>';
if (!isset($_POST['Address6'])) {
$_POST['Address6'] = $CountriesArray[$_SESSION['CountryOfOperation']];
}
echo '<tr>
<td>' . _('Country') . ':</td>
<td><select name="Address6">';
foreach ($CountriesArray as $CountryEntry => $CountryName){
if (isset($_POST['Address6']) AND (strtoupper($_POST['Address6']) == strtoupper($CountryName))){
echo '<option selected="selected" value="' . $CountryName . '">' . $CountryName . '</option>';
} else {
echo '<option value="' . $CountryName . '">' . $CountryName . '</option>';
}
}
echo '</select></td>
</tr>';
// Show Sales Type drop down list
$result=DB_query("SELECT typeabbrev, sales_type FROM salestypes ORDER BY sales_type");
if (DB_num_rows($result)==0){
$DataError =1;
echo '<tr>
<td colspan="2">' . prnMsg(_('No sales types/price lists defined'),'error') . '<br /><a href="SalesTypes.php?" target="_parent">' . _('Setup Types') . '</a></td>
</tr>';
} else {
echo '<tr>
<td>' . _('Sales Type') . '/' . _('Price List') . ':</td>
<td><select tabindex="9" name="SalesType" required="required">';
while ($myrow = DB_fetch_array($result)) {
echo '<option value="'. $myrow['typeabbrev'] . '">' . $myrow['sales_type'] . '</option>';
} //end while loopre
DB_data_seek($result,0);
echo '</select></td>
</tr>';
}
// Show Customer Type drop down list
$result=DB_query("SELECT typeid, typename FROM debtortype ORDER BY typename");
if (DB_num_rows($result)==0){
$DataError =1;
echo '<a href="SalesTypes.php?" target="_parent">' . _('Setup Types') . '</a>';
echo '<tr>
<td colspan="2">' . prnMsg(_('No Customer types/price lists defined'),'error') . '</td>
</tr>';
} else {
echo '<tr>
<td>' . _('Customer Type') . ':</td>
<td><select tabindex="9" name="typeid" required="required">';
while ($myrow = DB_fetch_array($result)) {
echo '<option value="'. $myrow['typeid'] . '">' . $myrow['typename'] . '</option>';
} //end while loop
DB_data_seek($result,0);
echo '</select></td>
</tr>';
}
$DateString = Date($_SESSION['DefaultDateFormat']);
echo '<tr>
<td>' . _('Customer Since') . ' (' . $_SESSION['DefaultDateFormat'] . '):</td>
<td><input tabindex="10" type="text" class="date" name="ClientSince" value="' . $DateString . '" size="11" maxlength="10" /></td>
</tr>';
echo '</table></td>
<td><table class="selection">
<tr>
<td>' . _('Discount Percent') . ':</td>
<td><input tabindex="11" type="text" class="number" name="Discount" value="0" size="5" maxlength="4" /></td>
</tr>
<tr>
<td>' . _('Discount Code') . ':</td>
<td><input tabindex="12" type="text" name="DiscountCode" size="3" maxlength="2" /></td>
</tr>
<tr>
<td>' . _('Payment Discount Percent') . ':</td>
<td><input tabindex="13" type="text" class ="number" name="PymtDiscount" value="0" size="5" maxlength="4" /></td>
</tr>
<tr>
<td>' . _('Credit Limit') . ':</td>
<td><input tabindex="14" type="text" class="integer" name="CreditLimit" required="required" value="' . locale_number_format($_SESSION['DefaultCreditLimit'],0) . '" size="16" maxlength="14" /></td>
</tr>
<tr>
<td>' . _('Tax Reference') . ':</td>
<td><input tabindex="15" type="text" name="TaxRef" size="22" maxlength="20" /></td>
</tr>';
$result=DB_query("SELECT terms, termsindicator FROM paymentterms");
if (DB_num_rows($result)==0){
$DataError =1;
echo '<tr><td colspan="2">' . prnMsg(_('There are no payment terms currently defined - go to the setup tab of the main menu and set at least one up first'),'error') . '</td></tr>';
} else {
echo '<tr>
<td>' . _('Payment Terms') . ':</td>
<td><select tabindex="15" name="PaymentTerms" required="required">';
while ($myrow = DB_fetch_array($result)) {
echo '<option value="'. $myrow['termsindicator'] . '">' . $myrow['terms'] . '</option>';
} //end while loop
DB_data_seek($result,0);
echo '</select></td></tr>';
}
echo '<tr>
<td>' . _('Credit Status') . ':</td>
<td><select tabindex="16" name="HoldReason" required="required">';
$result=DB_query("SELECT reasoncode, reasondescription FROM holdreasons");
if (DB_num_rows($result)==0){
$DataError =1;
echo '<tr>
<td colspan="2">' . prnMsg(_('There are no credit statuses currently defined - go to the setup tab of the main menu and set at least one up first'),'error') . '</td>
</tr>';
} else {
while ($myrow = DB_fetch_array($result)) {
echo '<option value="'. $myrow['reasoncode'] . '">' . $myrow['reasondescription'] . '</option>';
} //end while loop
DB_data_seek($result,0);
echo '</select></td></tr>';
}
$result=DB_query("SELECT currency, currabrev FROM currencies");
if (DB_num_rows($result)==0){
$DataError =1;
echo '<tr>
<td colspan="2">' . prnMsg(_('There are no currencies currently defined - go to the setup tab of the main menu and set at least one up first'),'error') . '</td>
</tr>';
} else {
if (!isset($_POST['CurrCode'])){
$CurrResult = DB_query("SELECT currencydefault FROM companies WHERE coycode=1");
$myrow = DB_fetch_row($CurrResult);
$_POST['CurrCode'] = $myrow[0];
}
echo '<tr>
<td>' . _('Customer Currency') . ':</td>
<td><select tabindex="17" name="CurrCode" required="required">';
while ($myrow = DB_fetch_array($result)) {
if ($_POST['CurrCode']==$myrow['currabrev']){
echo '<option selected="selected" value="'. $myrow['currabrev'] . '">' . $myrow['currency'] . '</option>';
} else {
echo '<option value="'. $myrow['currabrev'] . '">' . $myrow['currency'] . '</option>';
}
} //end while loop
DB_data_seek($result,0);
echo '</select></td>
</tr>';
}
echo '<tr>
<td>' . _('Language') . ':</td>
<td><select name="LanguageID" required="required">';
if (!isset($_POST['LanguageID']) OR $_POST['LanguageID']==''){
$_POST['LanguageID']=$_SESSION['Language'];
}
foreach ($LanguagesArray as $LanguageCode => $LanguageName){
if ($_POST['LanguageID'] == $LanguageCode){
echo '<option selected="selected" value="' . $LanguageCode . '">' . $LanguageName['LanguageName'] . '</option>';
} else {
echo '<option value="' . $LanguageCode . '">' . $LanguageName['LanguageName'] . '</option>';
}
}
echo '</select></td>
</tr>';
echo '<tr>
<td>' . _('Customer PO Line on SO') . ':</td>
<td><select tabindex="18" name="CustomerPOLine" required="required">
<option selected="selected" value="0">' . _('No') . '</option>
<option value="1">' . _('Yes') . '</option>
</select>
</td>
</tr>
<tr>
<td>' . _('Invoice Addressing') . ':</td>
<td><select tabindex="19" name="AddrInvBranch" required="required">
<option selected="selected" value="0">' . _('Address to HO') . '</option>
<option value="1">' . _('Address to Branch') . '</option>
</select>
</td>
</tr>
</table></td>
</tr>
</table>';
if ($DataError ==0){
echo '<br />
<div class="centre">
<input tabindex="20" type="submit" name="submit" value="' . _('Add New Customer') . '" /> <input tabindex="21" type="submit" value="' . _('Reset') . '" />
</div>';
}
echo '</div>';
echo '</form>';
} else {
//DebtorNo exists - either passed when calling the form or from the form itself
echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '">';
echo '<div>';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
echo '<table class="selection">
<tr><td valign="top">';
if (!isset($_POST['New'])) {
$sql = "SELECT debtorno,
name,
address1,
address2,
address3,
address4,
address5,
address6,
currcode,
salestype,
clientsince,
holdreason,
paymentterms,
discount,
discountcode,
pymtdiscount,
creditlimit,
invaddrbranch,
taxref,
customerpoline,
typeid,
language_id
FROM debtorsmaster
WHERE debtorno = '" . $DebtorNo . "'";
$ErrMsg = _('The customer details could not be retrieved because');
$result = DB_query($sql,$ErrMsg);
$myrow = DB_fetch_array($result);
/* if $AutoDebtorNo in config.php has not been set or if it has been set to a number less than one,
then display the DebtorNo */
if ($_SESSION['AutoDebtorNo']== 0 ) {
echo '<table class="selection"><tr>
<td>' . _('Customer Code') . ':</td>
<td>' . $DebtorNo. '</td>
</tr></table><br />';
}
$_POST['CustName'] = $myrow['name'];
$_POST['Address1'] = $myrow['address1'];
$_POST['Address2'] = $myrow['address2'];
$_POST['Address3'] = $myrow['address3'];
$_POST['Address4'] = $myrow['address4'];
$_POST['Address5'] = $myrow['address5'];
$_POST['Address6'] = $myrow['address6'];
$_POST['SalesType'] = $myrow['salestype'];
$_POST['CurrCode'] = $myrow['currcode'];
$_POST['ClientSince'] = ConvertSQLDate($myrow['clientsince']);
$_POST['HoldReason'] = $myrow['holdreason'];
$_POST['PaymentTerms'] = $myrow['paymentterms'];
$_POST['Discount'] = locale_number_format($myrow['discount'] * 100,2);
$_POST['DiscountCode'] = $myrow['discountcode'];
$_POST['PymtDiscount'] = locale_number_format($myrow['pymtdiscount'] * 100,2);
$_POST['CreditLimit'] = locale_number_format($myrow['creditlimit'],0);
$_POST['InvAddrBranch'] = $myrow['invaddrbranch'];
$_POST['TaxRef'] = $myrow['taxref'];
$_POST['CustomerPOLine'] = $myrow['customerpoline'];
$_POST['typeid'] = $myrow['typeid'];
$_POST['LanguageID'] = $myrow['language_id'];
echo '<input type="hidden" name="DebtorNo" value="' . $DebtorNo . '" />';
echo '<table class="selection">';
} else {
// its a new customer being added
echo '<input type="hidden" name="New" value="Yes" />';
echo '<table class="selection">';
/* if $AutoDebtorNo in config.php has not been set or if it has been set to a number less than one,
then provide an input box for the DebtorNo to manually assigned */
if ($_SESSION['AutoDebtorNo']== 0 ) {
echo '<tr>
<td>' . _('Customer Code') . ':</td>
<td><input ' . (in_array('DebtorNo',$Errors) ? 'class="inputerror"' : '' ) .' type="text" name="DebtorNo" required="required" data-type="no-illegal-chars" title="' . _('The customer code can be up to 10 alpha-numeric characters long or underscore') . '" value="' . $DebtorNo . '" size="12" maxlength="10" /></td></tr>';
}
}
if (isset($_GET['Modify'])) {
echo '<tr>
<td>' . _('Customer Name') . ':</td>
<td>' . $_POST['CustName'] . '</td>
</tr>
<tr>
<td>' . _('Address Line 1 (Street)') . ':</td>
<td>' . $_POST['Address1'] . '</td>
</tr>
<tr>
<td>' . _('Address Line 2 (Street)') . ':</td>
<td>' . $_POST['Address2'] . '</td>
</tr>
<tr>
<td>' . _('Address Line 3 (Suburb/City)') . ':</td>
<td>' . $_POST['Address3'] . '</td>
</tr>
<tr>
<td>' . _('Address Line 4 (State/Province)') . ':</td>
<td>' . $_POST['Address4'] . '</td>
</tr>
<tr>
<td>' . _('Address Line 5 (Postal Code)') . ':</td>
<td>' . $_POST['Address5'] . '</td>
</tr>
<tr>
<td>' . _('Country') . ':</td>
<td>' . $_POST['Address6'] . '</td>
</tr>';
} else {
echo '<tr>
<td>' . _('Customer Name') . ':</td>
<td><input ' . (in_array('CustName',$Errors) ? 'class="inputerror"' : '' ) .' type="text" name="CustName" required="required" autofocus="autofocus" value="' . $_POST['CustName'] . '" size="42" maxlength="40" /></td>
</tr>
<tr>
<td>' . _('Address Line 1 (Street)') . ':</td>
<td><input ' . (in_array('Address1',$Errors) ? 'class="inputerror"' : '' ) .' type="text" name="Address1" required="required" size="42" maxlength="40" value="' . $_POST['Address1'] . '" /></td>
</tr>
<tr>
<td>' . _('Address Line 2 (Street)') . ':</td>
<td><input ' . (in_array('Address2',$Errors) ? 'class="inputerror"' : '' ) .' type="text" name="Address2" size="42" maxlength="40" value="' . $_POST['Address2'] . '" /></td>
</tr>
<tr>
<td>' . _('Address Line 3 (Suburb/City)') . ':</td>
<td><input ' . (in_array('Address3',$Errors) ? 'class="inputerror"' : '' ) .' type="text" name="Address3" size="42" maxlength="40" value="' . $_POST['Address3'] . '" /></td>
</tr>
<tr>
<td>' . _('Address Line 4 (State/Province)') . ':</td>
<td><input ' . (in_array('Address4',$Errors) ? 'class="inputerror"' : '' ) .' type="text" name="Address4" size="42" maxlength="40" value="' . $_POST['Address4'] . '" /></td>
</tr>
<tr>
<td>' . _('Address Line 5 (Postal Code)') . ':</td>
<td><input ' . (in_array('Address5',$Errors) ? 'class="inputerror"' : '' ) .' type="text" name="Address5" size="42" maxlength="40" value="' . $_POST['Address5'] . '" /></td>
</tr>';
echo '<tr>
<td>' . _('Country') . ':</td>
<td><select name="Address6">';
foreach ($CountriesArray as $CountryEntry => $CountryName){
if (isset($_POST['Address6']) AND (strtoupper($_POST['Address6']) == strtoupper($CountryName))){
echo '<option selected="selected" value="' . $CountryName . '">' . $CountryName . '</option>';
}elseif (!isset($_POST['Address6']) AND $CountryName == "") {
echo '<option selected="selected" value="' . $CountryName . '">' . $CountryName . '</option>';
} else {
echo '<option value="' . $CountryName . '">' . $CountryName . '</option>';
}
}
echo '</select></td>
</tr>';
}
// Select sales types for drop down list
if (isset($_GET['Modify'])) {
$result=DB_query("SELECT sales_type FROM salestypes WHERE typeabbrev='".$_POST['SalesType']."'");
$myrow=DB_fetch_array($result);
echo '<tr>
<td>' . _('Sales Type') . ':</td>
<td>' . $myrow['sales_type'] . '</td></tr>';
} else {
$result=DB_query("SELECT typeabbrev, sales_type FROM salestypes");
echo '<tr>
<td>' . _('Sales Type') . '/' . _('Price List') . ':</td>
<td><select name="SalesType" required="required">';
while ($myrow = DB_fetch_array($result)) {
if ($_POST['SalesType']==$myrow['typeabbrev']){
echo '<option selected="selected" value="' . $myrow['typeabbrev'] . '">' . $myrow['sales_type'] . '</option>';
} else {
echo '<option value="'. $myrow['typeabbrev'] . '">' . $myrow['sales_type'] . '</option>';
}
} //end while loop
DB_data_seek($result,0);
echo '</select></td></tr>';
}
// Select Customer types for drop down list for SELECT/UPDATE
if (isset($_GET['Modify'])) {
$result=DB_query("SELECT typename FROM debtortype WHERE typeid='".$_POST['typeid']."'");
$myrow=DB_fetch_array($result);
echo '<tr>
<td>' . _('Customer Type') . ':</td>
<td>' . $myrow['typename'] . '</td>
</tr>';
} else {
$result=DB_query("SELECT typeid, typename FROM debtortype ORDER BY typename");
echo '<tr>
<td>' . _('Customer Type') . ':</td>
<td><select name="typeid" required="required">';
while ($myrow = DB_fetch_array($result)) {
if ($_POST['typeid']==$myrow['typeid']){
echo '<option selected="selected" value="' . $myrow['typeid'] . '">' . $myrow['typename'] . '</option>';
} else {
echo '<option value="'. $myrow['typeid'] . '">' . $myrow['typename'] . '</option>';
}
} //end while loop
DB_data_seek($result,0);
}
if (isset($_GET['Modify'])) {
echo '</select></td></tr>
<tr><td>' . _('Customer Since') . ' (' . $_SESSION['DefaultDateFormat'] . '):</td>
<td>' . $_POST['ClientSince'] . '</td></tr>';
echo '</table></td>
<td><table class="selection">';
echo '<tr>
<td>' . _('Discount Percent') . ':</td>
<td>' . $_POST['Discount'] . '</td>
</tr>
<tr>
<td>' . _('Discount Code') . ':</td>
<td>' . $_POST['DiscountCode'] . '</td>
</tr>
<tr>
<td>' . _('Payment Discount Percent') . ':</td>
<td>' . $_POST['PymtDiscount'] . '</td>
</tr>
<tr>
<td>' . _('Credit Limit') . ':</td>
<td>' . $_POST['CreditLimit'] . '</td>
</tr>
<tr>
<td>' . _('Tax Reference') . ':</td>
<td>' . $_POST['TaxRef'] . '</td>
</tr>';
} else {
echo '</select></td>
</tr>
<tr>
<td>' . _('Customer Since') . ' (' . $_SESSION['DefaultDateFormat'] . '):</td>
<td><input ' . (in_array('ClientSince',$Errors) ? 'class="inputerror"' : '' ) .' type="text" class="date" name="ClientSince" size="11" maxlength="10" value="' . $_POST['ClientSince'] . '" /></td>
</tr>
</table></td>
<td><table class="selection">';
echo '<tr>
<td>' . _('Discount Percent') . ':</td>
<td><input type="text" name="Discount" class="number" size="5" maxlength="4" value="' . $_POST['Discount'] . '" /></td>
</tr>
<tr>
<td>' . _('Discount Code') . ':</td>
<td><input ' . (in_array('DiscountCode',$Errors) ? 'class="inputerror"' : '' ) .' type="text" name="DiscountCode" size="3" maxlength="2" value="' . $_POST['DiscountCode'] . '" /></td>
</tr>
<tr>
<td>' . _('Payment Discount Percent') . ':</td>
<td><input ' . (in_array('PymtDiscount',$Errors) ? 'class="inputerror"' : '' ) .' type="text" class="number" name="PymtDiscount" size="5" maxlength="4" value="' . $_POST['PymtDiscount'] . '" /></td>
</tr>
<tr>
<td>' . _('Credit Limit') . ':</td>
<td><input ' . (in_array('CreditLimit',$Errors) ? 'class="inputerror"' : '' ) .' type="text" class="integer" name="CreditLimit" required="required" size="16" maxlength="14" value="' . $_POST['CreditLimit'] . '" /></td>
</tr>
<tr>
<td>' . _('Tax Reference') . ':</td>
<td><input type="text" name="TaxRef" size="22" maxlength="20" value="' . $_POST['TaxRef'] . '" /></td>
</tr>';
}
if (isset($_GET['Modify'])) {
$result=DB_query("SELECT terms FROM paymentterms WHERE termsindicator='".$_POST['PaymentTerms']."'");
$myrow=DB_fetch_array($result);
echo '<tr>
<td>' . _('Payment Terms') . ':</td>
<td>' . $myrow['terms'] . '</td>
</tr>';
} else {
$result=DB_query("SELECT terms, termsindicator FROM paymentterms");
echo '<tr>
<td>' . _('Payment Terms') . ':</td>
<td><select name="PaymentTerms" required="required">';
while ($myrow = DB_fetch_array($result)) {
if ($_POST['PaymentTerms']==$myrow['termsindicator']){
echo '<option selected="selected" value="'. $myrow['termsindicator'] . '">' . $myrow['terms'] . '</option>';
} else {
echo '<option value="'. $myrow['termsindicator'] . '">' . $myrow['terms'] . '</option>';
}
} //end while loop
DB_data_seek($result,0);
echo '</select></td>
</tr>';
}
if (isset($_GET['Modify'])) {
$result=DB_query("SELECT reasondescription FROM holdreasons WHERE reasoncode='".$_POST['HoldReason']."'");
$myrow=DB_fetch_array($result);
echo '<tr>
<td>' . _('Credit Status') . ':</td>
<td>' . $myrow['reasondescription'] . '</td>
</tr>';
} else {
$result=DB_query("SELECT reasoncode, reasondescription FROM holdreasons");
echo '<tr>
<td>' . _('Credit Status') . ':</td>
<td><select name="HoldReason" required="required">';
while ($myrow = DB_fetch_array($result)) {
if ($_POST['HoldReason']==$myrow['reasoncode']){
echo '<option selected="selected" value="'. $myrow['reasoncode'] . '">' . $myrow['reasondescription'] . '</option>';
} else {
echo '<option value="'. $myrow['reasoncode'] . '">' . $myrow['reasondescription'] . '</option>';
}
} //end while loop
DB_data_seek($result,0);
echo '</select></td>
</tr>';
}
if (isset($_GET['Modify'])) {
echo '<tr>
<td>' . _('Customer Currency') . ':</td>
<td>' . $CurrencyName[$_POST['CurrCode']] . '</td></tr>';
} else {
$result=DB_query("SELECT currency, currabrev FROM currencies");
echo '<tr>
<td>' . _('Customer Currency') . ':</td>