-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathDepartments.php
260 lines (221 loc) · 8.54 KB
/
Departments.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
<?php
include('includes/session.php');
$Title = _('Departments');
$ViewTopic = 'Setup';
$BookMark = 'Departments';
include('includes/header.php');
echo '<p class="page_title_text"><img src="' . $RootPath . '/css/' . $Theme . '/images/magnifier.png" title="' .
_('Departments') . '" alt="" />' . ' ' . $Title . '</p>';
if ( isset($_GET['SelectedDepartmentID']) )
$SelectedDepartmentID = $_GET['SelectedDepartmentID'];
elseif (isset($_POST['SelectedDepartmentID']))
$SelectedDepartmentID = $_POST['SelectedDepartmentID'];
if (isset($_POST['Submit'])) {
//initialise no input errors assumed initially before we test
$InputError = 0;
/* actions to take once the user has clicked the submit button
ie the page has called itself with some user input */
//first off validate inputs sensible
if (ContainsIllegalCharacters($_POST['DepartmentName'])) {
$InputError = 1;
prnMsg( _('The description of the department must not contain the character') . " '&' " . _('or the character') ." '",'error');
}
if (trim($_POST['DepartmentName']) == '') {
$InputError = 1;
prnMsg( _('The Name of the Department should not be empty'), 'error');
}
if (isset($_POST['SelectedDepartmentID'])
AND $_POST['SelectedDepartmentID']!=''
AND $InputError !=1) {
/*SelectedDepartmentID could also exist if submit had not been clicked this code would not run in this case cos submit is false of course see the delete code below*/
// Check the name does not clash
$SQL = "SELECT count(*) FROM departments
WHERE departmentid <> '" . $SelectedDepartmentID ."'
AND description " . LIKE . " '" . $_POST['DepartmentName'] . "'";
$Result = DB_query($SQL);
$MyRow = DB_fetch_row($Result);
if ( $MyRow[0] > 0 ) {
$InputError = 1;
prnMsg( _('This department name already exists.'),'error');
} else {
// Get the old name and check that the record still exist neet to be very careful here
$SQL = "SELECT description
FROM departments
WHERE departmentid = '" . $SelectedDepartmentID . "'";
$Result = DB_query($SQL);
if ( DB_num_rows($Result) != 0 ) {
// This is probably the safest way there is
$MyRow = DB_fetch_array($Result);
$OldDepartmentName = $MyRow['description'];
$SQL = array();
$SQL[] = "UPDATE departments
SET description='" . $_POST['DepartmentName'] . "',
authoriser='" . $_POST['Authoriser'] . "'
WHERE description " . LIKE . " '" . $OldDepartmentName . "'";
} else {
$InputError = 1;
prnMsg( _('The department does not exist.'),'error');
}
}
$msg = _('The department has been modified');
} elseif ($InputError !=1) {
/*SelectedDepartmentID is null cos no item selected on first time round so must be adding a record*/
$SQL = "SELECT count(*) FROM departments
WHERE description " . LIKE . " '" . $_POST['DepartmentName'] . "'";
$Result = DB_query($SQL);
$MyRow = DB_fetch_row($Result);
if ( $MyRow[0] > 0 ) {
$InputError = 1;
prnMsg( _('There is already a department with the specified name.'),'error');
} else {
$SQL = "INSERT INTO departments (description,
authoriser )
VALUES ('" . $_POST['DepartmentName'] . "',
'" . $_POST['Authoriser'] . "')";
}
$msg = _('The new department has been created');
}
if ($InputError!=1){
//run the SQL from either of the above possibilites
if (is_array($SQL)) {
DB_Txn_Begin();
$ErrMsg = _('The department could not be inserted');
$DbgMsg = _('The sql that failed was') . ':';
foreach ($SQL as $SQLStatement ) {
$Result = DB_query($SQLStatement, $ErrMsg,$DbgMsg,true);
if(!$Result) {
$InputError = 1;
break;
}
}
if ($InputError!=1){
DB_Txn_Commit();
} else {
DB_Txn_Rollback();
}
} else {
$Result = DB_query($SQL);
}
prnMsg($msg,'success');
echo '<br />';
}
unset ($SelectedDepartmentID);
unset ($_POST['SelectedDepartmentID']);
unset ($_POST['DepartmentName']);
} elseif (isset($_GET['delete'])) {
//the link to delete a selected record was clicked instead of the submit button
$SQL = "SELECT description
FROM departments
WHERE departmentid = '" . $SelectedDepartmentID . "'";
$Result = DB_query($SQL);
if ( DB_num_rows($Result) == 0 ) {
prnMsg( _('You cannot delete this Department'),'warn');
} else {
$MyRow = DB_fetch_row($Result);
$OldDepartmentName = $MyRow[0];
$SQL= "SELECT COUNT(*)
FROM stockrequest INNER JOIN departments
ON stockrequest.departmentid=departments.departmentid
WHERE description " . LIKE . " '" . $OldDepartmentName . "'";
$Result = DB_query($SQL);
$MyRow = DB_fetch_row($Result);
if ($MyRow[0]>0) {
prnMsg( _('You cannot delete this Department'),'warn');
echo '<br />' . _('There are') . ' ' . $MyRow[0] . ' ' . _('There are items related to this department');
} else {
$SQL="DELETE FROM departments WHERE description " . LIKE . "'" . $OldDepartmentName . "'";
$Result = DB_query($SQL);
prnMsg( $OldDepartmentName . ' ' . _('The department has been removed') . '!','success');
}
} //end if account group used in GL accounts
unset ($SelectedDepartmentID);
unset ($_GET['SelectedDepartmentID']);
unset($_GET['delete']);
unset ($_POST['SelectedDepartmentID']);
unset ($_POST['DepartmentID']);
unset ($_POST['DepartmentName']);
}
if (!isset($SelectedDepartmentID)) {
$SQL = "SELECT departmentid,
description,
authoriser
FROM departments
ORDER BY description";
$ErrMsg = _('There are no departments created');
$Result = DB_query($SQL,$ErrMsg);
echo '<table class="selection">
<tr>
<th>' . _('Department Name') . '</th>
<th>' . _('Authoriser') . '</th>
</tr>';
while ($MyRow = DB_fetch_array($Result)) {
echo '<tr class="striped_row">
<td>' . $MyRow['description'] . '</td>
<td>' . $MyRow['authoriser'] . '</td>
<td><a href="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?SelectedDepartmentID=' . $MyRow['departmentid'] . '">' . _('Edit') . '</a></td>
<td><a href="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?SelectedDepartmentID=' . $MyRow['departmentid'] . '&delete=1" onclick="return confirm(\'' . _('Are you sure you wish to delete this department?') . '\');">' . _('Delete') . '</a></td>
</tr>';
} //END WHILE LIST LOOP
echo '</table>';
} //end of ifs and buts!
if (isset($SelectedDepartmentID)) {
echo '<div class="centre">
<a href="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '">' . _('View all Departments') . '</a>
</div>';
}
echo '<br />';
if (! isset($_GET['delete'])) {
echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '">';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
if (isset($SelectedDepartmentID)) {
//editing an existing section
$SQL = "SELECT departmentid,
description,
authoriser
FROM departments
WHERE departmentid='" . $SelectedDepartmentID . "'";
$Result = DB_query($SQL);
if ( DB_num_rows($Result) == 0 ) {
prnMsg( _('The selected departemnt could not be found.'),'warn');
unset($SelectedDepartmentID);
} else {
$MyRow = DB_fetch_array($Result);
$_POST['DepartmentID'] = $MyRow['departmentid'];
$_POST['DepartmentName'] = $MyRow['description'];
$AuthoriserID = $MyRow['authoriser'];
echo '<input type="hidden" name="SelectedDepartmentID" value="' . $_POST['DepartmentID'] . '" />';
echo '<fieldset>
<legend>', _('Edit Department Details'), '</legend>';
}
} else {
$_POST['DepartmentName']='';
echo '<fieldset>
<legend>', _('Create New Department Details'), '</legend>';
}
echo '<field>
<label for="DepartmentName">' . _('Department Name') . ':' . '</label>
<input type="text" name="DepartmentName" size="50" required="required" title="" maxlength="100" value="' . $_POST['DepartmentName'] . '" />
<fieldhelp>' ._('The department name is required') . '</fieldhelp>
</field>
<field>
<label for="Authoriser">' . _('Authoriser') . '</label>
<select name="Authoriser">';
$usersql="SELECT userid FROM www_users";
$userresult=DB_query($usersql);
while ($MyRow=DB_fetch_array($userresult)) {
if ($MyRow['userid']==$AuthoriserID) {
echo '<option selected="True" value="'.$MyRow['userid'].'">' . $MyRow['userid'] . '</option>';
} else {
echo '<option value="'.$MyRow['userid'].'">' . $MyRow['userid'] . '</option>';
}
}
echo '</select>
</field>
</fieldset>
<div class="centre">
<input type="submit" name="Submit" value="' . _('Enter Information') . '" />
</div>
</form>';
} //end if record deleted no point displaying form to add record
include('includes/footer.php');
?>