-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutstanding_voucher.php
executable file
·56 lines (45 loc) · 1.89 KB
/
outstanding_voucher.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
<?php
require_once 'conf/smarty-conf.php';
include 'functions/user_functions.php';
include 'functions/chat_functions.php';
include 'functions/outstanding_functions.php';
$module_no = 52;
if ($_SESSION ['login'] == 1) {
if (check_access ( $module_no, $_SESSION ['user_id'] ) == 1) {
if ($_REQUEST ['job'] == "outstanding_voucher") {
$smarty->assign ( 'page', "outstanding_voucher" );
$smarty->display ( 'outstanding_voucher/outstanding_voucher.tpl' );
}
elseif ($_REQUEST ['job'] == "search") {
$_SESSION ['travels'] = $_POST ['travels'];
$_SESSION ['from_date'] = $_POST ['from_date'];
$_SESSION ['to_date'] = $_POST ['to_date'];
$smarty->assign ( 'travels', $_SESSION ['travels'] );
$smarty->assign ( 'from_date', $_SESSION ['from_date'] );
$smarty->assign ( 'to_date', $_SESSION ['to_date'] );
$smarty->assign ( 'search', "on" );
$smarty->assign ( 'page', "outstanding_voucher" );
$smarty->display ( 'outstanding_voucher/outstanding_voucher.tpl' );
}
elseif ($_REQUEST ['job'] == "outstanding_voucher_print") {
$smarty->assign ( 'travels', $_SESSION ['travels'] );
$smarty->assign ( 'from_date', $_SESSION ['from_date'] );
$smarty->assign ( 'to_date', $_SESSION ['to_date'] );
$smarty->assign ( 'page', "outstanding_voucher_print" );
$smarty->display ( 'outstanding_voucher_print/outstanding_voucher_print.tpl' );
}
else {
$smarty->assign ( 'page', "outstanding_voucher" );
$smarty->display ( 'outstanding_voucher/outstanding_voucher.tpl' );
}
} else {
$smarty->assign ( 'error_report', "on" );
$smarty->assign ( 'error_message', "Dear $_SESSION[user_name], you don't have permission to outstanding voucher Settings" );
$smarty->assign ( 'page', "Access Error" );
$smarty->display ( 'user_home/access_error.tpl' );
}
}
else {
$smarty->assign ( 'error', "Incorrect Login Details!" );
$smarty->display ( 'login/login.tpl' );
}