forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GLAccountUsers.php
244 lines (230 loc) · 10.5 KB
/
GLAccountUsers.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
<?php
/* Maintenance of GL Accounts allowed for a user. */
include('includes/session.php');
$Title = _('GL Account Authorised Users');
$ViewTopic = 'GeneralLedger';
$BookMark = 'GLAccountUsers';
include('includes/header.php');
if(isset($_POST['SelectedGLAccount']) and $_POST['SelectedGLAccount']<>'') {//If POST not empty:
$SelectedGLAccount = mb_strtoupper($_POST['SelectedGLAccount']);
} elseif(isset($_GET['SelectedGLAccount']) and $_GET['SelectedGLAccount']<>'') {//If GET not empty:
$SelectedGLAccount = mb_strtoupper($_GET['SelectedGLAccount']);
} else {// Unset empty SelectedGLAccount:
unset($_GET['SelectedGLAccount']);
unset($_POST['SelectedGLAccount']);
unset($SelectedGLAccount);
}
if(isset($_POST['SelectedUser']) and $_POST['SelectedUser']<>'') {//If POST not empty:
$SelectedUser = mb_strtoupper($_POST['SelectedUser']);
} elseif(isset($_GET['SelectedUser']) and $_GET['SelectedGLAccount']<>'') {//If GET not empty:
$SelectedUser = mb_strtoupper($_GET['SelectedUser']);
} else {// Unset empty SelectedUser:
unset($_GET['SelectedUser']);
unset($_POST['SelectedUser']);
unset($SelectedUser);
}
if(isset($_POST['Cancel']) or isset($_GET['Cancel'] )) {
unset($SelectedGLAccount);
unset($SelectedUser);
}
if(!isset($SelectedGLAccount)) {// If is NOT set a GL account for users.
/* It could still be the second time the page has been run and a record has been selected for modification - SelectedUser will exist because it was sent with the new call. If its the first time the page has been displayed with no parameters then none of the above are true. These will call the same page again and allow update/input or deletion of the records*/
echo '<p class="page_title_text"><img alt="" src="', $RootPath, '/css/', $Theme, '/images/gl.png" title="',// Icon image.
_('GL Account Authorised Users'), '" /> ',// Icon title.
_('GL Account Authorised Users'), '</p>';// Page title.
if(isset($_POST['Process'])) {
prnMsg(_('You have not selected any GL Account'), 'error');
}
echo '<form action="', htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8'), '" method="post">',
'<input name="FormID" type="hidden" value="', $_SESSION['FormID'], '" />',
'<table class="selection">
<tr>
<td>', _('Select GL Account'), ':</td>
<td><select name="SelectedGLAccount" onchange="this.form.submit()">',// Submit when the value of the select is changed.
'<option value="">', _('Not Yet Selected'), '</option>';
$Result = DB_query("
SELECT
accountcode,
accountname
FROM chartmaster
ORDER BY accountcode");
while ($MyRow = DB_fetch_array($Result)) {
echo '<option ';
if(isset($SelectedGLAccount) and $MyRow['accountcode'] == $SelectedGLAccount) {
echo 'selected="selected" ';
}
echo 'value="', $MyRow['accountcode'] . '">' . $MyRow['accountcode'] . ' - ' . $MyRow['accountname'] . '</option>';
}// End while loop.
echo '</select></td>
</tr>
</table>';//Close Select_GL_Account table.
DB_free_result($Result);
echo '<div class="centre noprint">',// Form buttons:
'<button name="Process" type="submit" value="Submit"><img alt="" src="', $RootPath, '/css/', $Theme, '/images/gl.png" /> ', _('Accept'), '</button> '; // "Accept" button.
} else {// If is set a GL account for users ($SelectedGLAccount).
$Result = DB_query("
SELECT accountname
FROM chartmaster
WHERE accountcode='" . $SelectedGLAccount . "'");
$MyRow = DB_fetch_array($Result);
$SelectedGLAccountName = $MyRow['accountname'];
echo '<p class="page_title_text"><img alt="" src="', $RootPath, '/css/', $Theme, '/images/gl.png" title="',// Icon image.
_('GL Account Authorised Users'), '" /> ',// Icon title.
_('Authorised Users for'), ' ', $SelectedGLAccountName, '</p>';// Page title.
// BEGIN: Needs $SelectedGLAccount, $SelectedUser.
if(isset($_POST['submit'])) {
if(!isset($SelectedUser)) {
prnMsg(_('You have not selected an user to be authorised to use this GL Account'), 'error');
} else {
// First check the user is not being duplicated
$CheckResult = DB_query("
SELECT count(*)
FROM glaccountusers
WHERE accountcode= '" . $SelectedGLAccount . "'
AND userid = '" . $SelectedUser . "'");
$CheckRow = DB_fetch_row($CheckResult);
if($CheckRow[0] > 0) {
prnMsg(_('The user') . ' ' . $SelectedUser . ' ' . _('is already authorised to use this GL Account'), 'error');
} else {
// Add new record on submit
$SQL = "INSERT INTO glaccountusers (
accountcode,
userid,
canview,
canupd
) VALUES ('" .
$SelectedGLAccount . "','" .
$SelectedUser . "',
'1',
'1')";
$ErrMsg = _('An access permission for a user could not be added');
if(DB_query($SQL, $ErrMsg)) {
prnMsg(_('An access permission for a user was added') . '. ' . _('GL Account') . ': ' . $SelectedGLAccount . '. ' . _('User') . ': ' . $SelectedUser . '.', 'success');
unset($_GET['SelectedUser']);
unset($_POST['SelectedUser']);
}
}
}
} elseif(isset($_GET['delete'])) {
$SQL = "DELETE FROM glaccountusers
WHERE accountcode='" . $SelectedGLAccount . "'
AND userid='" . $SelectedUser . "'";
$ErrMsg = _('An access permission for a user could not be removed');
if(DB_query($SQL, $ErrMsg)) {
prnMsg(_('An access permission for a user was removed') . '. ' . _('GL Account') . ': ' . $SelectedGLAccount . '. ' . _('User') . ': ' . $SelectedUser . '.', 'success');
unset($_GET['delete']);
unset($_POST['delete']);
}
} elseif(isset($_GET['ToggleUpdate'])) {
$SQL = "UPDATE glaccountusers
SET canupd='" . $_GET['ToggleUpdate'] . "'
WHERE accountcode='" . $SelectedGLAccount . "'
AND userid='" . $SelectedUser . "'";
$ErrMsg = _('An access permission to update a GL account could not be modified');
if(DB_query($SQL, $ErrMsg)) {
prnMsg(_('An access permission to update a GL account was modified') . '. ' . _('GL Account') . ': ' . $SelectedGLAccount . '. ' . _('User') . ': ' . $SelectedUser . '.', 'success');
unset($_GET['ToggleUpdate']);
unset($_POST['ToggleUpdate']);
}
}
// END: Needs $SelectedGLAccount, $SelectedUser.
echo '<table class="selection">
<thead>
<tr>
<th class="text">', _('User Code'), '</th>
<th class="text">', _('User Name'), '</th>
<th class="centre">', _('View'), '</th>
<th class="centre">', _('Update'), '</th>
<th class="noprint" colspan="2"> </th>
</tr>
</thead><tbody>';
$Result = DB_query("
SELECT
glaccountusers.userid,
canview,
canupd,
www_users.realname
FROM glaccountusers INNER JOIN www_users
ON glaccountusers.userid=www_users.userid
WHERE glaccountusers.accountcode='" . $SelectedGLAccount . "'
ORDER BY glaccountusers.userid ASC");
if(DB_num_rows($Result)>0) {// If the GL account has access permissions for one or more users:
while($MyRow = DB_fetch_array($Result)) {
echo '<tr class="striped_row">
<td class="text">', $MyRow['userid'], '</td>
<td class="text">', $MyRow['realname'], '</td>
<td class="centre">';
if($MyRow['canview'] == 1) {
echo _('Yes');
} else {
echo _('No');
}
echo '</td>
<td class="centre">';
$ScriptName = htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8');
if($MyRow['canupd'] == 1) {
echo _('Yes'), '</td>',
'<td class="noprint"><a href="', $ScriptName, '?SelectedGLAccount=', $SelectedGLAccount, '&SelectedUser=', $MyRow['userid'], '&ToggleUpdate=0" onclick="return confirm(\'', _('Are you sure you wish to remove Update for this user?'), '\');">', _('Remove Update');
} else {
echo _('No'), '</td>',
'<td class="noprint"><a href="', $ScriptName, '?SelectedGLAccount=', $SelectedGLAccount, '&SelectedUser=', $MyRow['userid'], '&ToggleUpdate=1" onclick="return confirm(\'', _('Are you sure you wish to add Update for this user?'), '\');">', _('Add Update');
}
echo '</a></td>',
'<td class="noprint"><a href="', $ScriptName, '?SelectedGLAccount=', $SelectedGLAccount, '&SelectedUser=', $MyRow['userid'], '&delete=yes" onclick="return confirm(\'', _('Are you sure you wish to un-authorise this user?'), '\');">', _('Un-authorise'), '</a></td>',
'</tr>';
}// End while list loop.
} else {// If the GL account does not have access permissions for users:
echo '<tr><td class="centre" colspan="6">', _('GL account does not have access permissions for users'), '</td></tr>';
}
echo '</tbody></table>',
'<br />',
'<form action="', htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8'), '" method="post">',
'<input name="FormID" type="hidden" value="', $_SESSION['FormID'], '" />',
'<input name="SelectedGLAccount" type="hidden" value="', $SelectedGLAccount, '" />',
'<br />
<table class="selection noprint">
<tr>
<td>';
$Result = DB_query("
SELECT
userid,
realname
FROM www_users
WHERE NOT EXISTS (SELECT glaccountusers.userid
FROM glaccountusers
WHERE glaccountusers.accountcode='" . $SelectedGLAccount . "'
AND glaccountusers.userid=www_users.userid)
ORDER BY userid");
if(DB_num_rows($Result)>0) {// If the GL account does not have access permissions for one or more users:
echo _('Add access permissions to a user'), ':</td>
<td><select name="SelectedUser">';
if(!isset($_POST['SelectedUser'])) {
echo '<option selected="selected" value="">', _('Not Yet Selected'), '</option>';
}
while ($MyRow = DB_fetch_array($Result)) {
if(isset($_POST['SelectedUser']) and $MyRow['userid'] == $_POST['SelectedUser']) {
echo '<option selected="selected" value="';
} else {
echo '<option value="';
}
echo $MyRow['userid'], '">', $MyRow['userid'], ' - ', $MyRow['realname'], '</option>';
}
echo '</select></td>
<td><input type="submit" name="submit" value="Accept" />';
} else {// If the GL account has access permissions for all users:
echo _('GL account has access permissions for all users');
}
echo '</td>
</tr>
</table>';
DB_free_result($Result);
echo '<br>',
'<div class="centre noprint">', // Form buttons:
'<button onclick="javascript:window.print()" type="button"><img alt="" src="', $RootPath, '/css/', $Theme, '/images/printer.png" /> ', _('Print'), '</button>', // "Print" button.
'<button formaction="GLAccountUsers.php?Cancel" type="submit"><img alt="" src="', $RootPath, '/css/', $Theme, '/images/gl.png" /> ', _('Select A Different GL account'), '</button>'; // "Select A Different GL account" button.
}
echo '<button onclick="window.location=\'index.php?Application=GL\'" type="button"><img alt="" src="', $RootPath, '/css/', $Theme, '/images/return.svg" /> ', _('Return'), '</button>', // "Return" button.
'</div>
</form>';
include('includes/footer.php');
?>