forked from timschofield/webERP
-
Notifications
You must be signed in to change notification settings - Fork 89
/
CollectiveWorkOrderCost.php
521 lines (467 loc) · 17.9 KB
/
CollectiveWorkOrderCost.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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
<?php
/* Multiple work orders cost review */
include('includes/session.php');
$Title = _('Search Work Orders');
$ViewTopic = 'GeneralLedger';
$BookMark = 'Z_ChangeGLAccountCode';
include('includes/header.php');
echo '<p class="page_title_text"><img alt="" src="', $RootPath, '/css/', $Theme,
'/images/magnifier.png" title="', // Icon image.
$Title, '" /> ', // Icon title.
$Title, '</p>';// Page title.
echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '" method="post">
<div>
<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
if (isset($_POST['Submit'])) {//users have selected the WO to calculate and submit it
$WOSelected = '';
$i = 0;
foreach ($_POST as $Key=>$Value) {
if (substr($Key,0,3) == 'WO_'){
if ($i>0) $WOSelected .=",";
if($Value == 'on'){
$WOSelected .= substr($Key,3);
}
$i++;
}
}
if (empty($WOSelected)) {
prnMsg(_('There are no work orders selected'),'error');
} else {
//lets do the workorder issued items retrieve
$sql = "SELECT stockmoves.stockid,
stockmaster.description,
stockmaster.decimalplaces,
trandate,
qty,
reference,
stockmoves.standardcost
FROM stockmoves INNER JOIN stockmaster
ON stockmoves.stockid=stockmaster.stockid
WHERE stockmoves.type=28
AND reference IN (" . $WOSelected . ")
ORDER BY reference";
$ErrMsg = _('Failed to retrieve wo cost data');
$result = DB_query($sql,$ErrMsg);
if (DB_num_rows($result)>0) {
echo '<table class="selection">
<thead>
<tr>
<th class="ascending">' . _('Item') . '</th>
<th>' . _('Description') . '</th>
<th class="ascending">' . _('Date Issued') . '</th>
<th class="ascending">' . _('Issued Qty') . '</th>
<th class="ascending">' . _('Issued Cost') . '</th>
<th class="ascending">' . _('Work Order') . '</th>
</tr>
</thead>
<tbody>';
$TotalCost = 0;
while ($myrow = DB_fetch_array($result)){
$IssuedQty = - $myrow['qty'];
$IssuedCost = $IssuedQty * $myrow['standardcost'];
$TotalCost += $IssuedCost;
echo '<tr class="striped_row">
<td>' . $myrow['stockid'] . '</td>
<td>' . $myrow['description'] . '</td>
<td>' . $myrow['trandate'] . '</td>
<td class="number">' . locale_number_format($IssuedQty,$myrow['decimalplaces']) . '</td>
<td class="number">' . locale_number_format($IssuedCost,2) . '</td>
<td>' . $myrow['reference'] . '</td>
</tr>';
}
echo '</tbody>
<tfoot>
<tr>
<td colspan="4"><b>' . _('Total Cost') . '</b></td>
<td colspan="2"><b>' .locale_number_format($TotalCost,2) . '</b></td>
</tr>
</tfoot>
</table>';
} else {
prnMsg(_('There are no data available'),'error');
include('includes/footer.php');
exit;
}
}//end of the work orders are not empty
echo '<a href="'.htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '">' . _('Select Other Work Orders') . '</a>';
include('includes/footer.php');
exit;
}
if (isset($_GET['WO'])) {
$SelectedWO = $_GET['WO'];
} elseif (isset($_POST['WO'])){
$SelectedWO = $_POST['WO'];
} else {
unset($SelectedWO);
}
if (isset($_GET['SelectedStockItem'])) {
$SelectedStockItem = $_GET['SelectedStockItem'];
} elseif (isset($_POST['SelectedStockItem'])){
$SelectedStockItem = $_POST['SelectedStockItem'];
} else {
unset($SelectedStockItem);
}
if (isset($_POST['ResetPart'])){
unset($SelectedStockItem);
}
if (isset($SelectedWO) AND $SelectedWO!='') {
$SelectedWO = trim($SelectedWO);
if (!is_numeric($SelectedWO)){
prnMsg(_('The work order number entered MUST be numeric'),'warn');
unset ($SelectedWO);
include('includes/footer.php');
exit;
} else {
echo _('Work Order Number') . ' - ' . $SelectedWO;
}
}
if (isset($_POST['SearchParts'])){
if ($_POST['Keywords'] AND $_POST['StockCode']) {
echo _('Stock description keywords have been used in preference to the Stock code extract entered');
}
if ($_POST['Keywords']) {
//insert wildcard characters in spaces
$SearchString = '%' . str_replace(' ', '%', $_POST['Keywords']) . '%';
$SQL = "SELECT stockmaster.stockid,
stockmaster.description,
stockmaster.decimalplaces,
SUM(locstock.quantity) AS qoh,
stockmaster.units
FROM stockmaster,
locstock
WHERE stockmaster.stockid=locstock.stockid
AND stockmaster.description " . LIKE . " '" . $SearchString . "'
AND stockmaster.categoryid='" . $_POST['StockCat']. "'
AND stockmaster.mbflag='M'
GROUP BY stockmaster.stockid,
stockmaster.description,
stockmaster.decimalplaces,
stockmaster.units
ORDER BY stockmaster.stockid";
} elseif (isset($_POST['StockCode'])){
$SQL = "SELECT stockmaster.stockid,
stockmaster.description,
stockmaster.decimalplaces,
sum(locstock.quantity) as qoh,
stockmaster.units
FROM stockmaster,
locstock
WHERE stockmaster.stockid=locstock.stockid
AND stockmaster.stockid " . LIKE . " '%" . $_POST['StockCode'] . "%'
AND stockmaster.categoryid='" . $_POST['StockCat'] . "'
AND stockmaster.mbflag='M'
GROUP BY stockmaster.stockid,
stockmaster.description,
stockmaster.decimalplaces,
stockmaster.units
ORDER BY stockmaster.stockid";
} elseif (!isset($_POST['StockCode']) AND !isset($_POST['Keywords'])) {
$SQL = "SELECT stockmaster.stockid,
stockmaster.description,
stockmaster.decimalplaces,
sum(locstock.quantity) as qoh,
stockmaster.units
FROM stockmaster,
locstock
WHERE stockmaster.stockid=locstock.stockid
AND stockmaster.categoryid='" . $_POST['StockCat'] ."'
AND stockmaster.mbflag='M'
GROUP BY stockmaster.stockid,
stockmaster.description,
stockmaster.decimalplaces,
stockmaster.units
ORDER BY stockmaster.stockid";
}
$ErrMsg = _('No items were returned by the SQL because');
$DbgMsg = _('The SQL used to retrieve the searched parts was');
$StockItemsResult = DB_query($SQL,$ErrMsg,$DbgMsg);
}
if (isset($_POST['StockID'])){
$StockID = trim(mb_strtoupper($_POST['StockID']));
} elseif (isset($_GET['StockID'])){
$StockID = trim(mb_strtoupper($_GET['StockID']));
}
if (!isset($StockID)) {
/* Not appropriate really to restrict search by date since may miss older
ouststanding orders
$OrdersAfterDate = Date('d/m/Y',Mktime(0,0,0,Date('m')-2,Date('d'),Date('Y')));
*/
if (!isset($SelectedWO) or ($SelectedWO=='')){
echo '<table class="selection"><tr><td>';
if (isset($SelectedStockItem)) {
echo _('For the item') . ': ' . $SelectedStockItem . ' ' . _('and') . ' <input type="hidden" name="SelectedStockItem" value="' . $SelectedStockItem . '" />';
}
echo _('Work Order number') . ': <input type="text" name="WO" autofocus="autofocus" maxlength="8" size="9" /> ' . _('Processing at') . ':<select name="StockLocation"> ';
$sql = "SELECT locations.loccode, locationname FROM locations
INNER JOIN locationusers
ON locationusers.loccode=locations.loccode
AND locationusers.userid='" . $_SESSION['UserID'] . "'
AND locationusers.canview=1
WHERE locations.usedforwo = 1";
$resultStkLocs = DB_query($sql);
while ($myrow=DB_fetch_array($resultStkLocs)){
if (isset($_POST['StockLocation'])){
if ($myrow['loccode'] == $_POST['StockLocation']){
echo '<option selected="selected" value="' . $myrow['loccode'] . '">' . $myrow['locationname'] . '</option>';
} else {
echo '<option value="' . $myrow['loccode'] . '">' . $myrow['locationname'] . '</option>';
}
} elseif ($myrow['loccode']==$_SESSION['UserStockLocation']){
echo '<option selected="selected" value="' . $myrow['loccode'] . '">' . $myrow['locationname'] . '</option>';
} else {
echo '<option value="' . $myrow['loccode'] . '">' . $myrow['locationname'] . '</option>';
}
}
echo '</select>
<select name="ClosedOrOpen">';
if ($_GET['ClosedOrOpen']=='Closed_Only'){
$_POST['ClosedOrOpen']='Closed_Only';
}
if ($_POST['ClosedOrOpen']=='Closed_Only'){
echo '<option selected="selected" value="Closed_Only">' . _('Closed Work Orders Only') . '</option>';
echo '<option value="Open_Only">' . _('Open Work Orders Only') . '</option>';
echo '<option value="All">' . _('All') . '</option>';
} elseif($_POST['ClosedOrOpen'] == 'Open_Only') {
echo '<option value="Closed_Only">' . _('Closed Work Orders Only') . '</option>';
echo '<option selected="selected" value="Open_Only">' . _('Open Work Orders Only') . '</option>';
echo '<option value="All">' . _('All') . '</option>';
} elseif ($_POST['ClosedOrOpen'] == 'All') {
echo '<option value="Closed_Only">' . _('Closed Work Orders Only') . '</option>';
echo '<option value="Open_Only">' . _('Open Work Orders Only') . '</option>';
echo '<option selected="selected" value="All">' . _('All') . '</option>';
} else {
echo '<option value="Closed_Only">' . _('Closed Work Orders Only') . '</option>';
echo '<option value="Open_Only">' . _('Open Work Orders Only') . '</option>';
echo '<option selected="selected" value="All">' . _('All') . '</option>';
}
if (!isset($_POST['DateFrom'])) {
$_POST['DateFrom'] = '';
}
if (!isset($_POST['DateTo'])) {
$_POST['DateTo'] = '';
}
echo '</select>
</td>
</tr>
<tr>
<td colspan="2">' . _('Start Date From') . ':<input type="text" name="DateFrom" value="' . $_POST['DateFrom'] . '" class="date" />
' . _('Start Date To') . ':<input type="text" name="DateTo" value="' . $_POST['DateTo'] . '" class="date" />
</td>
</tr>
</table>';
echo '<div class="centre">
<input type="submit" name="SearchOrders" value="' . _('Search') . '" />
<a href="' . $RootPath . '/WorkOrderEntry.php">' . _('New Work Order') . '</a>
</div>
<br />';
}
$SQL="SELECT categoryid,
categorydescription
FROM stockcategory
ORDER BY categorydescription";
$result1 = DB_query($SQL);
echo '<table class="selection">
<tr>
<th colspan="6"><h3>' . _('To search for work orders for a specific item use the item selection facilities below') . '</h3></th>
</tr>
<tr>
<td>' . _('Select a stock category') . ':
<select name="StockCat">';
while ($myrow1 = DB_fetch_array($result1)) {
echo '<option value="'. $myrow1['categoryid'] . '">' . $myrow1['categorydescription'] . '</option>';
}
echo '</select></td>
<td>' . _('Enter text extract(s) in the description') . ':</td>
<td><input type="text" name="Keywords" size="20" maxlength="25" /></td>
</tr>
<tr>
<td></td>
<td><b>' . _('OR') . ' </b>' . _('Enter extract of the Stock Code') . ':</td>
<td><input type="text" name="StockCode" size="15" maxlength="18" /></td>
</tr>
</table><br />';
echo '<div class="centre"><input type="submit" name="SearchParts" value="' . _('Search Items Now') . '" />
<input type="submit" name="ResetPart" value="' . _('Show All') . '" /></div>';
if (isset($StockItemsResult)) {
echo '<br />
<table cellpadding="2" class="selection">
<thead>
<tr>
<th class="ascending">' . _('Code') . '</th>
<th class="ascending">' . _('Description') . '</th>
<th class="ascending">' . _('On Hand') . '</th>
<th>' . _('Units') . '</th>
</tr>
</thead>
<tbody>';
while ($myrow=DB_fetch_array($StockItemsResult)) {
printf('<tr class="striped_row">
<td><input type="submit" name="SelectedStockItem" value="%s" /></td>
<td>%s</td>
<td class="number">%s</td>
<td>%s</td>
</tr>',
$myrow['stockid'],
$myrow['description'],
locale_number_format($myrow['qoh'],$myrow['decimalplaces']),
$myrow['units']);
}//end of while loop
echo '</tbody>
</table>';
}
//end if stock search results to show
else {
if (!isset($_POST['StockLocation'])) {
$_POST['StockLocation'] = '';
}
//figure out the SQL required from the inputs available
if (isset($_POST['ClosedOrOpen']) and $_POST['ClosedOrOpen']=='Open_Only'){
$ClosedOrOpen = ' AND workorders.closed=0';
} elseif(isset($_POST['ClosedOrOpen']) AND $_POST['ClosedOrOpen'] == 'Closed_Only') {
$ClosedOrOpen = ' AND workorders.closed=1';
} else {
$ClosedOrOpen = '';
}
//start date and end date
if (!empty($_POST['DateFrom'])) {
$StartDateFrom = " AND workorders.startdate>='" . FormatDateForSQL($_POST['DateFrom']) . "'";
}
if (!empty($_POST['DateTo'])) {
$StartDateTo = " AND workorders.startdate<='" . FormatDateForSQL($_POST['DateTo']) . "'";
}
if (isset($SelectedWO) AND $SelectedWO !='') {
$SQL = "SELECT workorders.wo,
woitems.stockid,
stockmaster.description,
stockmaster.decimalplaces,
woitems.qtyreqd,
woitems.qtyrecd,
workorders.requiredby,
workorders.startdate
FROM workorders
INNER JOIN woitems ON workorders.wo=woitems.wo
INNER JOIN stockmaster ON woitems.stockid=stockmaster.stockid
INNER JOIN locationusers ON locationusers.loccode=workorders.loccode AND locationusers.userid='" . $_SESSION['UserID'] . "' AND locationusers.canview=1
WHERE 1 " . $ClosedOrOpen . $StartDateFrom . $StartDateTo . "
AND workorders.wo='". $SelectedWO ."'
ORDER BY workorders.wo,
woitems.stockid";
} else {
/* $DateAfterCriteria = FormatDateforSQL($OrdersAfterDate); */
if (isset($SelectedStockItem)) {
$SQL = "SELECT workorders.wo,
woitems.stockid,
stockmaster.description,
stockmaster.decimalplaces,
woitems.qtyreqd,
woitems.qtyrecd,
workorders.requiredby,
workorders.startdate
FROM workorders
INNER JOIN woitems ON workorders.wo=woitems.wo
INNER JOIN stockmaster ON woitems.stockid=stockmaster.stockid
INNER JOIN locationusers ON locationusers.loccode=workorders.loccode AND locationusers.userid='" . $_SESSION['UserID'] . "' AND locationusers.canview=1
WHERE 1 " . $ClosedOrOpen . $StartDateFrom . $StartDateTo . "
AND woitems.stockid='". $SelectedStockItem ."'
AND workorders.loccode='" . $_POST['StockLocation'] . "'
ORDER BY workorders.wo,
woitems.stockid";
} else {
$SQL = "SELECT workorders.wo,
woitems.stockid,
stockmaster.description,
stockmaster.decimalplaces,
woitems.qtyreqd,
woitems.qtyrecd,
workorders.requiredby,
workorders.startdate
FROM workorders
INNER JOIN woitems ON workorders.wo=woitems.wo
INNER JOIN locationusers ON locationusers.loccode=workorders.loccode AND locationusers.userid='" . $_SESSION['UserID'] . "' AND locationusers.canview=1
INNER JOIN stockmaster ON woitems.stockid=stockmaster.stockid
WHERE 1 " . $ClosedOrOpen . $StartDateFrom . $StartDateTo ."
AND workorders.loccode='" . $_POST['StockLocation'] . "'
ORDER BY workorders.wo,
woitems.stockid";
}
} //end not order number selected
$ErrMsg = _('No works orders were returned by the SQL because');
$WorkOrdersResult = DB_query($SQL,$ErrMsg);
/*show a table of the orders returned by the SQL */
if (DB_num_rows($WorkOrdersResult)>0) {
echo '<br />
<form action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '" method="post" id="wos">
<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />
<table cellpadding="2" width="95%" class="selection">
<thead>
<tr>
<th>' . _('Select') . '</th>
<th>' . _('Modify') . '</th>
<th class="ascending">' . _('Status') . '</th>
<th>' . _('Issue To') . '</th>
<th>' . _('Receive') . '</th>
<th>' . _('Costing') . '</th>
<th>' . _('Paperwork') . '</th>
<th class="ascending">' . _('Item') . '</th>
<th class="ascending">' . _('Quantity Required') . '</th>
<th class="ascending">' . _('Quantity Received') . '</th>
<th class="ascending">' . _('Quantity Outstanding') . '</th>
<th class="ascending">' . _('Start Date') . '</th>
<th class="ascending">' . _('Required Date') . '</th>
</tr>
</thead>
<tbody>';
while ($myrow=DB_fetch_array($WorkOrdersResult)) {
$ModifyPage = $RootPath . '/WorkOrderEntry.php?WO=' . $myrow['wo'];
$Status_WO = $RootPath . '/WorkOrderStatus.php?WO=' .$myrow['wo'] . '&StockID=' . $myrow['stockid'];
$Receive_WO = $RootPath . '/WorkOrderReceive.php?WO=' .$myrow['wo'] . '&StockID=' . $myrow['stockid'];
$Issue_WO = $RootPath . '/WorkOrderIssue.php?WO=' .$myrow['wo'] . '&StockID=' . $myrow['stockid'];
$Costing_WO =$RootPath . '/WorkOrderCosting.php?WO=' .$myrow['wo'];
$Printing_WO =$RootPath . '/PDFWOPrint.php?WO=' .$myrow['wo'] . '&StockID=' . $myrow['stockid'];
$FormatedRequiredByDate = ConvertSQLDate($myrow['requiredby']);
$FormatedStartDate = ConvertSQLDate($myrow['startdate']);
printf('<tr class="striped_row">
<td><input type="checkbox" name="WO_%s" /></td>
<td><a href="%s">%s</a></td>
<td><a href="%s">' . _('Status') . '</a></td>
<td><a href="%s">' . _('Issue To') . '</a></td>
<td><a href="%s">' . _('Receive') . '</a></td>
<td><a href="%s">' . _('Costing') . '</a></td>
<td><a href="%s">' . _('Print W/O') . '</a></td>
<td>%s - %s</td>
<td class="number">%s</td>
<td class="number">%s</td>
<td class="number">%s</td>
<td>%s</td>
<td>%s</td>
</tr>',
$myrow['wo'],
$ModifyPage,
$myrow['wo'],
$Status_WO,
$Issue_WO,
$Receive_WO,
$Costing_WO,
$Printing_WO,
$myrow['stockid'],
$myrow['description'],
locale_number_format($myrow['qtyreqd'],$myrow['decimalplaces']),
locale_number_format($myrow['qtyrecd'],$myrow['decimalplaces']),
locale_number_format($myrow['qtyreqd']-$myrow['qtyrecd'],$myrow['decimalplaces']),
$FormatedStartDate,
$FormatedRequiredByDate);
//end of page full new headings if
}
//end of while loop
echo '</tbody>
</table>
<div class="centre">
<input type="submit" value="' . _('Submit') . '" name="Submit" />
</form>';
}
}
echo '</div>
</form>';
}
include('includes/footer.php');
?>