forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Shipt_Select.php
360 lines (306 loc) · 11.2 KB
/
Shipt_Select.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
<?php
include('includes/session.php');
$Title = _('Search Shipments');
include('includes/header.php');
echo '<p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/magnifier.png" title="' . _('Search') .
'" alt="" />' . ' ' . $Title . '</p>';
if (isset($_GET['SelectedStockItem'])){
$SelectedStockItem=$_GET['SelectedStockItem'];
} elseif (isset($_POST['SelectedStockItem'])){
$SelectedStockItem=$_POST['SelectedStockItem'];
}
if (isset($_GET['ShiptRef'])){
$ShiptRef=$_GET['ShiptRef'];
} elseif (isset($_POST['ShiptRef'])){
$ShiptRef=$_POST['ShiptRef'];
}
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">';
echo '<div>';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
If (isset($_POST['ResetPart'])) {
unset($SelectedStockItem);
}
If (isset($ShiptRef) AND $ShiptRef!='') {
if (!is_numeric($ShiptRef)){
echo '<br />';
prnMsg( _('The Shipment Number entered MUST be numeric') );
unset ($ShiptRef);
} else {
echo _('Shipment Number'). ' - '. $ShiptRef;
}
} else {
if (isset($SelectedSupplier)) {
echo '<br />' ._('For supplier'). ': '. $SelectedSupplier . ' ' . _('and'). ' ';
echo '<input type="hidden" name="SelectedSupplier" value="'. $SelectedSupplier. '" />';
}
If (isset($SelectedStockItem)) {
echo _('for the part'). ': ' . $SelectedStockItem . '.';
echo '<input type="hidden" name="SelectedStockItem" value="'. $SelectedStockItem. '" />';
}
}
if (isset($_POST['SearchParts'])) {
If ($_POST['Keywords'] AND $_POST['StockCode']) {
echo '<br />';
prnMsg( _('Stock description keywords have been used in preference to the Stock code extract entered'),'info');
}
$SQL = "SELECT stockmaster.stockid,
description,
decimalplaces,
SUM(locstock.quantity) AS qoh,
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";
If ($_POST['Keywords']) {
//insert wildcard characters in spaces
$SearchString = '%' . str_replace(' ', '%', $_POST['Keywords']) . '%';
$SQL .= " WHERE purchorderdetails.shiptref IS NOT NULL
AND purchorderdetails.shiptref<>0
AND stockmaster.description " . LIKE . " '" . $SearchString . "'
AND categoryid='" . $_POST['StockCat'] . "'";
} elseif ($_POST['StockCode']){
$SQL .= " WHERE purchorderdetails.shiptref IS NOT NULL
AND purchorderdetails.shiptref<>0
AND stockmaster.stockid " . LIKE . " '%" . $_POST['StockCode'] . "%'
AND categoryid='" . $_POST['StockCat'] ."'";
} elseif (!$_POST['StockCode'] AND !$_POST['Keywords']) {
$SQL .= " WHERE purchorderdetails.shiptref IS NOT NULL
AND purchorderdetails.shiptref<>0
AND stockmaster.categoryid='" . $_POST['StockCat'] . "'";
}
$SQL .= " GROUP BY stockmaster.stockid,
stockmaster.description,
stockmaster.decimalplaces,
stockmaster.units";
$ErrMsg = _('No Stock Items were returned from the database because'). ' - '. DB_error_msg();
$StockItemsResult = DB_query($SQL, $ErrMsg);
}
if (!isset($ShiptRef) or $ShiptRef==""){
echo '<table class="selection"><tr><td>';
echo _('Shipment Number'). ': <input type="text" name="ShiptRef" maxlength="10" size="10" /> '.
_('Into Stock Location').' :<select name="StockLocation"> ';
$sql = "SELECT loccode, locationname FROM locations";
$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']){
$_POST['StockLocation'] = $_SESSION['UserStockLocation'];
echo '<option selected="selected" value="' . $myrow['loccode'] . '">' . $myrow['locationname'] . '</option>';
} else {
echo '<option value="' . $myrow['loccode'] . '">' . $myrow['locationname'] . '</option>';
}
}
echo '</select>';
echo ' <select name="OpenOrClosed">';
if (isset($_POST['OpenOrClosed']) AND $_POST['OpenOrClosed']==1){
echo '<option selected="selected" value="1">' . _('Closed Shipments Only') . '</option>';
echo '<option value="0">' . _('Open Shipments Only') . '</option>';
} else {
$_POST['OpenOrClosed']=0;
echo '<option value="1">' . _('Closed Shipments Only') . '</option>';
echo '<option selected="selected" value="0">' . _('Open Shipments Only') . '</option>';
}
echo '</select></td></tr></table>';
echo '<br />
<div class="centre">
<input type="submit" name="SearchShipments" value="'. _('Search Shipments'). '" />
</div>
<br />';
}
$SQL="SELECT categoryid,
categorydescription
FROM stockcategory
WHERE stocktype<>'D'
ORDER BY categorydescription";
$result1 = DB_query($SQL);
echo '<table class="selection">';
echo '<tr>
<th colspan="5"><h3>' . _('To search for shipments for a specific part use the part selection facilities below') . '</h3></th>
</tr>
<tr>
<td>' . _('Select a stock category') . ':
<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></td>
<td>' . _('Enter text extracts in the') . '<b> ' . _('description') . '</b>:</td>
<td><input type="text" name="Keywords" size="20" maxlength="25" /></td>
</tr>
<tr>
<td></td>
<td><b>' . _('OR') . ' </b> ' . _('Enter extract of the') . ' <b> ' . _('Stock Code') . '</b>:</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 Parts Now').'" />
<input type="submit" name="ResetPart" value="'. _('Show All') .'" />
</div>
<br />';
if (isset($StockItemsResult)) {
echo '<table class="selection">';
$TableHeader = '<tr>
<th>' . _('Code') . '</th>
<th>' . _('Description') . '</th>
<th>' . _('On Hand') . '</th>
<th>' . _('Orders') . '<br />' . _('Outstanding') . '</th>
<th>' . _('Units') . '</th>
</tr>';
echo $TableHeader;
$j = 1;
while ($myrow=DB_fetch_array($StockItemsResult)) {
/*
Code Description On Hand Orders Ostdg Units Code Description On Hand Orders Ostdg Units */
printf('<tr class="striped_row">
<td><input type="submit" name="SelectedStockItem" value="%s" /></td>
<td>%s</td>
<td class="number">%s</td>
<td class="number">%s</td>
<td>%s</td>
</tr>',
$myrow['stockid'],
$myrow['description'],
locale_number_format($myrow['qoh'],$myrow['decimalplaces']),
locale_number_format($myrow['qord'],$myrow['decimalplaces']),
$myrow['units']);
$j++;
If ($j == 15){
$j=1;
echo $TableHeader;
}
//end of page full new headings if
}
//end of while loop
echo '</table>';
}
//end if stock search results to show
else {
//figure out the SQL required from the inputs available
if (isset($ShiptRef) AND $ShiptRef !="") {
$SQL = "SELECT shipments.shiptref,
vessel,
voyageref,
suppliers.suppname,
shipments.eta,
shipments.closed
FROM shipments INNER JOIN suppliers
ON shipments.supplierid = suppliers.supplierid
WHERE shipments.shiptref='". $ShiptRef . "'";
} else {
$SQL = "SELECT DISTINCT shipments.shiptref, vessel, voyageref, suppliers.suppname, shipments.eta, shipments.closed
FROM shipments INNER JOIN suppliers
ON shipments.supplierid = suppliers.supplierid
INNER JOIN purchorderdetails
ON purchorderdetails.shiptref=shipments.shiptref
INNER JOIN purchorders
ON purchorderdetails.orderno=purchorders.orderno";
if (isset($SelectedSupplier)) {
if (isset($SelectedStockItem)) {
$SQL .= " WHERE purchorderdetails.itemcode='". $SelectedStockItem ."'
AND shipments.supplierid='" . $SelectedSupplier ."'
AND purchorders.intostocklocation = '". $_POST['StockLocation'] . "'
AND shipments.closed='" . $_POST['OpenOrClosed'] . "'";
} else {
$SQL .= " WHERE shipments.supplierid='" . $SelectedSupplier ."'
AND purchorders.intostocklocation = '". $_POST['StockLocation'] . "'
AND shipments.closed='" . $_POST['OpenOrClosed'] ."'";
}
} else { //no supplier selected
if (isset($SelectedStockItem)) {
$SQL .= " WHERE purchorderdetails.itemcode='". $SelectedStockItem ."'
AND purchorders.intostocklocation = '". $_POST['StockLocation'] . "'
AND shipments.closed='" . $_POST['OpenOrClosed'] . "'";
} else {
$SQL .= " WHERE purchorders.intostocklocation = '". $_POST['StockLocation'] . "'
AND shipments.closed='" . $_POST['OpenOrClosed'] . "'";
}
} //end selected supplier
} //end not order number selected
$ErrMsg = _('No shipments were returned by the SQL because');
$ShipmentsResult = DB_query($SQL,$ErrMsg);
if (DB_num_rows($ShipmentsResult)>0){
/*show a table of the shipments returned by the SQL */
echo '<table width="95%" class="selection">';
$TableHeader = '<tr>
<th>' . _('Shipment'). '</th>
<th>' . _('Supplier'). '</th>
<th>' . _('Vessel'). '</th>
<th>' . _('Voyage'). '</th>
<th>' . _('Expected Arrival'). '</th>
</tr>';
echo $TableHeader;
$j = 1;
while ($myrow=DB_fetch_array($ShipmentsResult)) {
$URL_Modify_Shipment = $RootPath . '/Shipments.php?SelectedShipment=' . $myrow['shiptref'];
$URL_View_Shipment = $RootPath . '/ShipmentCosting.php?SelectedShipment=' . $myrow['shiptref'];
$FormatedETA = ConvertSQLDate($myrow['eta']);
/* ShiptRef Supplier Vessel Voyage ETA */
if ($myrow['closed']==0){
$URL_Close_Shipment = $URL_View_Shipment . '&Close=Yes';
printf('<tr class="striped_row">
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td><a href="%s">' . _('Costing') . '</a></td>
<td><a href="%s">' . _('Modify') . '</a></td>
<td><a href="%s"><b>' . _('Close') . '</b></a></td>
</tr>',
$myrow['shiptref'],
$myrow['suppname'],
$myrow['vessel'],
$myrow['voyageref'],
$FormatedETA,
$URL_View_Shipment,
$URL_Modify_Shipment,
$URL_Close_Shipment);
} else {
printf('<tr class="striped_row">
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td><a href="%s">' . _('Costing') . '</a></td>
</tr>',
$myrow['shiptref'],
$myrow['suppname'],
$myrow['vessel'],
$myrow['voyage'],
$FormatedETA,
$URL_View_Shipment);
}
$j++;
If ($j == 15){
$j=1;
echo $TableHeader;
}
//end of page full new headings if
}
//end of while loop
echo '</table>';
} // end if shipments to show
}
echo '</div>
</form>';
include('includes/footer.php');
?>