-
Notifications
You must be signed in to change notification settings - Fork 1
/
Contracts.php
executable file
·950 lines (846 loc) · 41.9 KB
/
Contracts.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
<?php
/* $Id: Contracts.php 3692 2010-08-15 09:22:08Z daintree $ */
include('includes/DefineContractClass.php');
include('includes/CustomerSearch.php');
include('includes/session.inc');
if (isset($_GET['ModifyContractNo'])) {
$title = _('Modify Contract') . ' ' . $_GET['ModifyContractNo'];
} else {
$title = _('Contract Entry');
}
if (isset($_GET['CustomerID'])) {
$_POST['SelectedCustomer']=$_GET['CustomerID'];
}
include('includes/header.inc');
include('includes/SQL_CommonFunctions.inc');
/*If the page is called is called without an identifier being set then
* it must be either a new contract, or the start of a modification of an
* existing contract, 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 (!isset($_GET['identifier'])) {
$identifier=date('U');
} else {
$identifier=$_GET['identifier'];
}
if (isset($_GET['NewContract']) AND isset($_SESSION['Contract'.$identifier])){
unset($_SESSION['Contract'.$identifier]);
$_SESSION['ExistingContract'] = 0;
}
if (isset($_GET['NewContract']) AND isset($_GET['SelectedCustomer'])) {
/*
* initialize a new contract
*/
$_SESSION['ExistingContract']=0;
unset($_SESSION['Contract'.$identifier]->ContractBOM);
unset($_SESSION['Contract'.$identifier]->ContractReqts);
unset($_SESSION['Contract'.$identifier]);
/* initialize new class object */
$_SESSION['Contract'.$identifier] = new Contract;
$_POST['SelectedCustomer'] = $_GET['SelectedCustomer'];
/*The customer is checked for credit and the Contract Object populated
* using the usual logic of when a customer is selected
* */
}
if (isset($_SESSION['Contract'.$identifier]) AND
(isset($_POST['EnterContractBOM'])
OR isset($_POST['EnterContractRequirements']))){
/** Ensure session variables updated */
$_SESSION['Contract'.$identifier]->ContractRef=$_POST['ContractRef'];
$_SESSION['Contract'.$identifier]->ContractDescription=$_POST['ContractDescription'];
$_SESSION['Contract'.$identifier]->CategoryID = $_POST['CategoryID'];
$_SESSION['Contract'.$identifier]->LocCode = $_POST['LocCode'];
$_SESSION['Contract'.$identifier]->RequiredDate = $_POST['RequiredDate'];
$_SESSION['Contract'.$identifier]->Margin = filter_number_input($_POST['Margin']);
$_SESSION['Contract'.$identifier]->CustomerRef = $_POST['CustomerRef'];
$_SESSION['Contract'.$identifier]->ExRate = filter_number_input($_POST['ExRate']);
$_SESSION['Contract'.$identifier]->DefaultWorkCentre = $_POST['DefaultWorkCentre'];
/*User hit the button to enter line items -
then meta refresh to Contract_Items.php*/
$InputError = false;
if(mb_strlen($_SESSION['Contract'.$identifier]->ContractRef)<2){
prnMsg(_('The contract reference must be entered (and be longer than 2 characters) before the requirements of the contract can be setup'),'warn');
$InputError = true;
}
if (isset($_POST['EnterContractBOM']) AND !$InputError){
echo '<meta http-equiv="refresh" content="0; url=' . $rootpath . '/ContractBOM.php?identifier='.$identifier. '" />';
echo '<br />';
prnMsg(_('You should automatically be forwarded to the entry of the Contract line items page') . '. ' .
_('If this does not happen') . ' (' . _('if the browser does not support META Refresh') . ') ' . '<a href="' . $rootpath . '/ContractBOM.php?identifier='.$identifier . '">' . _('click here') . '</a> ' . _('to continue'),'info');
include('includes/footer.inc');
exit;
}
if (isset($_POST['EnterContractRequirements']) AND !$InputError){
echo '<meta http-equiv="refresh" content="0; url=' . $rootpath . '/ContractOtherReqts.php?identifier='.$identifier. '" />';
echo '<br />';
prnMsg(_('You should automatically be forwarded to the entry of the Contract requirements page') . '. ' .
_('If this does not happen') . ' (' . _('if the browser does not support META Refresh') . ') ' .
'<a href="' . $rootpath . '/ContractOtherReqts.php?identifier=' . $identifier . '">' . _('click here') . '</a> ' . _('to continue'),'info');
include('includes/footer.inc');
exit;
}
} /* end of if going to contract BOM or contract requriements */
echo '<a href="'. $rootpath . '/SelectContract.php">'. _('Back to Contract Selection'). '</a><br />';
//attempting to upload the drawing image file
if (isset($_FILES['Drawing']) AND $_FILES['Drawing']['name'] !='' AND $_SESSION['Contract'.$identifier]->ContractRef!='') {
$result = $_FILES['Drawing']['error'];
$UploadTheFile = 'Yes'; //Assume all is well to start off with
$filename = $_SESSION['part_pics_dir'] . '/' . $_SESSION['Contract'.$identifier]->ContractRef . '.jpg';
//But check for the worst
if (mb_strtoupper(mb_substr(trim($_FILES['Drawing']['name']),mb_strlen($_FILES['Drawing']['name'])-3))!='JPG'){
prnMsg(_('Only jpg files are supported - a file extension of .jpg is expected'),'warn');
$UploadTheFile ='No';
} elseif ( $_FILES['Drawing']['size'] > ($_SESSION['MaxImageSize']*1024)) { //File Size Check
prnMsg(_('The file size is over the maximum allowed. The maximum size allowed in KB is') . ' ' . $_SESSION['MaxImageSize'],'warn');
$UploadTheFile ='No';
} elseif ( $_FILES['Drawing']['type'] == 'text/plain' ) { //File Type Check
prnMsg( _('Only graphics files can be uploaded'),'warn');
$UploadTheFile ='No';
} elseif (file_exists($filename)){
prnMsg(_('Attempting to overwrite an existing item image'),'warn');
$result = unlink($filename);
if (!$result){
prnMsg(_('The existing image could not be removed'),'error');
$UploadTheFile ='No';
}
}
if ($UploadTheFile=='Yes'){
$result = move_uploaded_file($_FILES['Drawing']['tmp_name'], $filename);
$message = ($result)?_('File url') . '<a href="' . $filename . '">' . $filename . '</a>' : _('Something is wrong with uploading the file');
}
}
/*The page can be called with ModifyContractRef=x where x is a contract
* reference. The page then looks up the details of contract x and allows
* these details to be modified */
if (isset($_GET['ModifyContractRef'])){
if (isset($_SESSION['Contract'.$identifier])){
unset ($_SESSION['Contract'.$identifier]->ContractBOM);
unset ($_SESSION['Contract'.$identifier]->ContractReqts);
unset ($_SESSION['Contract'.$identifier]);
}
$_SESSION['ExistingContract']=$_GET['ModifyContractRef'];
$_SESSION['RequireCustomerSelection'] = 0;
$_SESSION['Contract'.$identifier] = new Contract;
/*read in all the guff from the selected contract into the contract Class variable */
$ContractRef = $_GET['ModifyContractRef'];
include('includes/Contract_Readin.php');
}// its an existing contract to readin
if (isset($_POST['CancelContract'])) {
/*The cancel button on the header screen - to delete the contract */
$OK_to_delete = true; //assume this in the first instance
if(!isset($_SESSION['ExistingContract']) OR $_SESSION['ExistingContract']!=0) {
/* need to check that not already ordered by the customer - status = 100 */
if($_SESSION['Contract'.$identifier]->Status==2){
$OK_to_delete = false;
prnMsg( _('The contract has already been ordered by the customer the order must also be deleted first before the contract can be deleted'),'warn');
}
}
if ($OK_to_delete==true){
$sql = "DELETE FROM contractbom WHERE contractref='" . $_SESSION['Contract'.$identifier]->ContractRef . "'";
$ErrMsg = _('The contract bill of materials could not be deleted because');
$DelResult=DB_query($sql,$db,$ErrMsg);
$sql = "DELETE FROM contractreqts WHERE contractref='" . $_SESSION['Contract'.$identifier]->ContractRef . "'";
$ErrMsg = _('The contract requirements could not be deleted because');
$DelResult=DB_query($sql,$db,$ErrMsg);
$sql= "DELETE FROM contracts WHERE contractref='" . $_SESSION['Contract'.$identifier]->ContractRef . "'";
$ErrMsg = _('The contract could not be deleted because');
$DelResult=DB_query($sql,$db,$ErrMsg);
if ($_SESSION['Contract'.$identifier]->Status==1){
$sql = "DELETE FROM salesorderdetails WHERE orderno='" . $_SESSION['Contract'.$identifier]->OrderNo . "'";
$ErrMsg = _('The quotation lines for the contract could not be deleted because');
$DelResult=DB_query($sql,$db,$ErrMsg);
$sql = "DELETE FROM salesorders WHERE orderno='" . $_SESSION['Contract'.$identifier]->OrderNo . "'";
$ErrMsg = _('The quotation for the contract could not be deleted because');
$DelResult=DB_query($sql,$db,$ErrMsg);
}
prnMsg( _('Contract').' '.$_SESSION['Contract'.$identifier]->ContractRef.' '._('has been cancelled'), 'success');
unset($_SESSION['ExistingContract']);
unset($_SESSION['Contract'.$identifier]->ContractBOM);
unset($_SESSION['Contract'.$identifier]->ContractReqts);
unset($_SESSION['Contract'.$identifier]);
}
}
if (!isset($_SESSION['Contract'.$identifier])){
/* It must be a new contract being created
* $_SESSION['Contract'.$identifier] would be set up from the order modification
* code above if a modification to an existing contract. Also
* $ExistingContract would be set to the ContractRef
* */
$_SESSION['ExistingContract']= 0;
$_SESSION['Contract'.$identifier] = new Contract;
if ($_SESSION['Contract'.$identifier]->DebtorNo==''
OR !isset($_SESSION['Contract'.$identifier]->DebtorNo)){
/* a session variable will have to maintain if a supplier
* has been selected for the order or not the session
* variable CustomerID holds the supplier code already
* as determined from user id /password entry */
$_SESSION['RequireCustomerSelection'] = 1;
} else {
$_SESSION['RequireCustomerSelection'] = 0;
}
}
if (isset($_POST['CommitContract']) OR isset($_POST['CreateQuotation'])){
/*This is the bit where the contract object is commited to the database after a bit of error checking */
//First update the session['Contract'.$identifier] variable with all inputs from the form
$InputError = False; //assume no errors on input then test for errors
if (mb_strlen($_POST['ContractRef']) < 2){
prnMsg(_('The contract reference is expected to be more than 2 characters long. Please alter the contract reference before proceeding.'),'error');
$InputError = true;
}
if(ContainsIllegalCharacters($_POST['ContractRef'])){
prnMsg(_('The contract reference cannot contain any spaces, slashes, or inverted commas. Please alter the contract reference before proceeding.'),'error');
$InputError = true;
}
//The contractRef cannot be the same as an existing stockid or contractref
$result = DB_query("SELECT stockid FROM stockmaster WHERE stockid='" . $_POST['ContractRef'] . "'",$db);
if (DB_num_rows($result)==1 AND $_SESSION['Contract'.$identifier]->Status ==0){
prnMsg(_('The contract reference cannot be the same as a previously created stock item. Please modify the contract reference before continuing'),'error');
$InputError=true;
}
if (mb_strlen($_POST['ContractDescription'])<10){
prnMsg(_('The contract description is expected to be more than 10 characters long. Please alter the contract description in full before proceeding.'),'error');
$InputError = true;
}
if (! Is_Date($_POST['RequiredDate'])){
prnMsg (_('The date the contract is required to be completed by must be entered in the format') . ' ' . $_SESSION['DefaultDateFormat'],'error');
$InputError =true;
}
if (Date1GreaterThanDate2(Date($_SESSION['DefaultDateFormat']),$_POST['RequiredDate']) AND $_POST['RequiredDate']!=''){
prnMsg(_('The date that the contract is to be completed by is expected to be a date in the future. Make the required date a date after today before proceeding.'),'error');
$InputError =true;
}
if (!$InputError) {
$_SESSION['Contract'.$identifier]->ContractRef=$_POST['ContractRef'];
$_SESSION['Contract'.$identifier]->ContractDescription=$_POST['ContractDescription'];
$_SESSION['Contract'.$identifier]->CategoryID = $_POST['CategoryID'];
$_SESSION['Contract'.$identifier]->LocCode = $_POST['LocCode'];
$_SESSION['Contract'.$identifier]->RequiredDate = $_POST['RequiredDate'];
$_SESSION['Contract'.$identifier]->Margin = filter_number_input($_POST['Margin']);
$_SESSION['Contract'.$identifier]->Status = $_POST['Status'];
$_SESSION['Contract'.$identifier]->CustomerRef = $_POST['CustomerRef'];
$_SESSION['Contract'.$identifier]->ExRate = filter_number_input($_POST['ExRate']);
/*Get the first work centre for the users location - until we set this up properly */
$result = DB_query("SELECT code FROM workcentres WHERE location='" . $_SESSION['Contract'.$identifier]->LocCode ."'",$db);
if (DB_num_rows($result)>0){
$WorkCentreRow = DB_fetch_row($result);
$WorkCentre = $WorkCentreRow[0];
} else { //need to add a default work centre for the location
$result = DB_query("INSERT INTO workcentres (code,
location,
description,
overheadrecoveryact)
VALUES ('" . $_SESSION['Contract'.$identifier]->LocCode . "',
'" . $_SESSION['Contract'.$identifier]->LocCode . "',
'" . _('Default for') . ' ' . $_SESSION['Contract'.$identifier]->LocCode . "',
'1')",$db);
$WorkCentre = $_SESSION['Contract'.$identifier]->LocCode;
}
/*The above is a bit of a hack to get a default workcentre for a location based on the users default location*/
}
$sql = "SELECT contractref,
debtorno,
branchcode,
categoryid,
loccode,
requireddate,
margin,
customerref,
exrate,
status
FROM contracts
WHERE contractref='" . $_POST['ContractRef'] . "'";
$result = DB_query($sql,$db);
if (DB_num_rows($result)==1){ // then we have an existing contract with this contractref
$ExistingContract = DB_fetch_array($result);
if ($ExistingContract['debtorno'] != $_SESSION['Contract'.$identifier]->DebtorNo){
prnMsg(_('The contract reference cannot be the same as a previously created contract for another customer. Please modify the contract reference before continuing'),'error');
$InputError=true;
}
if($ExistingContract['status']<=1 AND ! $InputError){
//then we can accept any changes at all do an update on the whole lot
$sql = "UPDATE contracts SET categoryid = '" . $_POST['CategoryID'] ."',
requireddate = '" . FormatDateForSQL($_POST['RequiredDate']) . "',
loccode='" . $_POST['LocCode'] . "',
margin = '" . filter_number_input($_POST['Margin']) . "',
customerref = '" . $_POST['CustomerRef'] . "',
exrate = '" . filter_number_input($_POST['ExRate']) . "'
WHERE contractref ='" . $_POST['ContractRef'] . "'";
$ErrMsg = _('Cannot update the contract because');
$result = DB_query($sql,$db,$ErrMsg);
/* also need to update the items on the contract BOM - delete the existing contract BOM then add these items*/
$result = DB_query("DELETE FROM contractbom WHERE contractref='" .$_POST['ContractRef'] . "'",$db);
$ErrMsg = _('Could not add a component to the contract bill of material');
foreach ($_SESSION['Contract'.$identifier]->ContractBOM as $Component){
$sql = "INSERT INTO contractbom (contractref,
stockid,
workcentreadded,
quantity)
VALUES ( '" . $_POST['ContractRef'] . "',
'" . $Component->StockID . "',
'" . $WorkCentre . "',
'" . $Component->Quantity . "')";
$result = DB_query($sql,$db,$ErrMsg);
}
/*also need to update the items on the contract requirements - delete the existing database entries then add these */
$result = DB_query("DELETE FROM contractreqts WHERE contractref='" .$_POST['ContractRef'] . "'",$db);
$ErrMsg = _('Could not add a requirement to the contract requirements');
foreach ($_SESSION['Contract'.$identifier]->ContractReqts as $Requirement){
$sql = "INSERT INTO contractreqts (contractref,
requirement,
costperunit,
quantity)
VALUES (
'" . $_POST['ContractRef'] . "',
'" . $Requirement->Requirement . "',
'" . $Requirement->CostPerUnit . "',
'" . $Requirement->Quantity . "')";
$result = DB_query($sql,$db,$ErrMsg);
}
prnMsg(_('The changes to the contract have been committed to the database'),'success');
}
if ($ExistingContract['status']==1 AND ! $InputError){
//then the quotation will need to be updated with the revised contract cost if necessary
$ContractBOMCost =0;
foreach ($_SESSION['Contract'.$identifier]->ContractBOM as $Component) {
$ContractBOMCost += ($Component->ItemCost * $Component->Quantity);
}
$ContractReqtsCost=0;
foreach ($_SESSION['Contract'.$identifier]->ContractReqts as $Requirement) {
$ContractReqtsCost += ($Requirement->CostPerUnit * $Requirement->Quantity);
}
$ContractCost = $ContractReqtsCost+$ContractBOMCost;
$ContractPrice = ($ContractBOMCost+$ContractReqtsCost)/((100-$_SESSION['Contract'.$identifier]->Margin)/100);
$sql = "UPDATE stockmaster SET description='" . $_SESSION['Contract'.$identifier]->ContractDescription . "',
longdescription='" . $_SESSION['Contract'.$identifier]->ContractDescription . "',
categoryid = '" . $_SESSION['Contract'.$identifier]->CategoryID . "',
materialcost= '" . $ContractCost . "'
WHERE stockid ='" . $_SESSION['Contract'.$identifier]->ContractRef."'";
$ErrMsg = _('The contract item could not be updated because');
$DbgMsg = _('The SQL that was used to update the contract item failed was');
$InsertNewItemResult = DB_query($sql,$db, $ErrMsg, $DbgMsg);
//update the quotation
$sql = "UPDATE salesorderdetails
SET unitprice = '" . $ContractPrice* $_SESSION['Contract'.$identifier]->ExRate . "'
WHERE stkcode='" . $_SESSION['Contract'.$identifier]->ContractRef . "'
AND orderno='" . $_SESSION['Contract'.$identifier]->OrderNo . "'";
$ErrMsg = _('The contract quotation could not be updated because');
$DbgMsg = _('The SQL that failed to update the quotation was');
$UpdQuoteResult = DB_query($sql,$db,$ErrMsg,$DbgMsg);
prnMsg(_('The contract quotation has been updated based on the new contract cost and margin'),'success');
echo '<br /><a href="' .$rootpath . '/SelectSalesOrder.php?OrderNumber=' . $_SESSION['Contract'.$identifier]->OrderNo . '&Quotations=Quotes_Only">' . _('Go to Quotation') . ' ' . $_SESSION['Contract'.$identifier]->OrderNo . '</a>';
}
if ($ExistingContract['status'] == 0 AND $_POST['Status']==1){
/*we are updating the status on the contract to a quotation so we need to
* add a new item for the contract into the stockmaster
* add a salesorder header and detail as a quotation for the item
*/
}
} elseif (!$InputError) { /*Its a new contract - so insert */
$sql = "INSERT INTO contracts ( contractref,
debtorno,
branchcode,
contractdescription,
categoryid,
loccode,
requireddate,
margin,
customerref,
exrate)
VALUES ('" . $_POST['ContractRef'] . "',
'" . $_SESSION['Contract'.$identifier]->DebtorNo . "',
'" . $_SESSION['Contract'.$identifier]->BranchCode . "',
'" . $_POST['ContractDescription'] . "',
'" . $_POST['CategoryID'] . "',
'" . $_POST['LocCode'] . "',
'" . FormatDateForSQL($_POST['RequiredDate']) . "',
'" . filter_number_input($_POST['Margin']) . "',
'" . $_POST['CustomerRef'] . "',
'" . filter_number_input($_POST['ExRate']) ."')";
$ErrMsg = _('The new contract could not be added because');
$result = DB_query($sql,$db,$ErrMsg);
/*Also need to add the reqts and contracbom*/
$ErrMsg = _('Could not add a component to the contract bill of material');
foreach ($_SESSION['Contract'.$identifier]->ContractBOM as $Component){
$sql = "INSERT INTO contractbom (contractref,
stockid,
workcentreadded,
quantity)
VALUES ('" . $_POST['ContractRef'] . "',
'" . $Component->StockID . "',
'" . $WorkCentre . "',
'" . $Component->Quantity . "')";
$result = DB_query($sql,$db,$ErrMsg);
}
$ErrMsg = _('Could not add a requirement to the contract requirements');
foreach ($_SESSION['Contract'.$identifier]->ContractReqts as $Requirement){
$sql = "INSERT INTO contractreqts (contractref,
requirement,
costperunit,
quantity)
VALUES ( '" . $_POST['ContractRef'] . "',
'" . $Requirement->Requirement . "',
'" . $Requirement->CostPerUnit . "',
'" . $Requirement->Quantity . "')";
$result = DB_query($sql,$db,$ErrMsg);
}
prnMsg(_('The new contract has been added to the database'),'success');
} //end of adding a new contract
}//end of commital to database
if(isset($_POST['CreateQuotation']) AND !$InputError){
//Create a quotation for the contract as entered
//First need to create the item in stockmaster
//calculate the item's contract cost
$ContractBOMCost =0;
foreach ($_SESSION['Contract'.$identifier]->ContractBOM as $Component) {
$ContractBOMCost += ($Component->ItemCost * $Component->Quantity);
}
$ContractReqtsCost=0;
foreach ($_SESSION['Contract'.$identifier]->ContractReqts as $Requirement) {
$ContractReqtsCost += ($Requirement->CostPerUnit * $Requirement->Quantity);
}
$ContractCost = $ContractReqtsCost+$ContractBOMCost;
$ContractPrice = ($ContractBOMCost+$ContractReqtsCost)/((100-$_SESSION['Contract'.$identifier]->Margin)/100);
//Check if the item exists already
$sql = "SELECT stockid FROM stockmaster WHERE stockid='" . $_SESSION['Contract'.$identifier]->ContractRef."'";
$ErrMsg = _('The item could not be retrieved because');
$DbgMsg = _('The SQL that was used to find the item failed was');
$result = DB_query($sql,$db, $ErrMsg, $DbgMsg);
if (DB_num_rows($result)==0) { //then the item doesn't currently exist so add it
$sql = "INSERT INTO stockmaster (stockid,
description,
longdescription,
categoryid,
mbflag,
taxcatid,
materialcost)
VALUES ('" . $_SESSION['Contract'.$identifier]->ContractRef."',
'" . $_SESSION['Contract'.$identifier]->ContractDescription . "',
'" . $_SESSION['Contract'.$identifier]->ContractDescription . "',
'" . $_SESSION['Contract'.$identifier]->CategoryID . "',
'M',
'" . $_SESSION['DefaultTaxCategory'] . "',
'" . $ContractCost . "')";
$ErrMsg = _('The new contract item could not be added because');
$DbgMsg = _('The SQL that was used to insert the contract item failed was');
$InsertNewItemResult = DB_query($sql,$db, $ErrMsg, $DbgMsg);
$sql = "INSERT INTO locstock (loccode,
stockid)
SELECT locations.loccode,
'" . $_SESSION['Contract'.$identifier]->ContractRef . "'
FROM locations";
$ErrMsg = _('The locations for the item') . ' ' . $_SESSION['Contract'.$identifier]->ContractRef . ' ' . _('could not be added because');
$DbgMsg = _('NB Locations records can be added by opening the utility page') . ' <i>Z_MakeStockLocns.php</i> ' . _('The SQL that was used to add the location records that failed was');
$InsLocnsResult = DB_query($sql,$db,$ErrMsg,$DbgMsg);
}
//now add the quotation for the item
//first need to get some more details from the customer/branch record
$sql = "SELECT debtorsmaster.salestype,
custbranch.defaultshipvia,
custbranch.brname,
custbranch.braddress1,
custbranch.braddress2,
custbranch.braddress3,
custbranch.braddress4,
custbranch.braddress5,
custbranch.braddress6,
custbranch.phoneno,
custbranch.email,
custbranch.defaultlocation
FROM debtorsmaster INNER JOIN custbranch
ON debtorsmaster.debtorno=custbranch.debtorno
WHERE debtorsmaster.debtorno='" . $_SESSION['Contract'.$identifier]->DebtorNo . "'
AND custbranch.branchcode='" . $_SESSION['Contract'.$identifier]->BranchCode . "'";
$ErrMsg = _('The customer and branch details could not be retrieved because');
$DbgMsg = _('The SQL that was used to find the customer and branch details failed was');
$CustomerDetailsResult = DB_query($sql,$db, $ErrMsg, $DbgMsg);
$CustomerDetailsRow = DB_fetch_array($CustomerDetailsResult);
//start a DB transaction
$Result = DB_Txn_Begin($db);
$OrderNo = GetNextTransNo(30, $db);
$HeaderSQL = "INSERT INTO salesorders ( orderno,
debtorno,
branchcode,
customerref,
orddate,
ordertype,
shipvia,
deliverto,
deladd1,
deladd2,
deladd3,
deladd4,
deladd5,
deladd6,
contactphone,
contactemail,
fromstkloc,
deliverydate,
quotedate,
quotation)
VALUES (
'". $OrderNo . "',
'" . $_SESSION['Contract'.$identifier]->DebtorNo . "',
'" . $_SESSION['Contract'.$identifier]->BranchCode . "',
'". $_SESSION['Contract'.$identifier]->CustomerRef ."',
'" . Date('Y-m-d H:i') . "',
'" . $CustomerDetailsRow['salestype'] . "',
'" . $CustomerDetailsRow['defaultshipvia'] ."',
'". $CustomerDetailsRow['brname'] . "',
'" . $CustomerDetailsRow['braddress1'] . "',
'" . $CustomerDetailsRow['braddress2'] . "',
'" . $CustomerDetailsRow['braddress3'] . "',
'" . $CustomerDetailsRow['braddress4'] . "',
'" . $CustomerDetailsRow['braddress5'] . "',
'" . $CustomerDetailsRow['braddress6'] . "',
'" . $CustomerDetailsRow['phoneno'] . "',
'" . $CustomerDetailsRow['email'] . "',
'" . $_SESSION['Contract'.$identifier]->LocCode ."',
'" . FormatDateForSQL($_SESSION['Contract'.$identifier]->RequiredDate) . "',
'" . Date('Y-m-d') . "',
'1' )";
$ErrMsg = _('The quotation cannot be added because');
$InsertQryResult = DB_query($HeaderSQL,$db,$ErrMsg,true);
$LineItemSQL = "INSERT INTO salesorderdetails ( orderlineno,
orderno,
stkcode,
unitprice,
quantity,
poline,
itemdue)
VALUES ('0',
'" . $OrderNo . "',
'" . $_SESSION['Contract'.$identifier]->ContractRef . "',
'" . ($ContractPrice * $_SESSION['Contract'.$identifier]->ExRate) . "',
'1',
'" . $_SESSION['Contract'.$identifier]->CustomerRef . "',
'" . FormatDateForSQL($_SESSION['Contract'.$identifier]->RequiredDate) . "')";
$DbgMsg = _('The SQL that failed was');
$ErrMsg = _('Unable to add the quotation line');
$Ins_LineItemResult = DB_query($LineItemSQL,$db,$ErrMsg,$DbgMsg,true);
//end of adding the quotation to salesorders/details
//make the status of the contract 1 - to indicate that it is now quoted
$sql = "UPDATE contracts SET orderno='" . $OrderNo . "',
status='" . 1 . "'
WHERE contractref='" . DB_escape_string($_SESSION['Contract'.$identifier]->ContractRef) . "'";
$ErrMsg = _('Unable to update the contract status and order number because');
$UpdContractResult = DB_query($sql,$db,$ErrMsg,$DbgMsg,true);
$Result = DB_Txn_Commit($db);
$_SESSION['Contract'.$identifier]->Status=1;
$_SESSION['Contract'.$identifier]->OrderNo=$OrderNo;
prnMsg(_('The contract has been made into quotation number') . ' ' . $OrderNo,'info');
echo '<br /><a href="' . $rootpath . '/SelectSalesOrder.php?OrderNumber=' . $OrderNo . '&Quotations=Quotes_Only">' . _('Go to quotation number:') . ' ' . $OrderNo . '</a>';
} //end of if making a quotation
$result_CustSelect=CustomerSearchSQL($db);
if (isset($_POST['SelectedCustomer1'])) {
/* will only be true if page called from customer selection form
* or set because only one customer record returned from a search
* so parse the $Select string into debtorno and branch code */
if (!isset($_POST['Search'])){
/*Need to figure out the number of the form variable that the user clicked on */
for ($i=0; $i< count($_POST); $i++){ //loop through the returned customers
if(isset($_POST['SubmitCustomerSelection'.$i])){
break;
}
}
if ($i==count($_POST)){
prnMsg(_('Unable to identify the selected customer'),'error');
} else {
$_POST['SelectedCustomer'] = $_POST['SelectedCustomer'.$i];
$_POST['SelectedBranch'] = $_POST['SelectedBranch'.$i];
unset($_POST['Search']);
$_SESSION['Contract'.$identifier]->DebtorNo = $_POST['SelectedCustomer'];
$_SESSION['Contract'.$identifier]->BranchCode = $_POST['SelectedBranch'];
}
}
} //end if a customer has just been selected
if (!isset($_SESSION['Contract'.$identifier]->DebtorNo)
OR $_SESSION['Contract'.$identifier]->DebtorNo=='' ) {
ShowCustomerSearchFields($rootpath, $theme, $db);
if (isset($result_CustSelect)) {
ShowReturnedCustomers($result_CustSelect);
}//end if results to show
//end if RequireCustomerSelection
} else { /*A customer is already selected so get into the contract setup proper */
$sql = "SELECT debtorsmaster.name,
custbranch.brname,
debtorsmaster.currcode,
debtorsmaster.holdreason,
holdreasons.dissallowinvoices,
currencies.rate
FROM debtorsmaster INNER JOIN currencies
ON debtorsmaster.currcode=currencies.currabrev
INNER JOIN custbranch
ON debtorsmaster.debtorno=custbranch.debtorno
INNER JOIN holdreasons
ON debtorsmaster.holdreason=holdreasons.reasoncode
WHERE debtorsmaster.debtorno='" . $_SESSION['Contract'.$identifier]->DebtorNo . "'
AND custbranch.branchcode='" . $_SESSION['Contract'.$identifier]->BranchCode . "'" ;
$ErrMsg = _('The customer record selected') . ': ' . $_SESSION['Contract'.$identifier]->DebtorNo . ' ' . _('cannot be retrieved because');
$DbgMsg = _('The SQL used to retrieve the customer details and failed was');
$result = DB_query($sql,$db,$ErrMsg,$DbgMsg);
$myrow = DB_fetch_array($result);
if (DB_num_rows($result)==0){
prnMsg(_('The customer details were unable to be retrieved'),'error');
if ($debug==1){
prnMsg(_('The SQL used that failed to get the customer details was:') . '<br />' . $sql,'error');
}
} else {
$_SESSION['Contract'.$identifier]->BranchName = $myrow['brname'];
$_SESSION['RequireCustomerSelection'] = 0;
$_SESSION['Contract'.$identifier]->CustomerName = $myrow['name'];
$_SESSION['Contract'.$identifier]->CurrCode = $myrow['currcode'];
$_SESSION['Contract'.$identifier]->ExRate = $myrow['rate'];
if ($_SESSION['CheckCreditLimits'] > 0){ /*Check credit limits is 1 for warn and 2 for prohibit contracts */
$CreditAvailable = GetCreditAvailable($_SESSION['Contract'.$identifier]->DebtorNo,$db);
if ($_SESSION['CheckCreditLimits']==1 AND $CreditAvailable <=0){
prnMsg(_('The') . ' ' . $_SESSION['Contract'.$identifier]->CustomerName . ' ' . _('account is currently at or over their credit limit'),'warn');
} elseif ($_SESSION['CheckCreditLimits']==2 AND $CreditAvailable <=0){
prnMsg(_('No more orders can be placed by') . ' ' . $myrow[0] . ' ' . _(' their account is currently at or over their credit limit'),'warn');
include('includes/footer.inc');
exit;
}
}
} //a customer was retrieved ok
echo '<form name="ContractEntry" enctype="multipart/form-data" action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?identifier=' . $identifier . '" method="post">';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
echo '<p class="page_title_text">
<img src="'.$rootpath.'/css/'.$theme.'/images/contract.png" title="' . _('Contract') . '" alt="" /> ' . $_SESSION['Contract'.$identifier]->CustomerName;
if ($_SESSION['CompanyRecord']['currencydefault'] != $_SESSION['Contract'.$identifier]->CurrCode){
echo ' - ' . _('All amounts stated in') . ' ' . $_SESSION['Contract'.$identifier]->CurrCode . '<br />';
}
if ($_SESSION['ExistingContract']) {
echo _('Modify Contract') . ': ' . $_SESSION['Contract'.$identifier]->ContractRef;
}
echo '</p>';
/*Set up form for entry of contract header stuff */
echo '<table class="selection">
<tr>
<td>' . _('Contract Reference') . ':</td>
<td>';
if ($_SESSION['Contract'.$identifier]->Status==0) {
/*Then the contract has not become an order yet and we can allow changes to the ContractRef */
echo '<input type="text" name="ContractRef" size="21" maxlength="20" value="' . $_SESSION['Contract'.$identifier]->ContractRef . '" />';
} else {
/*Just show the contract Ref - dont allow modification */
echo '<input type="hidden" name="ContractRef" value="' . $_SESSION['Contract'.$identifier]->ContractRef . '" />' . $_SESSION['Contract'.$identifier]->ContractRef;
}
echo '</td></tr>';
echo '<tr>
<td>' . _('Category') . ':</td>
<td><select name="CategoryID" >';
$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,$db,$ErrMsg,$DbgMsg);
while ($myrow=DB_fetch_array($result)){
if (!isset($_SESSION['Contract'.$identifier]->CategoryID) or $myrow['categoryid']==$_SESSION['Contract'.$identifier]->CategoryID){
echo '<option selected="selected" value="'. $myrow['categoryid'] . '">' . $myrow['categorydescription'].'</option>';
} else {
echo '<option value="'. $myrow['categoryid'] . '">' . $myrow['categorydescription'].'</option>';
}
}
echo '</select><a target="_blank" href="'. $rootpath . '/StockCategories.php">' . _('Add or Modify Contract Categories') . '</a></td></tr>';
$sql = "SELECT loccode, locationname FROM locations";
$ErrMsg = _('The stock locations could not be retrieved because');
$DbgMsg = _('The SQL used to retrieve stock locations and failed was');
$result = DB_query($sql,$db,$ErrMsg,$DbgMsg);
echo '<tr>
<td>' . _('Location') . ':</td>
<td><select name="LocCode" >';
while ($myrow=DB_fetch_array($result)){
if (!isset($_SESSION['Contract'.$identifier]->LocCode) or $myrow['loccode']==$_SESSION['Contract'.$identifier]->LocCode){
echo '<option selected="selected" value="'. $myrow['loccode'] . '">' . $myrow['locationname'] . '</option>';
} else {
echo '<option value="'. $myrow['loccode'] . '">' . $myrow['locationname'] . '</option>';
}
}
echo '</select></td></tr>';
$sql = "SELECT code, description FROM workcentres";
$result = DB_query($sql,$db);
if (DB_num_rows($result)==0){
prnMsg( _('There are no work centres set up yet') . '. ' . _('Please use the link below to set up work centres'),'warn');
echo '<br /><a href="'.$rootpath.'/WorkCentres.php">' . _('Work Centre Maintenance') . '</a>';
include('includes/footer.inc');
exit;
}
echo '<tr><td>' . _('Default Work Centre') . ': </td><td>';
echo '<select name="DefaultWorkCentre">';
while ($myrow = DB_fetch_array($result)) {
if (isset($_POST['DefaultWorkCentre']) and $myrow['code']==$_POST['DefaultWorkCentre']) {
echo '<option selected="selected" value="'.$myrow['code'] . '">' . $myrow['description'] . '</option>';
} else {
echo '<option value="'.$myrow['code'] . '">' . $myrow['description'] . '</option>';
}
} //end while loop
DB_free_result($result);
echo '</select></td>
</tr>
<tr>
<td>' . _('Contract Description') . ':</td>
<td><textarea name="ContractDescription" style="width:100%" rows="5" cols="40">' . $_SESSION['Contract'.$identifier]->ContractDescription . '</textarea></td>
</tr><tr>
<td>'. _('Drawing File') . ' .jpg' . ' ' . _('format only') .':</td>
<td><input type="file" id="Drawing" name="Drawing" /></td>
</tr>';
if (!isset($_SESSION['Contract'.$identifier]->RequiredDate)) {
$_SESSION['Contract'.$identifier]->RequiredDate = DateAdd(date($_SESSION['DefaultDateFormat']),'m',1);
}
echo '<tr>
<td>' . _('Required Date') . ':</td>
<td><input type="text" class="date" alt="' .$_SESSION['DefaultDateFormat'] . '" name="RequiredDate" size="11" value="' . $_SESSION['Contract'.$identifier]->RequiredDate . '" /></td>
</tr>';
echo '<tr>
<td>' . _('Customer Reference') . ':</td>
<td><input type="text" name="CustomerRef" size="21" maxlength="20" value="' . $_SESSION['Contract'.$identifier]->CustomerRef . '" /></td>
</tr>';
if (!isset($_SESSION['Contract'.$identifier]->Margin)){
$_SESSION['Contract'.$identifier]->Margin =50;
}
echo '<tr>
<td>' . _('Gross Profit') . ' %:</td>
<td><input class="number" type="text" name="Margin" size="6" maxlength="6" value="' . locale_number_format($_SESSION['Contract'.$identifier]->Margin, 2) . '" /></td>
</tr>';
if ($_SESSION['CompanyRecord']['currencydefault'] != $_SESSION['Contract'.$identifier]->CurrCode){
echo '<tr>
<td>' . $_SESSION['Contract'.$identifier]->CurrCode . ' ' . _('Exchange Rate') . ':</td>
<td><input class="number" type="text" name="ExRate" size="10" maxlength="10" value="' . locale_number_format($_SESSION['Contract'.$identifier]->ExRate, 4) . '" /></td>
</tr>';
} else {
echo '<input type="hidden" name="ExRate" value="' . locale_number_format($_SESSION['Contract'.$identifier]->ExRate, 4) . '" />';
}
echo '<tr>
<td>' . _('Contract Status') . ':</td>
<td>';
$StatusText = array();
$StatusText[0] = _('Setup');
$StatusText[1] = _('Quote');
$StatusText[2] = _('Completed');
if ($_SESSION['Contract'.$identifier]->Status == 0){
echo _('Contract Setup');
} elseif ($_SESSION['Contract'.$identifier]->Status == 1){
echo _('Customer Quoted');
} elseif ($_SESSION['Contract'.$identifier]->Status == 2){
echo _('Order Placed');
}
echo '<input type="hidden" name="Status" value="'.$_SESSION['Contract'.$identifier]->Status.'" />';
echo '</td>
</tr>';
if ($_SESSION['Contract'.$identifier]->Status >=1) {
echo '<tr>
<td>' . _('Quotation Reference/Sales Order No') . ':</td>
<td><a href="' . $rootpath . '/SelectSalesOrder.php?OrderNumber=' . $_SESSION['Contract'.$identifier]->OrderNo . '&Quotations=Quotes_Only">' . $_SESSION['Contract'.$identifier]->OrderNo . '</a></td>
</tr>';
}
if ($_SESSION['Contract'.$identifier]->Status!=2 and isset($_SESSION['Contract'.$identifier]->WO)) {
echo '<tr>
<td>' . _('Contract Work Order Ref') . ':</td>
<td>' . $_SESSION['Contract'.$identifier]->WO . '</td>
</tr>';
}
echo '</table><br />';
echo '<table>
<tr>
<td>
<table class="selection">
<tr>
<th colspan="6">' . _('Stock Items Required') . '</th>
</tr>';
$ContractBOMCost = 0;
if (count($_SESSION['Contract'.$identifier]->ContractBOM)!=0){
echo '<tr>
<th>' . _('Item Code') . '</th>
<th>' . _('Item Description') . '</th>
<th>' . _('Quantity') . '</th>
<th>' . _('Unit') . '</th>
<th>' . _('Unit Cost') . '</th>
<th>' . _('Total Cost') . '</th>
</tr>';
foreach ($_SESSION['Contract'.$identifier]->ContractBOM as $Component) {
echo '<tr>
<td>' . $Component->StockID . '</td>
<td>' . $Component->ItemDescription . '</td>
<td class="number">' . locale_number_format($Component->Quantity, $Component->DecimalPlaces) . '</td>
<td>' . $Component->UOM . '</td>
<td class="number">' . locale_money_format($Component->ItemCost,$_SESSION['Contract'.$identifier]->CurrCode) . '</td>
<td class="number">' . locale_money_format(($Component->ItemCost * $Component->Quantity),$_SESSION['Contract'.$identifier]->CurrCode) . '</td>
</tr>';
$ContractBOMCost += ($Component->ItemCost * $Component->Quantity);
}
echo '<tr>
<th colspan="5"><b>' . _('Total stock cost') . '</b></th>
<th class="number"><b>' . locale_money_format($ContractBOMCost,$_SESSION['Contract'.$identifier]->CurrCode) . '</b></th>
</tr>';
} else { //there are no items set up against this contract
echo '<tr>
<td colspan="6"><i>' . _('None Entered') . '</i></td>
</tr>';
}
echo '</table></td>'; //end of contract BOM table
echo '<td valign="top">
<table class="selection">
<tr>
<th colspan="4">' . _('Other Requirements') . '</th>
</tr>';
$ContractReqtsCost = 0;
if (count($_SESSION['Contract'.$identifier]->ContractReqts)!=0){
echo '<tr>
<th>' . _('Requirement') . '</th>
<th>' . _('Quantity') . '</th>
<th>' . _('Unit Cost') . '</th>
<th>' . _('Total Cost') . '</th>
</tr>';
foreach ($_SESSION['Contract'.$identifier]->ContractReqts as $Requirement) {
echo '<tr>
<td>' . $Requirement->Requirement . '</td>
<td class="number">' . locale_number_format($Requirement->Quantity,2) . '</td>
<td class="number">' . locale_money_format($Requirement->CostPerUnit, $_SESSION['Contract'.$identifier]->CurrCode) . '</td>
<td class="number">' . locale_money_format(($Requirement->CostPerUnit * $Requirement->Quantity),$_SESSION['Contract'.$identifier]->CurrCode) . '</td>
</tr>';
$ContractReqtsCost += ($Requirement->CostPerUnit * $Requirement->Quantity);
}
echo '<tr>
<th colspan="3"><b>' . _('Total other costs') . '</b></th>
<th class="number"><b>' . locale_money_format($ContractReqtsCost,$_SESSION['Contract'.$identifier]->CurrCode) . '</b></th>
</tr>';
} else { //there are no items set up against this contract
echo '<tr>
<td colspan="4"><i>' . _('None Entered') . '</i></td>
</tr>';
}
echo '</table></td></tr></table>';
echo '<br />';
echo'<table class="selection">
<tr>
<th>' . _('Total Contract Cost') . '</th>
<th class="number">' . locale_money_format(($ContractBOMCost+$ContractReqtsCost),$_SESSION['Contract'.$identifier]->CurrCode) . '</th>
<th>' . _('Contract Price') . '</th>
<th class="number">' . locale_money_format(($ContractBOMCost+$ContractReqtsCost)/((100+$_SESSION['Contract'.$identifier]->Margin)/100),$_SESSION['Contract'.$identifier]->CurrCode) . '</th>
</tr>
</table>';
echo'<p></p>';
echo '<div class="centre">
<button type="submit" name="EnterContractBOM">' . _('Enter Items Required') . '</button>
<button type="submit" name="EnterContractRequirements">' . _('Enter Other Requirements') .'</button>';
if($_SESSION['Contract'.$identifier]->Status==0){ // not yet quoted
echo '<button type="submit" name="CommitContract">' . _('Commit Changes') .'</button>';
} elseif($_SESSION['Contract'.$identifier]->Status==1){ //quoted but not yet ordered
echo '<button type="submit" name="CommitContract">' . _('Update Quotation') .'</button>';
}
if($_SESSION['Contract'.$identifier]->Status==0){ //not yet quoted
echo ' <button type="submit" name="CreateQuotation">' . _('Create Quotation') .'</button>
</div>';
} else {
echo '</div>';
}
if ($_SESSION['Contract'.$identifier]->Status!=2) {
echo '<div class="centre">
<br />
<button type="submit" name="CancelContract">' . _('Cancel and Delete Contract') . '</button>
</div>';
}
echo '</form>';
} /*end of if customer selected and entering contract header*/
include('includes/footer.inc');
?>