forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WorkCentres.php
296 lines (250 loc) · 10.7 KB
/
WorkCentres.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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
<?php
/* Defines the various centres of work within a manufacturing company. Also the overhead and labour rates applicable to the work centre and its standard capacity */
include('includes/session.php');
$Title = _('Work Centres');
$ViewTopic = 'Manufacturing';
$BookMark = 'WorkCentres';
include('includes/header.php');
if (isset($_POST['SelectedWC'])){
$SelectedWC =$_POST['SelectedWC'];
} elseif (isset($_GET['SelectedWC'])){
$SelectedWC =$_GET['SelectedWC'];
}
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 (mb_strlen($_POST['Code']) < 2) {
$InputError = 1;
prnMsg(_('The Work Centre code must be at least 2 characters long'),'error');
}
if (mb_strlen($_POST['Description'])<3) {
$InputError = 1;
prnMsg(_('The Work Centre description must be at least 3 characters long'),'error');
}
if (mb_strstr($_POST['Code'],' ') OR ContainsIllegalCharacters($_POST['Code']) ) {
$InputError = 1;
prnMsg(_('The work centre code cannot contain any of the following characters') . " - ' & + \" \\ " . _('or a space'),'error');
}
if (isset($SelectedWC) AND $InputError !=1) {
/*SelectedWC 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*/
$sql = "UPDATE workcentres SET location = '" . $_POST['Location'] . "',
description = '" . $_POST['Description'] . "',
overheadrecoveryact ='" . $_POST['OverheadRecoveryAct'] . "',
overheadperhour = '" . $_POST['OverheadPerHour'] . "'
WHERE code = '" . $SelectedWC . "'";
$msg = _('The work centre record has been updated');
} elseif ($InputError !=1) {
/*Selected work centre is null cos no item selected on first time round so must be adding a record must be submitting new entries in the new work centre form */
$sql = "INSERT INTO workcentres (code,
location,
description,
overheadrecoveryact,
overheadperhour)
VALUES ('" . $_POST['Code'] . "',
'" . $_POST['Location'] . "',
'" . $_POST['Description'] . "',
'" . $_POST['OverheadRecoveryAct'] . "',
'" . $_POST['OverheadPerHour'] . "'
)";
$msg = _('The new work centre has been added to the database');
}
//run the SQL from either of the above possibilites
if ($InputError !=1){
$result = DB_query($sql,_('The update/addition of the work centre failed because'));
prnMsg($msg,'success');
unset ($_POST['Location']);
unset ($_POST['Description']);
unset ($_POST['Code']);
unset ($_POST['OverheadRecoveryAct']);
unset ($_POST['OverheadPerHour']);
unset ($SelectedWC);
}
} elseif (isset($_GET['delete'])) {
//the link to delete a selected record was clicked instead of the submit button
// PREVENT DELETES IF DEPENDENT RECORDS IN 'BOM'
$sql= "SELECT COUNT(*) FROM bom WHERE bom.workcentreadded='" . $SelectedWC . "'";
$result = DB_query($sql);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
prnMsg(_('Cannot delete this work centre because bills of material have been created requiring components to be added at this work center') . '<br />' . _('There are') . ' ' . $myrow[0] . ' ' ._('BOM items referring to this work centre code'),'warn');
} else {
$sql= "SELECT COUNT(*) FROM contractbom WHERE contractbom.workcentreadded='" . $SelectedWC . "'";
$result = DB_query($sql);
$myrow = DB_fetch_row($result);
if ($myrow[0]>0) {
prnMsg(_('Cannot delete this work centre because contract bills of material have been created having components added at this work center') . '<br />' . _('There are') . ' ' . $myrow[0] . ' ' . _('Contract BOM items referring to this work centre code'),'warn');
} else {
$sql="DELETE FROM workcentres WHERE code='" . $SelectedWC . "'";
$result = DB_query($sql);
prnMsg(_('The selected work centre record has been deleted'),'succes');
} // end of Contract BOM test
} // end of BOM test
}
if (!isset($SelectedWC)) {
/* It could still be the second time the page has been run and a record has been selected for modification - SelectedWC 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 and the list of work centres will be displayed with
links to delete or edit each. These will call the same page again and allow update/input
or deletion of the records*/
echo '<p class="page_title_text">
<img src="'.$RootPath.'/css/'.$Theme.'/images/maintenance.png" title="' . _('Search') . '" alt="" />' . ' ' . $Title . '
</p>';
$sql = "SELECT workcentres.code,
workcentres.description,
locations.locationname,
workcentres.overheadrecoveryact,
workcentres.overheadperhour
FROM workcentres,
locations
INNER JOIN locationusers ON locationusers.loccode=locations.loccode AND locationusers.userid='" . $_SESSION['UserID'] . "' AND locationusers.canview=1
WHERE workcentres.location = locations.loccode";
$result = DB_query($sql);
echo '<table class="selection">
<thead>
<tr>
<th class="ascending">', _('WC Code'), '</th>
<th class="ascending">', _('Description'), '</th>
<th class="ascending">', _('Location'), '</th>
<th class="ascending">', _('Overhead GL Account'), '</th>
<th class="ascending">', _('Overhead Per Hour'), '</th>
<th colspan="2"> </th>
</tr>
</thead>
<tbody>';
while ($myrow = DB_fetch_array($result)) {
printf('<tr>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td class="number">%s</td>
<td><a href="%s&SelectedWC=%s">' . _('Edit') . '</a></td>
<td><a href="%s&SelectedWC=%s&delete=yes" onclick="return confirm(\'' . _('Are you sure you wish to delete this work centre?') . '\');">' . _('Delete') . '</a></td>
</tr>',
$myrow['code'],
$myrow['description'],
$myrow['locationname'],
$myrow['overheadrecoveryact'],
$myrow['overheadperhour'],
htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?',
$myrow['code'],
htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?',
$myrow['code']);
}
//END WHILE LIST LOOP
echo '</tbody></table>';
}
//end of ifs and buts!
if (isset($SelectedWC)) {
echo '<p class="page_title_text"><img alt="" src="', $RootPath, '/css/', $Theme,
'/images/maintenance.png" title="',// Icon image.
$Title, '" /> ',// Icon title.
$Title, '</p>';// Page title.
echo '<div class="centre"><a href="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '">' . _('Show all Work Centres') . '</a></div>';
}
echo '<br />
<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '">';
echo '<div>';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
if (isset($SelectedWC)) {
//editing an existing work centre
$sql = "SELECT code,
location,
description,
overheadrecoveryact,
overheadperhour
FROM workcentres
INNER JOIN locationusers ON locationusers.loccode=workcentres.location AND locationusers.userid='" . $_SESSION['UserID'] . "' AND locationusers.canupd=1
WHERE code='" . $SelectedWC . "'";
$result = DB_query($sql);
$myrow = DB_fetch_array($result);
$_POST['Code'] = $myrow['code'];
$_POST['Location'] = $myrow['location'];
$_POST['Description'] = $myrow['description'];
$_POST['OverheadRecoveryAct'] = $myrow['overheadrecoveryact'];
$_POST['OverheadPerHour'] = $myrow['overheadperhour'];
echo '<input type="hidden" name="SelectedWC" value="' . $SelectedWC . '" />
<input type="hidden" name="Code" value="' . $_POST['Code'] . '" />
<table class="selection">
<tr>
<td>' ._('Work Centre Code') . ':</td>
<td>' . $_POST['Code'] . '</td>
</tr>';
} else { //end of if $SelectedWC only do the else when a new record is being entered
if (!isset($_POST['Code'])) {
$_POST['Code'] = '';
}
echo '<table class="selection">
<tr>
<td>' . _('Work Centre Code') . ':</td>
<td><input type="text" name="Code" pattern="[^&+-]{2,}" required="required" autofocus="autofocus" title="'._('The code should be at least 2 characters and no illegal characters allowed').'" size="6" maxlength="5" value="' . $_POST['Code'] . '" placeholder="'._('More than 2 legal characters').'" /></td>
</tr>';
}
$SQL = "SELECT locationname,
locations.loccode
FROM locations
INNER JOIN locationusers ON locationusers.loccode=locations.loccode AND locationusers.userid='" . $_SESSION['UserID'] . "' AND locationusers.canupd=1";
$result = DB_query($SQL);
if (!isset($_POST['Description'])) {
$_POST['Description'] = '';
}
echo '<tr>
<td>' . _('Work Centre Description') . ':</td>
<td><input type="text" pattern="[^&+-]{3,}" required="required" title="'._('The Work Center should be more than 3 characters and no illegal characters allowed').'" name="Description" ' . (isset($SelectedWC)? 'autofocus="autofocus"': '') . ' size="21" maxlength="20" value="' . $_POST['Description'] . '" placeholder="'._('More than 3 legal characters').'" /></td>
</tr>
<tr>
<td>' . _('Location') . ':</td>
<td><select name="Location">';
while ($myrow = DB_fetch_array($result)) {
if (isset($_POST['Location']) and $myrow['loccode']==$_POST['Location']) {
echo '<option selected="selected" value="';
} else {
echo '<option value="';
}
echo $myrow['loccode'] . '">' . $myrow['locationname'] . '</option>';
} //end while loop
DB_free_result($result);
echo '</select></td>
</tr>
<tr>
<td>' . _('Overhead Recovery GL Account') . ':</td>
<td><select name="OverheadRecoveryAct">';
//SQL to poulate account selection boxes
$SQL = "SELECT accountcode,
accountname
FROM chartmaster INNER JOIN accountgroups
ON chartmaster.group_=accountgroups.groupname
WHERE accountgroups.pandl!=0
ORDER BY accountcode";
$result = DB_query($SQL);
while ($myrow = DB_fetch_array($result)) {
if (isset($_POST['OverheadRecoveryAct']) and $myrow['accountcode']==$_POST['OverheadRecoveryAct']) {
echo '<option selected="selected" value="';
} else {
echo '<option value="';
}
echo $myrow['accountcode'] . '">' . htmlspecialchars($myrow['accountname'], ENT_QUOTES, 'UTF-8', false) . '</option>';
} //end while loop
DB_free_result($result);
if (!isset($_POST['OverheadPerHour'])) {
$_POST['OverheadPerHour']=0;
}
echo '</select></td></tr>';
echo '<tr>
<td>' . _('Overhead Per Hour') . ':</td>
<td><input type="text" class="number" name="OverheadPerHour" size="6" title="'._('The input must be numeric').'" maxlength="6" value="'.$_POST['OverheadPerHour'].'" />';
echo '</td>
</tr>
</table>
<br />
<div class="centre">
<input type="submit" name="submit" value="' . _('Enter Information') . '" />
</div>
</div>
</form>';
include('includes/footer.php');
?>