forked from timschofield/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPO_SelectPurchOrder.php
471 lines (456 loc) · 18.6 KB
/
PO_SelectPurchOrder.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
<?php
include ('includes/session.php');
$Title = _('Search Purchase Orders');
$ViewTopic = 'PurchaseOrdering';
$BookMark = '';
include ('includes/header.php');
echo '<p class="page_title_text">
<img src="' . $RootPath . '/css/' . $Theme . '/images/magnifier.png" title="' . _('Purchase Orders') . '" alt="" />' . ' ' . _('Purchase Orders') .
'</p>';
if (isset($_GET['SelectedStockItem'])) {
$SelectedStockItem = $_GET['SelectedStockItem'];
} elseif (isset($_POST['SelectedStockItem'])) {
$SelectedStockItem = $_POST['SelectedStockItem'];
}
if (isset($_GET['OrderNumber'])) {
$OrderNumber = $_GET['OrderNumber'];
} elseif (isset($_POST['OrderNumber'])) {
$OrderNumber = $_POST['OrderNumber'];
}
if (isset($_GET['SelectedSupplier'])) {
$SelectedSupplier = $_GET['SelectedSupplier'];
} elseif (isset($_POST['SelectedSupplier'])) {
$SelectedSupplier = $_POST['SelectedSupplier'];
}
echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '" method="post">
<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
if (isset($_POST['ResetPart'])) {
unset($SelectedStockItem);
}
if (isset($OrderNumber) AND $OrderNumber != '') {
if (!is_numeric($OrderNumber)) {
prnMsg(_('The Order Number entered') . ' <U>' . _('MUST') . '</U> ' . _('be numeric'), 'error');
unset($OrderNumber);
} else {
echo _('Order Number') . ' - ' . $OrderNumber;
}
} else {
if (isset($SelectedSupplier)) {
echo _('For supplier') . ': ' . $SelectedSupplier . ' ' . _('and') . ' ';
echo '<input type="hidden" name="SelectedSupplier" value="' . $SelectedSupplier . '" />';
}
}
if (isset($_POST['SearchParts'])) {
if ($_POST['Keywords'] AND $_POST['StockCode']) {
prnMsg(_('Stock description keywords have been used in preference to the Stock code extract entered'), 'info');
}
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,
SUM(purchorderdetails.quantityord-purchorderdetails.quantityrecd) AS qord
FROM stockmaster INNER JOIN locstock
ON stockmaster.stockid = locstock.stockid INNER JOIN purchorderdetails
ON stockmaster.stockid=purchorderdetails.itemcode
WHERE purchorderdetails.completed=1
AND stockmaster.description " . LIKE . " '" . $SearchString ."'
AND stockmaster.categoryid='" . $_POST['StockCat'] . "'
GROUP BY stockmaster.stockid,
stockmaster.description,
stockmaster.decimalplaces,
stockmaster.units
ORDER BY stockmaster.stockid";
} elseif ($_POST['StockCode']) {
$SQL = "SELECT stockmaster.stockid,
stockmaster.description,
stockmaster.decimalplaces,
SUM(locstock.quantity) AS qoh,
SUM(purchorderdetails.quantityord-purchorderdetails.quantityrecd) AS qord,
stockmaster.units
FROM stockmaster INNER JOIN locstock
ON stockmaster.stockid = locstock.stockid
INNER JOIN purchorderdetails ON stockmaster.stockid=purchorderdetails.itemcode
WHERE purchorderdetails.completed=1
AND stockmaster.stockid " . LIKE . " '%" . $_POST['StockCode'] . "%'
AND stockmaster.categoryid='" . $_POST['StockCat'] . "'
GROUP BY stockmaster.stockid,
stockmaster.description,
stockmaster.decimalplaces,
stockmaster.units
ORDER BY stockmaster.stockid";
} elseif (!$_POST['StockCode'] AND !$_POST['Keywords']) {
$SQL = "SELECT stockmaster.stockid,
stockmaster.description,
stockmaster.decimalplaces,
SUM(locstock.quantity) AS qoh,
stockmaster.units,
SUM(purchorderdetails.quantityord-purchorderdetails.quantityrecd) AS qord
FROM stockmaster INNER JOIN locstock ON stockmaster.stockid = locstock.stockid
INNER JOIN purchorderdetails ON stockmaster.stockid=purchorderdetails.itemcode
WHERE purchorderdetails.completed=1
AND stockmaster.categoryid='" . $_POST['StockCat'] . "'
GROUP BY stockmaster.stockid,
stockmaster.description,
stockmaster.decimalplaces,
stockmaster.units
ORDER BY stockmaster.stockid";
}
$ErrMsg = _('No stock items were returned by the SQL because');
$DbgMsg = _('The SQL used to retrieve the searched parts was');
$StockItemsResult = DB_query($SQL, $ErrMsg, $DbgMsg);
}
/* Not appropriate really to restrict search by date since user may miss older
* ouststanding orders
* $OrdersAfterDate = Date("d/m/Y",Mktime(0,0,0,Date("m")-2,Date("d"),Date("Y")));
*/
if (!isset($OrderNumber) or $OrderNumber == "") {
echo '<fieldset>
<legend>', _('Order Selection Options'), '</legend>';
if (isset($SelectedStockItem)) {
echo _('For the part') . ':<b>' . $SelectedStockItem . '</b> ' . _('and') . ' <input type="hidden" name="SelectedStockItem" value="' . $SelectedStockItem . '" />';
}
echo '<field>
<label for="OrderNumber">', _('Order Number') . ':</label>
<input class="integer" name="OrderNumber" autofocus="autofocus" maxlength="8" size="9" />
</field>';
echo '<field>
<label for="StockLocation">' . _('Into Stock Location') . ':</label>
<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";
$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>
</field>';
echo '<field>
<label for="Status">' . _('Order Status:') .'</label>
<select name="Status">';
if (!isset($_POST['Status']) OR $_POST['Status']=='Pending_Authorised_Completed'){
echo '<option selected="selected" value="Pending_Authorised_Completed">' . _('Pending/Authorised/Completed') . '</option>';
} else {
echo '<option value="Pending_Authorised_Completed">' . _('Pending/Authorised/Completed') . '</option>';
}
if (isset($_POST['Status']) AND $_POST['Status']=='Pending'){
echo '<option selected="selected" value="Pending">' . _('Pending') . '</option>';
} else {
echo '<option value="Pending">' . _('Pending') . '</option>';
}
if (isset($_POST['Status']) AND $_POST['Status']=='Authorised'){
echo '<option selected="selected" value="Authorised">' . _('Authorised') . '</option>';
} else {
echo '<option value="Authorised">' . _('Authorised') . '</option>';
}
if (isset($_POST['Status']) AND $_POST['Status']=='Completed'){
echo '<option selected="selected" value="Completed">' . _('Completed') . '</option>';
} else {
echo '<option value="Completed">' . _('Completed') . '</option>';
}
if (isset($_POST['Status']) AND $_POST['Status']=='Cancelled'){
echo '<option selected="selected" value="Cancelled">' . _('Cancelled') . '</option>';
} else {
echo '<option value="Cancelled">' . _('Cancelled') . '</option>';
}
if (isset($_POST['Status']) AND $_POST['Status']=='Rejected'){
echo '<option selected="selected" value="Rejected">' . _('Rejected') . '</option>';
} else {
echo '<option value="Rejected">' . _('Rejected') . '</option>';
}
echo '</select>
</field>
</fieldset>';
echo '<div class="centre">
<input type="submit" name="SearchOrders" value="' . _('Search Purchase Orders') . '" />
</div>';
}
$SQL = "SELECT categoryid,
categorydescription
FROM stockcategory
ORDER BY categorydescription";
$Result1 = DB_query($SQL);
echo '<fieldset>
<legend>', _('To search for purchase orders for a specific part use the part selection facilities below') . '</legend>';
echo '<field>
<label foe="StockCat">' . _('Select a stock category') . ':</label>
<select name="StockCat">';
while ($MyRow1 = DB_fetch_array($Result1)) {
if (isset($_POST['StockCat']) and $MyRow1['categoryid'] == $_POST['StockCat']) {
echo '<option selected="selected" value="' . $MyRow1['categoryid'] . '">' . $MyRow1['categorydescription'] . '</option>';
} else {
echo '<option value="' . $MyRow1['categoryid'] . '">' . $MyRow1['categorydescription'] . '</option>';
}
}
echo '</select>
</field>';
echo '<field>
<label for="Keywords">' . _('Enter text extracts in the') . ' <b>' . _('description') . '</b>:</label>
<input type="text" name="Keywords" size="20" maxlength="25" />
</field>
<field>
<label for="StockCode">' . '<b>'. _('OR'). ' </b>'. _('Enter extract of the') . '<b> ' . _('Stock Code') . '</b>:</label>
<input type="text" name="StockCode" size="15" maxlength="18" />
</field>
</fieldset>
<div class="centre">
<input type="submit" name="SearchParts" value="' . _('Search Parts Now') . '" />
<input type="submit" name="ResetPart" value="' . _('Show All') . '" />
</div>';
if (isset($StockItemsResult)) {
echo '<table class="selection">
<thead>
<tr>
<th class="SortedColumn">' . _('Code') . '</th>
<th class="SortedColumn">' . _('Description') . '</th>
<th class="SortedColumn">' . _('On Hand') . '</th>
<th class="SortedColumn">' . _('Orders') . '<br />' . _('Outstanding') . '</th>
<th class="SortedColumn">' . _('Units') . '</th>
</tr>
</thead>
<tbody>';
while ($MyRow = DB_fetch_array($StockItemsResult)) {
echo '<tr class="striped_row">
<td><input type="submit" name="SelectedStockItem" value="' . $MyRow['stockid'] . '"</td>
<td>' . $MyRow['description'] . '</td>
<td class="number">' . locale_number_format($MyRow['qoh'],$MyRow['decimalplaces']) . '</td>
<td class="number">' . locale_number_format($MyRow['qord'],$MyRow['decimalplaces']) . '</td>
<td>' . $MyRow['units'] . '</td>
</tr>';
}
//end of while loop
echo '</tbody></table>';
}
//end if stock search results to show
else {
//figure out the SQL required from the inputs available
if (!isset($_POST['Status']) OR $_POST['Status']=='Pending_Authorised_Completed'){
$StatusCriteria = " AND (purchorders.status='Pending' OR purchorders.status='Authorised' OR purchorders.status='Printed' OR purchorders.status='Completed') ";
}elseif ($_POST['Status']=='Authorised'){
$StatusCriteria = " AND (purchorders.status='Authorised' OR purchorders.status='Printed')";
}elseif ($_POST['Status']=='Pending'){
$StatusCriteria = " AND purchorders.status='Pending' ";
}elseif ($_POST['Status']=='Rejected'){
$StatusCriteria = " AND purchorders.status='Rejected' ";
}elseif ($_POST['Status']=='Cancelled'){
$StatusCriteria = " AND purchorders.status='Cancelled' ";
} elseif($_POST['Status']=='Completed'){
$StatusCriteria = " AND purchorders.status='Completed' ";
}
if (isset($OrderNumber) AND $OrderNumber != '') {
$SQL = "SELECT purchorders.orderno,
suppliers.suppname,
purchorders.orddate,
purchorders.deliverydate,
purchorders.initiator,
purchorders.requisitionno,
purchorders.allowprint,
purchorders.status,
suppliers.currcode,
currencies.decimalplaces AS currdecimalplaces,
SUM(purchorderdetails.unitprice*purchorderdetails.quantityord) AS ordervalue
FROM purchorders
INNER JOIN purchorderdetails
ON purchorders.orderno = purchorderdetails.orderno
INNER JOIN suppliers
ON purchorders.supplierno = suppliers.supplierid
INNER JOIN currencies
ON suppliers.currcode=currencies.currabrev
WHERE purchorders.orderno='" . filter_number_format($OrderNumber) . "'
GROUP BY purchorders.orderno,
suppliers.suppname,
purchorders.orddate,
purchorders.initiator,
purchorders.requisitionno,
purchorders.allowprint,
purchorders.status,
suppliers.currcode,
currencies.decimalplaces";
} else {
/* $DateAfterCriteria = FormatDateforSQL($OrdersAfterDate); */
if (empty($_POST['StockLocation'])) {
$_POST['StockLocation'] = $_SESSION['UserStockLocation'];
}
if (isset($SelectedSupplier)) {
if (isset($SelectedStockItem)) {
$SQL = "SELECT purchorders.orderno,
suppliers.suppname,
purchorders.orddate,
purchorders.deliverydate,
purchorders.initiator,
purchorders.requisitionno,
purchorders.allowprint,
purchorders.status,
suppliers.currcode,
currencies.decimalplaces AS currdecimalplaces,
SUM(purchorderdetails.unitprice*purchorderdetails.quantityord) AS ordervalue
FROM purchorders
INNER JOIN purchorderdetails
ON purchorders.orderno = purchorderdetails.orderno
INNER JOIN suppliers
ON purchorders.supplierno = suppliers.supplierid
INNER JOIN currencies
ON suppliers.currcode=currencies.currabrev
WHERE purchorderdetails.itemcode='" . $SelectedStockItem . "'
AND purchorders.supplierno='" . $SelectedSupplier . "'
AND purchorders.intostocklocation = '" . $_POST['StockLocation'] . "'
" . $StatusCriteria . "
GROUP BY purchorders.orderno,
suppliers.suppname,
purchorders.orddate,
purchorders.initiator,
purchorders.requisitionno,
purchorders.allowprint,
suppliers.currcode,
currencies.decimalplaces";
} else {
$SQL = "SELECT purchorders.orderno,
suppliers.suppname,
purchorders.orddate,
purchorders.deliverydate,
purchorders.initiator,
purchorders.requisitionno,
purchorders.allowprint,
purchorders.status,
suppliers.currcode,
currencies.decimalplaces AS currdecimalplaces,
SUM(purchorderdetails.unitprice*purchorderdetails.quantityord) AS ordervalue
FROM purchorders
INNER JOIN purchorderdetails
ON purchorders.orderno = purchorderdetails.orderno
INNER JOIN suppliers
ON purchorders.supplierno = suppliers.supplierid
INNER JOIN currencies
ON suppliers.currcode=currencies.currabrev
WHERE purchorders.supplierno='" . $SelectedSupplier . "'
AND purchorders.intostocklocation = '" . $_POST['StockLocation'] . "'
" . $StatusCriteria . "
GROUP BY purchorders.orderno,
suppliers.suppname,
purchorders.orddate,
purchorders.initiator,
purchorders.requisitionno,
purchorders.allowprint,
suppliers.currcode,
currencies.decimalplaces";
}
} else { //no supplier selected
if (isset($SelectedStockItem)) {
$SQL = "SELECT purchorders.orderno,
suppliers.suppname,
purchorders.orddate,
purchorders.deliverydate,
purchorders.initiator,
purchorders.requisitionno,
purchorders.allowprint,
purchorders.status,
suppliers.currcode,
currencies.decimalplaces AS currdecimalplaces,
SUM(purchorderdetails.unitprice*purchorderdetails.quantityord) AS ordervalue
FROM purchorders
INNER JOIN purchorderdetails
ON purchorders.orderno = purchorderdetails.orderno
INNER JOIN suppliers
ON purchorders.supplierno = suppliers.supplierid
INNER JOIN currencies
ON suppliers.currcode=currencies.currabrev
WHERE purchorderdetails.itemcode='" . $SelectedStockItem . "'
AND purchorders.intostocklocation = '" . $_POST['StockLocation'] . "'
" . $StatusCriteria . "
GROUP BY purchorders.orderno,
suppliers.suppname,
purchorders.orddate,
purchorders.initiator,
purchorders.requisitionno,
purchorders.allowprint,
suppliers.currcode,
currencies.decimalplaces";
} else {
$SQL = "SELECT purchorders.orderno,
suppliers.suppname,
purchorders.orddate,
purchorders.deliverydate,
purchorders.initiator,
purchorders.requisitionno,
purchorders.allowprint,
purchorders.status,
suppliers.currcode,
currencies.decimalplaces AS currdecimalplaces,
SUM(purchorderdetails.unitprice*purchorderdetails.quantityord) AS ordervalue
FROM purchorders
INNER JOIN purchorderdetails
ON purchorders.orderno = purchorderdetails.orderno
INNER JOIN suppliers
ON purchorders.supplierno = suppliers.supplierid
INNER JOIN currencies
ON suppliers.currcode=currencies.currabrev
WHERE purchorders.intostocklocation = '" . $_POST['StockLocation'] . "'
" . $StatusCriteria . "
GROUP BY purchorders.orderno,
suppliers.suppname,
purchorders.orddate,
purchorders.initiator,
purchorders.requisitionno,
purchorders.allowprint,
suppliers.currcode,
currencies.decimalplaces";
}
} //end selected supplier
} //end not order number selected
$ErrMsg = _('No orders were returned by the SQL because');
$PurchOrdersResult = DB_query($SQL, $ErrMsg);
if (DB_num_rows($PurchOrdersResult) > 0) {
/*show a table of the orders returned by the SQL */
echo '<table cellpadding="2" width="90%" class="selection">
<thead>
<tr>
<th class="SortedColumn">' . _('View') . '</th>
<th class="SortedColumn">' . _('Supplier') . '</th>
<th class="SortedColumn">' . _('Currency') . '</th>
<th class="SortedColumn">' . _('Requisition') . '</th>
<th class="SortedColumn">' . _('Order Date') . '</th>
<th class="SortedColumn">' . _('Delivery Date') . '</th>
<th class="SortedColumn">' . _('Initiator') . '</th>
<th class="SortedColumn">' . _('Order Total') . '</th>
<th class="SortedColumn">' . _('Status') . '</th>
</tr>
</thead>
</tbody>';
while ($MyRow = DB_fetch_array($PurchOrdersResult)) {
$ViewPurchOrder = $RootPath . '/PO_OrderDetails.php?OrderNo=' . $MyRow['orderno'];
$FormatedOrderDate = ConvertSQLDate($MyRow['orddate']);
$FormatedDeliveryDate = ConvertSQLDate($MyRow['deliverydate']);
$FormatedOrderValue = locale_number_format($MyRow['ordervalue'], $MyRow['currdecimalplaces']);
echo '<tr class="striped_row">
<td><a href="' . $ViewPurchOrder . '">' . $MyRow['orderno'] . '</a></td>
<td>' . $MyRow['suppname'] . '</td>
<td>' . $MyRow['currcode'] . '</td>
<td>' . $MyRow['requisitionno'] . '</td>
<td>' . $FormatedOrderDate . '</td>
<td>' . $FormatedDeliveryDate . '</td>
<td>' . $MyRow['initiator'] . '</td>
<td class="number">' . $FormatedOrderValue . '</td>
<td>' . _($MyRow['status']) . '</td>
</tr>';
//$MyRow['status'] is a string which has gettext translations from PO_Header.php script
}
//end of while loop
echo '</tbody></table>';
} // end if purchase orders to show
}
echo '</div>
</form>';
include ('includes/footer.php');
?>