-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheque_presentation.php
executable file
·64 lines (57 loc) · 2.88 KB
/
cheque_presentation.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
<?php
require_once 'conf/smarty-conf.php';
include 'functions/cheque_presentation_functions.php';
include 'functions/cheque_inventory_functions.php';
include 'functions/bank_functions.php';
include 'functions/chat_functions.php';
include 'functions/todo_functions.php';
include 'functions/user_functions.php';
$module_id = 33;
if ($_SESSION ['login'] == 1) {
if (check_access ( $module_id, $_SESSION ['user_id'] ) == 1) {
if ($_REQUEST ['job'] == "cheque_presentation_select_form") {
unset ( $_SESSION ['presentation_date'] );
$smarty->assign ( 'page', 'Cheque Presentation' );
$smarty->display ( 'cheque_presentation/cheque_presentation_select.tpl' );
} elseif ($_REQUEST ['job'] == "set_date") {
$_SESSION ['presentation_date'] = $_REQUEST ['presentation_date'];
$_SESSION ['account'] = $_REQUEST ['account'];
$smarty->assign ( 'presentation_date', $_SESSION ['presentation_date'] );
$smarty->assign ( 'account', $_SESSION ['account'] );
$smarty->assign ( 'page', 'Cheque Presentation' );
$smarty->display ( 'cheque_presentation/cheque_presentation.tpl' );
} elseif ($_REQUEST ['job'] == "inquiry") {
$_SESSION ['che_no'] = $_REQUEST ['che_no'];
$smarty->assign ( 'che_no', $_SESSION ['che_no'] );
$smarty->assign ( 'presentation_date', $_SESSION ['presentation_date'] );
list_specify_paybill_cheque ( $_SESSION [presentation_date], $_SESSION [che_no] );
$smarty->assign ( 'account', $_SESSION ['account'] );
} elseif ($_REQUEST ['job'] == "present_cheque") {
present_paybill_cheque ( $_REQUEST ['id'], $_SESSION ['presentation_date'], $_SESSION ['account'] );
$info = get_cheque_info_id ( $_REQUEST ['id'] );
reupdate_balance_from_reconciliation ( $info ['dep_account_no'], $info ['che_amount'] );
$smarty->assign ( 'presentation_date', $_SESSION ['presentation_date'] );
$smarty->assign ( 'account', $_SESSION ['account'] );
$smarty->assign ( 'page', 'Cheque Presentation' );
$smarty->display ( 'cheque_presentation/cheque_presentation.tpl' );
} elseif ($_REQUEST ['job'] == "unpresented_cheque") {
$info = get_cheque_info_id ( $_REQUEST ['id'] );
update_balance ( $info ['dep_account_no'], $info ['che_amount'] );
unpresented_paybill_cheque ( $_REQUEST ['id'] );
$smarty->assign ( 'presentation_date', $_SESSION ['presentation_date'] );
$smarty->assign ( 'account', $_SESSION ['account'] );
$smarty->assign ( 'page', 'Cheque Presentation' );
$smarty->display ( 'cheque_presentation/cheque_presentation.tpl' );
} else {
}
} else {
$user_name = $_SESSION ['user_name'];
$smarty->assign ( 'error_report', "on" );
$smarty->assign ( 'error_message', "Dear $user_name, you don't have permission to access Cheque Presentation." );
$smarty->assign ( 'page', "Access Error" );
$smarty->display ( 'user_home/access_error.tpl' );
}
} else {
$smarty->assign ( 'page', "Login" );
$smarty->display ( 'login/login.tpl' );
}