forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
StockCounts.php
239 lines (201 loc) · 8.97 KB
/
StockCounts.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
<?php
include('includes/session.php');
$Title = _('Stock Check Sheets Entry');
include('includes/header.php');
echo '<form name="EnterCountsForm" action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '" method="post">';
echo '<div>';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
echo '<p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/inventory.png" title="' .
_('Inventory Adjustment') . '" alt="" />' . ' ' . $Title . '</p>';
if (!isset($_POST['Action']) AND !isset($_GET['Action'])) {
$_GET['Action'] = 'Enter';
}
if (isset($_POST['Action'])) {
$_GET['Action'] = $_POST['Action'];
}
if ($_GET['Action']!='View' AND $_GET['Action']!='Enter'){
$_GET['Action'] = 'Enter';
}
echo '<table class="selection"><tr>';
if ($_GET['Action']=='View'){
echo '<td><a href="' . $RootPath . '/StockCounts.php?&Action=Enter">' . _('Resuming Entering Counts') . '</a> </td><td>' . _('Viewing Entered Counts') . '</td>';
} else {
echo '<td>' . _('Entering Counts') . '</td><td> <a href="' . $RootPath . '/StockCounts.php?&Action=View">' . _('View Entered Counts') . '</a></td>';
}
echo '</tr></table><br />';
if ($_GET['Action'] == 'Enter'){
if (isset($_POST['EnterCounts'])){
$Added=0;
$Counter = isset($_POST['RowCount'])?$_POST['RowCount'] : 10; // Arbitrary number of 10 hard coded as default as originally used - should there be a setting?
for ($i=1;$i<=$Counter;$i++){
$InputError =False; //always assume the best to start with
$Quantity = 'Qty_' . $i;
$BarCode = 'BarCode_' . $i;
$StockID = 'StockID_' . $i;
$Reference = 'Ref_' . $i;
if (strlen($_POST[$BarCode])>0){
$sql = "SELECT stockmaster.stockid
FROM stockmaster
WHERE stockmaster.barcode='". $_POST[$BarCode] ."'";
$ErrMsg = _('Could not determine if the part being ordered was a kitset or not because');
$DbgMsg = _('The sql that was used to determine if the part being ordered was a kitset or not was ');
$KitResult = DB_query($sql,$ErrMsg,$DbgMsg);
$myrow=DB_fetch_array($KitResult);
$_POST[$StockID] = strtoupper($myrow['stockid']);
}
if (mb_strlen($_POST[$StockID])>0){
if (!is_numeric($_POST[$Quantity])){
$InputError=True;
}
$SQL = "SELECT stockid FROM stockcheckfreeze WHERE stockid='" . $_POST[$StockID] . "'";
$result = DB_query($SQL);
if (DB_num_rows($result)==0){
prnMsg( _('The stock code entered on line') . ' ' . $i . ' ' . _('is not a part code that has been added to the stock check file') . ' - ' . _('the code entered was') . ' ' . $_POST[$StockID] . '. ' . _('This line will have to be re-entered'),'warn');
$InputError = True;
}
if ($InputError==False){
$Added++;
$sql = "INSERT INTO stockcounts (stockid,
loccode,
qtycounted,
reference)
VALUES ('" . $_POST[$StockID] . "',
'" . $_POST['Location'] . "',
'" . $_POST[$Quantity] . "',
'" . $_POST[$Reference] . "')";
$ErrMsg = _('The stock count line number') . ' ' . $i . ' ' . _('could not be entered because');
$EnterResult = DB_query($sql,$ErrMsg);
}
}
} // end of loop
prnMsg($Added . _(' Stock Counts Entered'), 'success' );
unset($_POST['EnterCounts']);
} // end of if enter counts button hit
$CatsResult = DB_query("SELECT DISTINCT stockcategory.categoryid,
categorydescription
FROM stockcategory INNER JOIN stockmaster
ON stockcategory.categoryid=stockmaster.categoryid
INNER JOIN stockcheckfreeze
ON stockmaster.stockid=stockcheckfreeze.stockid");
if (DB_num_rows($CatsResult) ==0) {
prnMsg(_('The stock check sheets must be run first to create the stock check. Only once these are created can the stock counts be entered. Currently there is no stock check to enter counts for'),'error');
echo '<div class="center"><a href="' . $RootPath . '/StockCheck.php">' . _('Create New Stock Check') . '</a></div>';
} else {
echo '<table cellpadding="2" class="selection">';
echo '<tr>
<th colspan="3">' ._('Stock Check Counts at Location') . ':<select name="Location">';
$sql = "SELECT locations.loccode, locationname FROM locations
INNER JOIN locationusers ON locationusers.loccode=locations.loccode AND locationusers.userid='" . $_SESSION['UserID'] . "' AND locationusers.canupd=1";
$result = DB_query($sql);
while ($myrow=DB_fetch_array($result)){
if (isset($_POST['Location']) AND $myrow['loccode']==$_POST['Location']){
echo '<option selected="selected" value="' . $myrow['loccode'] . '">' . $myrow['locationname'] . '</option>';
} else {
echo '<option value="' . $myrow['loccode'] . '">' . $myrow['locationname'] . '</option>';
}
}
echo '</select> <input type="submit" name="EnterByCat" value="' . _('Enter By Category') . '" /><select name="StkCat" onChange="ReloadForm(EnterCountsForm.EnterByCat)" >';
echo '<option value="">' . _('Not Yet Selected') . '</option>';
while ($myrow=DB_fetch_array($CatsResult)){
if ($_POST['StkCat']==$myrow['categoryid']) {
echo '<option selected="selected" value="' . $myrow['categoryid'] . '">' . $myrow['categorydescription'] . '</option>';
} else {
echo '<option value="' . $myrow['categoryid'] . '">' . $myrow['categorydescription'] . '</option>';
}
}
echo '</select></th></tr>';
if (isset($_POST['EnterByCat'])){
$StkCatResult = DB_query("SELECT categorydescription FROM stockcategory WHERE categoryid='" . $_POST['StkCat'] . "'");
$StkCatRow = DB_fetch_row($StkCatResult);
echo '<tr>
<th colspan="4">' . _('Entering Counts For Stock Category') . ': ' . $StkCatRow[0] . '</th>
</tr>
<tr>
<th>' . _('Stock Code') . '</th>
<th>' . _('Description') . '</th>
<th>' . _('Quantity') . '</th>
<th>' . _('Reference') . '</th>
</tr>';
$StkItemsResult = DB_query("SELECT stockcheckfreeze.stockid,
description
FROM stockcheckfreeze INNER JOIN stockmaster
ON stockcheckfreeze.stockid=stockmaster.stockid
WHERE categoryid='" . $_POST['StkCat'] . "' AND loccode = '" . $_POST['Location'] . "'
ORDER BY stockcheckfreeze.stockid");
$RowCount=1;
while ($StkRow = DB_fetch_array($StkItemsResult)) {
echo '<tr>
<td><input type="hidden" name="StockID_' . $RowCount . '" value="' . $StkRow['stockid'] . '" />' . $StkRow['stockid'] . '</td>
<td>' . $StkRow['description'] . '</td>
<td><input type="text" name="Qty_' . $RowCount . '" maxlength="10" size="10" /></td>
<td><input type="text" name="Ref_' . $RowCount . '" maxlength="20" size="20" /></td>
</tr>';
$RowCount++;
}
} else {
echo '<tr>
<th>' . _('Bar Code') . '</th>
<th>' . _('Stock Code') . '</th>
<th>' . _('Quantity') . '</th>
<th>' . _('Reference') . '</th>
</tr>';
for ($RowCount=1;$RowCount<=10;$RowCount++){
echo '<tr>
<td><input type="text" name="BarCode_' . $RowCount . '" maxlength="20" size="20" /></td>
<td><input type="text" name="StockID_' . $RowCount . '" maxlength="20" size="20" /></td>
<td><input type="text" name="Qty_' . $RowCount . '" maxlength="10" size="10" /></td>
<td><input type="text" name="Ref_' . $RowCount . '" maxlength="20" size="20" /></td>
</tr>';
}
}
echo '</table>
<br />
<div class="centre">
<input type="hidden" name="RowCount" value="' .$RowCount . '" />
<input type="submit" name="EnterCounts" value="' . _('Enter Above Counts') . '" />
</div>';
} // there is a stock check to enter counts for
//END OF action=ENTER
} elseif ($_GET['Action']=='View'){
if (isset($_POST['DEL']) AND is_array($_POST['DEL']) ){
foreach ($_POST['DEL'] as $id=>$val){
if ($val == 'on'){
$sql = "DELETE FROM stockcounts WHERE id='".$id."'";
$ErrMsg = _('Failed to delete StockCount ID #').' '.$i;
$EnterResult = DB_query($sql,$ErrMsg);
prnMsg( _('Deleted Id #') . ' ' . $id, 'success');
}
}
}
//START OF action=VIEW
$SQL = "select stockcounts.*,
canupd from stockcounts
INNER JOIN locationusers ON locationusers.loccode=stockcounts.loccode AND locationusers.userid='" . $_SESSION['UserID'] . "' AND locationusers.canview=1";
$result = DB_query($SQL);
echo '<input type="hidden" name="Action" value="View" />';
echo '<table cellpadding="2" class="selection">';
echo '<tr>
<th>' . _('Stock Code') . '</th>
<th>' . _('Location') . '</th>
<th>' . _('Qty Counted') . '</th>
<th>' . _('Reference') . '</th>
<th>' . _('Delete?') . '</th></tr>';
while ($myrow=DB_fetch_array($result)){
echo '<tr>
<td>'.$myrow['stockid'].'</td>
<td>'.$myrow['loccode'].'</td>
<td>'.$myrow['qtycounted'].'</td>
<td>'.$myrow['reference'].'</td>
<td>';
if ($myrow['canupd']==1) {
echo '<input type="checkbox" name="DEL[' . $myrow['id'] . ']" maxlength="20" size="20" />';
}
echo '</td></tr>';
}
echo '</table><br /><div class="centre"><input type="submit" name="SubmitChanges" value="' . _('Save Changes') . '" /></div>';
//END OF action=VIEW
}
echo '</div>
</form>';
include('includes/footer.php');
?>