forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LocationUsers.php
253 lines (207 loc) · 8.67 KB
/
LocationUsers.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
<?php
include('includes/session.php');
$Title = _('Inventory Location Authorised Users Maintenance');
$ViewTopic = 'Inventory';// Filename in ManualContents.php's TOC.
$BookMark = 'LocationUsers';// Anchor's id in the manual's html document.
include('includes/header.php');
echo '<p class="page_title_text"><img src="' . $RootPath . '/css/' . $Theme . '/images/money_add.png" title="' . _('Location Authorised Users') . '" alt="" />' . ' ' . $Title . '</p>';
if (isset($_POST['SelectedUser'])) {
$SelectedUser = mb_strtoupper($_POST['SelectedUser']);
} elseif (isset($_GET['SelectedUser'])) {
$SelectedUser = mb_strtoupper($_GET['SelectedUser']);
} else {
$SelectedUser = '';
}
if (isset($_POST['SelectedLocation'])) {
$SelectedLocation = mb_strtoupper($_POST['SelectedLocation']);
} elseif (isset($_GET['SelectedLocation'])) {
$SelectedLocation = mb_strtoupper($_GET['SelectedLocation']);
}
if (isset($_POST['Cancel'])) {
unset($SelectedLocation);
unset($SelectedUser);
}
if (isset($_POST['Process'])) {
if ($_POST['SelectedLocation'] == '') {
prnMsg(_('You have not selected any Location'), 'error');
echo '<br />';
unset($SelectedLocation);
unset($_POST['SelectedLocation']);
}
}
if (isset($_POST['submit'])) {
$InputError = 0;
if ($_POST['SelectedUser'] == '') {
$InputError = 1;
prnMsg(_('You have not selected an user to be authorised to use this Location'), 'error');
echo '<br />';
unset($SelectedLocation);
}
if ($InputError != 1) {
// First check the user is not being duplicated
$CheckSql = "SELECT count(*)
FROM locationusers
WHERE loccode= '" . $_POST['SelectedLocation'] . "'
AND userid = '" . $_POST['SelectedUser'] . "'";
$CheckResult = DB_query($CheckSql);
$CheckRow = DB_fetch_row($CheckResult);
if ($CheckRow[0] > 0) {
$InputError = 1;
prnMsg(_('The user') . ' ' . $_POST['SelectedUser'] . ' ' . _('is already authorised to use this location'), 'error');
} else {
// Add new record on submit
$SQL = "INSERT INTO locationusers (loccode,
userid,
canview,
canupd)
VALUES ('" . $_POST['SelectedLocation'] . "',
'" . $_POST['SelectedUser'] . "',
'1',
'1')";
$msg = _('User') . ': ' . $_POST['SelectedUser'] . ' ' . _('authority to use the') . ' ' . $_POST['SelectedLocation'] . ' ' . _('location has been changed');
$Result = DB_query($SQL);
prnMsg($msg, 'success');
unset($_POST['SelectedUser']);
}
}
} elseif (isset($_GET['delete'])) {
$SQL = "DELETE FROM locationusers
WHERE loccode='" . $SelectedLocation . "'
AND userid='" . $SelectedUser . "'";
$ErrMsg = _('The Location user record could not be deleted because');
$Result = DB_query($SQL, $ErrMsg);
prnMsg(_('User') . ' ' . $SelectedUser . ' ' . _('has had their authority to use the') . ' ' . $SelectedLocation . ' ' . _('location removed'), 'success');
unset($_GET['delete']);
} elseif (isset($_GET['ToggleUpdate'])) {
$SQL = "UPDATE locationusers
SET canupd='" . $_GET['ToggleUpdate'] . "'
WHERE loccode='" . $SelectedLocation . "'
AND userid='" . $SelectedUser . "'";
$ErrMsg = _('The Location user record could not be deleted because');
$Result = DB_query($SQL, $ErrMsg);
prnMsg(_('User') . ' ' . $SelectedUser . ' ' . _('has had their authority to update') . ' ' . $SelectedLocation . ' ' . _('location removed'), 'success');
unset($_GET['ToggleUpdate']);
}
if (!isset($SelectedLocation)) {
/* 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 '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '">';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />
<table class="selection">
<tr>
<td>' . _('Select Location') . ':</td>
<td><select name="SelectedLocation">';
$Result = DB_query("SELECT loccode,
locationname
FROM locations");
echo '<option value="">' . _('Not Yet Selected') . '</option>';
while ($MyRow = DB_fetch_array($Result)) {
if (isset($SelectedLocation) and $MyRow['loccode'] == $SelectedLocation) {
echo '<option selected="selected" value="';
} else {
echo '<option value="';
}
echo $MyRow['loccode'] . '">' . $MyRow['loccode'] . ' - ' . $MyRow['locationname'] . '</option>';
} //end while loop
echo '</select></td></tr>';
echo '</table>'; // close main table
DB_free_result($Result);
echo '<div class="centre">
<input type="submit" name="Process" value="' . _('Accept') . '" />
<input type="submit" name="Cancel" value="' . _('Cancel') . '" />
</div>';
echo '</form>';
}
//end of ifs and buts!
if (isset($_POST['process']) or isset($SelectedLocation)) {
$SQLName = "SELECT locationname
FROM locations
WHERE loccode='" . $SelectedLocation . "'";
$Result = DB_query($SQLName);
$MyRow = DB_fetch_array($Result);
$SelectedLocationName = $MyRow['locationname'];
echo '<div class="centre"><a href="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '">' . _('Authorised users for') . ' ' . $SelectedLocationName . ' ' . _('Location') . '</a></div>
<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '">
<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />
<input type="hidden" name="SelectedLocation" value="' . $SelectedLocation . '" />';
$SQL = "SELECT locationusers.userid,
canview,
canupd,
www_users.realname
FROM locationusers INNER JOIN www_users
ON locationusers.userid=www_users.userid
WHERE locationusers.loccode='" . $SelectedLocation . "'
ORDER BY locationusers.userid ASC";
$Result = DB_query($SQL);
echo '<table class="selection">';
echo '<tr>
<th colspan="6"><h3>' . _('Authorised users for Location') . ': ' . $SelectedLocationName . '</h3></th>
</tr>';
echo '<tr>
<th>' . _('User Code') . '</th>
<th>' . _('User Name') . '</th>
<th>' . _('View') . '</th>
<th>' . _('Update') . '</th>
</tr>';
while ($MyRow = DB_fetch_array($Result)) {
if ($MyRow['canupd'] == 1) {
$ToggleText = '<td><a href="%s?SelectedUser=%s&ToggleUpdate=0&SelectedLocation=' . $SelectedLocation . '" onclick="return confirm(\'' . _('Are you sure you wish to remove Update for this user?') . '\');">' . _('Remove Update') . '</a></td>';
} else {
$ToggleText = '<td><a href="%s?SelectedUser=%s&ToggleUpdate=1&SelectedLocation=' . $SelectedLocation . '" onclick="return confirm(\'' . _('Are you sure you wish to add Update for this user?') . '\');">' . _('Add Update') . '</a></td>';
}
printf('<tr class="striped_row">
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>' .
$ToggleText . '
<td><a href="%s?SelectedUser=%s&delete=yes&SelectedLocation=' . $SelectedLocation . '" onclick="return confirm(\'' . _('Are you sure you wish to un-authorise this user?') . '\');">' . _('Un-authorise') . '</a></td>
</tr>',
$MyRow['userid'],
$MyRow['realname'],
$MyRow['canview'],
$MyRow['canupd'],
htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8'),
$MyRow['userid'],
htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8'),
$MyRow['userid']);
}
//END WHILE LIST LOOP
echo '</table>';
if (!isset($_GET['delete'])) {
echo '<table class="selection">'; //Main table
echo '<tr>
<td>' . _('Select User') . ':</td>
<td><select name="SelectedUser">';
$Result = DB_query("SELECT userid,
realname
FROM www_users
WHERE NOT EXISTS (SELECT locationusers.userid
FROM locationusers
WHERE locationusers.loccode='" . $SelectedLocation . "'
AND locationusers.userid=www_users.userid)");
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>';
} //end while loop
echo '</select>
</td>
</tr>
</table>'; // close main table
DB_free_result($Result);
echo '<div class="centre">
<input type="submit" name="submit" value="' . _('Accept') . '" />
<input type="submit" name="Cancel" value="' . _('Cancel') . '" />
</div>
</form>';
} // end if user wish to delete
}
include('includes/footer.php');
?>