forked from timschofield/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStockSerialItemResearch.php
112 lines (100 loc) · 3.74 KB
/
StockSerialItemResearch.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
<?php
include('includes/session.php');
$Title = _('Serial Item Research');
$ViewTopic = 'Inventory';
$BookMark = '';
include('includes/header.php');
echo '<p class="page_title_text">
<img src="'.$RootPath.'/css/'.$Theme.'/images/inventory.png" title="' . _('Inventory') . '" alt="" /><b>' . $Title. '</b>
</p>';
//validate the submission
if (isset($_POST['serialno'])) {
$SerialNo = trim($_POST['serialno']);
} elseif(isset($_GET['serialno'])) {
$SerialNo = trim($_GET['serialno']);
} else {
$SerialNo = '';
}
echo '<form id="SerialNoResearch" method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') .'">';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
echo '<fieldset>
<legend>', _('Serial Number Lookup'), '</legend>';
echo '<field>
<label for="serialno">', _('Serial Number') .':</label>
<input id="serialno" type="text" name="serialno" size="21" maxlength="20" value="'. $SerialNo . '" />
</field>
</fieldset>
<div class="centre">
<input type="submit" name="submit" value="' . _('Search') . '" />
</div>
</form>';
echo '<script type="text/javascript">
document.getElementById("serialno").focus();
</script>';
if ($SerialNo!='') {
//the point here is to allow a semi fuzzy search, but still keep someone from killing the db server
if (mb_strstr($SerialNo,'%')){
while(mb_strstr($SerialNo,'%%')) {
$SerialNo = str_replace('%%','%',$SerialNo);
}
if (mb_strlen($SerialNo) < 11){
$SerialNo = str_replace('%','',$SerialNo);
prnMsg('You can not use LIKE with short numbers. It has been removed.','warn');
}
}
$SQL = "SELECT ssi.serialno,
ssi.stockid, ssi.quantity CurInvQty,
ssm.moveqty,
sm.type, st.typename,
sm.transno, sm.loccode, l.locationname, sm.trandate, sm.debtorno, sm.branchcode, sm.reference, sm.qty TotalMoveQty
FROM stockserialitems ssi INNER JOIN stockserialmoves ssm
ON ssi.serialno = ssm.serialno AND ssi.stockid=ssm.stockid
INNER JOIN stockmoves sm
ON ssm.stockmoveno = sm.stkmoveno and ssi.loccode=sm.loccode
INNER JOIN systypes st
ON sm.type=st.typeid
INNER JOIN locations l
on sm.loccode = l.loccode
INNER JOIN locationusers ON locationusers.loccode=l.loccode AND locationusers.userid='" . $_SESSION['UserID'] . "' AND locationusers.canview=1
WHERE ssi.serialno " . LIKE . " '" . $SerialNo . "'
ORDER BY stkmoveno";
$Result = DB_query($SQL);
if (DB_num_rows($Result) == 0){
prnMsg( _('No History found for Serial Number'). ': <b>' . $SerialNo . '</b>' , 'warn');
} else {
echo '<h4>' . _('Details for Serial Item').': <b>' . $SerialNo . '</b><br />' . _('Length').'='.mb_strlen($SerialNo) . '</h4>';
echo '<table class="selection">';
echo '<tr>
<th>' . _('StockID') . '</th>
<th>' . _('CurInvQty') . '</th>
<th>' . _('Move Qty') . '</th>
<th>' . _('Move Type') . '</th>
<th>' . _('Trans #') . '</th>
<th>' . _('Location') . '</th>
<th>' . _('Date') . '</th>
<th>' . _('DebtorNo') . '</th>
<th>' . _('Branch') . '</th>
<th>' . _('Move Ref') . '</th>
<th>' . _('Total Move Qty') . '</th>
</tr>';
while ($MyRow=DB_fetch_row($Result)) {
echo '<tr>
<td>', $MyRow[1], '<br />', $MyRow[0], '</td>
<td class="number">', $MyRow[2], '</td>
<td class="number">', $MyRow[3], '</td>
<td>', $MyRow[5], ' (', $MyRow[4], ')</td>
<td class="number">', $MyRow[6], '</td>
<td>', $MyRow[7], ' - ', $MyRow[8], '</td>
<td>', $MyRow[9], ' </td>
<td>', $MyRow[10], ' </td>
<td>', $MyRow[11], ' </td>
<td>', $MyRow[12], ' </td>
<td class="number">', $MyRow[13], '</td>
</tr>';
} //END WHILE LIST LOOP
echo '</table>';
} // ELSE THERE WHERE ROWS
}//END OF POST IS SET
echo '</div>';
include('includes/footer.php');
?>