forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
StockCheck.php
352 lines (299 loc) · 12.7 KB
/
StockCheck.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
<?php
include('includes/session.php');
If (isset($_POST['PrintPDF'])){
include('includes/PDFStarter.php');
$pdf->addInfo('Title',_('Stock Count Sheets'));
$pdf->addInfo('Subject',_('Stock Count Sheets'));
$FontSize=10;
$PageNumber=1;
$line_height=30;
/*First off do the stock check file stuff */
if ($_POST['MakeStkChkData']=='New'){
$sql = "TRUNCATE TABLE stockcheckfreeze";
$result = DB_query($sql);
$sql = "INSERT INTO stockcheckfreeze (stockid,
loccode,
qoh,
stockcheckdate)
SELECT locstock.stockid,
locstock.loccode,
locstock.quantity,
'" . Date('Y-m-d') . "'
FROM locstock,
stockmaster
WHERE locstock.stockid=stockmaster.stockid
AND locstock.loccode='" . $_POST['Location'] . "'
AND stockmaster.categoryid IN ('". implode("','",$_POST['Categories'])."')
AND stockmaster.mbflag!='A'
AND stockmaster.mbflag!='K'
AND stockmaster.mbflag!='D'";
$result = DB_query($sql,'','',false,false);
if (DB_error_no() !=0) {
$Title = _('Stock Count Sheets - Problem Report');
include('includes/header.php');
prnMsg(_('The inventory quantities could not be added to the freeze file because') . ' ' . DB_error_msg(),'error');
echo '<br /><a href="' . $RootPath . '/index.php">' . _('Back to the menu') . '</a>';
if ($debug==1){
echo '<br />' . $sql;
}
include('includes/footer.php');
exit;
}
}
if ($_POST['MakeStkChkData']=='AddUpdate'){
$sql = "DELETE stockcheckfreeze
FROM stockcheckfreeze
INNER JOIN stockmaster ON stockcheckfreeze.stockid=stockmaster.stockid
WHERE stockmaster.categoryid IN ('". implode("','",$_POST['Categories'])."')
AND stockcheckfreeze.loccode='" . $_POST['Location'] . "'";
$result = DB_query($sql,'','',false,false);
if (DB_error_no() !=0) {
$Title = _('Stock Freeze') . ' - ' . _('Problem Report') . '.... ';
include('includes/header.php');
prnMsg(_('The old quantities could not be deleted from the freeze file because') . ' ' . DB_error_msg(),'error');
echo '<br /><a href="' . $RootPath . '/index.php">' . _('Back to the menu') . '</a>';
if ($debug==1){
echo '<br />' . $sql;
}
include('includes/footer.php');
exit;
}
$sql = "INSERT INTO stockcheckfreeze (stockid,
loccode,
qoh,
stockcheckdate)
SELECT locstock.stockid,
loccode ,
locstock.quantity,
'" . Date('Y-m-d') . "'
FROM locstock INNER JOIN stockmaster
ON locstock.stockid=stockmaster.stockid
WHERE locstock.loccode='" . $_POST['Location'] . "'
AND stockmaster.categoryid IN ('". implode("','",$_POST['Categories'])."')
AND stockmaster.mbflag!='A'
AND stockmaster.mbflag!='K'
AND stockmaster.mbflag!='G'
AND stockmaster.mbflag!='D'";
$result = DB_query($sql,'','',false,false);
if (DB_error_no() !=0) {
$Title = _('Stock Freeze - Problem Report');
include('includes/header.php');
prnMsg(_('The inventory quantities could not be added to the freeze file because') . ' ' . DB_error_msg(),'error');
echo '<br /><a href="' . $RootPath . '/index.php">' . _('Back to the menu') . '</a>';
if ($debug==1){
echo '<br />' . $sql;
}
include('includes/footer.php');
exit;
} else {
$Title = _('Stock Check Freeze Update');
include('includes/header.php');
echo '<p><a href="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '">' . _('Print Check Sheets') . '</a>';
prnMsg( _('Added to the stock check file successfully'),'success');
include('includes/footer.php');
exit;
}
}
$SQL = "SELECT stockmaster.categoryid,
stockcheckfreeze.stockid,
stockmaster.description,
stockmaster.decimalplaces,
stockcategory.categorydescription,
stockcheckfreeze.qoh
FROM stockcheckfreeze INNER JOIN stockmaster
ON stockcheckfreeze.stockid=stockmaster.stockid
INNER JOIN stockcategory
ON stockmaster.categoryid=stockcategory.categoryid
WHERE stockmaster.categoryid IN ('". implode("','",$_POST['Categories'])."')
AND (stockmaster.mbflag='B' OR mbflag='M')
AND stockcheckfreeze.loccode = '" . $_POST['Location'] . "'";
if (isset($_POST['NonZerosOnly']) and $_POST['NonZerosOnly']==true){
$SQL .= " AND stockcheckfreeze.qoh<>0";
}
$SQL .= " ORDER BY stockmaster.categoryid, stockmaster.stockid";
$InventoryResult = DB_query($SQL,'','',false,false);
if (DB_error_no() !=0) {
$Title = _('Stock Sheets') . ' - ' . _('Problem Report') . '.... ';
include('includes/header.php');
prnMsg( _('The inventory quantities could not be retrieved by the SQL because') . ' ' . DB_error_msg(),'error');
echo '<br /><a href="' . $RootPath . '/index.php">' . _('Back to the menu') . '</a>';
if ($debug==1){
echo '<br />' . $SQL;
}
include ('includes/footer.php');
exit;
}
if (DB_num_rows($InventoryResult) ==0) {
$Title = _('Stock Count Sheets - Problem Report');
include('includes/header.php');
prnMsg(_('Before stock count sheets can be printed, a copy of the stock quantities needs to be taken - the stock check freeze. Make a stock check data file first'),'error');
echo '<br /><a href="' . $RootPath . '/index.php">' . _('Back to the menu') . '</a>';
include('includes/footer.php');
exit;
}
include ('includes/PDFStockCheckPageHeader.inc');
$Category = '';
While ($InventoryCheckRow = DB_fetch_array($InventoryResult)){
if ($Category!=$InventoryCheckRow['categoryid']){
$FontSize=12;
if ($Category!=''){ /*Then it's NOT the first time round */
/*draw a line under the CATEGORY TOTAL*/
$pdf->line($Left_Margin, $YPos-2,$Page_Width-$Right_Margin, $YPos-2);
$YPos -=(2*$line_height);
}
$LeftOvers = $pdf->addTextWrap($Left_Margin,$YPos,260-$Left_Margin,$FontSize,$InventoryCheckRow['categoryid'] . ' - ' . $InventoryCheckRow['categorydescription'], 'left');
$Category = $InventoryCheckRow['categoryid'];
}
$FontSize=10;
$YPos -=$line_height;
if (isset($_POST['ShowInfo']) and $_POST['ShowInfo']==true){
$SQL = "SELECT SUM(salesorderdetails.quantity - salesorderdetails.qtyinvoiced) AS qtydemand
FROM salesorderdetails INNER JOIN salesorders
ON salesorderdetails.orderno=salesorders.orderno
WHERE salesorders.fromstkloc ='" . $_POST['Location'] . "'
AND salesorderdetails.stkcode = '" . $InventoryCheckRow['stockid'] . "'
AND salesorderdetails.completed = 0
AND salesorders.quotation=0";
$DemandResult = DB_query($SQL,'','',false, false);
if (DB_error_no() !=0) {
$Title = _('Stock Check Sheets - Problem Report');
include('includes/header.php');
prnMsg( _('The sales order demand quantities could not be retrieved by the SQL because') . ' ' . DB_error_msg(), 'error');
echo '<br /><a href="' . $RootPath . '/index.php">' . _('Back to the menu') . '</a>';
if ($debug==1){
echo '<br />' . $SQL;
}
include('includes/footer.php');
exit;
}
$DemandRow = DB_fetch_array($DemandResult);
$DemandQty = $DemandRow['qtydemand'];
//Also need to add in the demand for components of assembly items
$sql = "SELECT SUM((salesorderdetails.quantity-salesorderdetails.qtyinvoiced)*bom.quantity) AS dem
FROM salesorderdetails INNER JOIN salesorders
ON salesorders.orderno = salesorderdetails.orderno
INNER JOIN bom
ON salesorderdetails.stkcode=bom.parent
INNER JOIN stockmaster
ON stockmaster.stockid=bom.parent
WHERE salesorders.fromstkloc='" . $_POST['Location'] . "'
AND salesorderdetails.quantity-salesorderdetails.qtyinvoiced > 0
AND bom.component='" . $InventoryCheckRow['stockid'] . "'
AND stockmaster.mbflag='A'
AND salesorders.quotation=0";
$DemandResult = DB_query($sql,'','',false,false);
if (DB_error_no() !=0) {
prnMsg(_('The demand for this product from') . ' ' . $myrow['loccode'] . ' ' . _('cannot be retrieved because') . ' - ' . DB_error_msg(),'error');
if ($debug==1){
echo '<br />' . _('The SQL that failed was') . ' ' . $sql;
}
exit;
}
if (DB_num_rows($DemandResult)==1){
$DemandRow = DB_fetch_row($DemandResult);
$DemandQty += $DemandRow[0];
}
$LeftOvers = $pdf->addTextWrap(350,$YPos,60,$FontSize,locale_number_format($InventoryCheckRow['qoh'], $InventoryCheckRow['decimalplaces']), 'right');
$LeftOvers = $pdf->addTextWrap(410,$YPos,60,$FontSize,locale_number_format($DemandQty,$InventoryCheckRow['decimalplaces']), 'right');
$LeftOvers = $pdf->addTextWrap(470,$YPos,60,$FontSize,locale_number_format($InventoryCheckRow['qoh']-$DemandQty,$InventoryCheckRow['decimalplaces']), 'right');
}
$LeftOvers = $pdf->addTextWrap($Left_Margin,$YPos,150,$FontSize,$InventoryCheckRow['stockid'], 'left');
$LeftOvers = $pdf->addTextWrap(150,$YPos,200,$FontSize,$InventoryCheckRow['description'], 'left');
$pdf->line($Left_Margin, $YPos-2,$Page_Width-$Right_Margin, $YPos-2);
if ($YPos < $Bottom_Margin + $line_height){
$PageNumber++;
include('includes/PDFStockCheckPageHeader.inc');
}
} /*end STOCK SHEETS while loop */
$pdf->OutputD($_SESSION['DatabaseName'] . '_Stock_Count_Sheets_' . Date('Y-m-d') .'.pdf');
} else { /*The option to print PDF was not hit */
$Title=_('Stock Check Sheets');
include('includes/header.php');
echo '<p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/printer.png" title="'
. _('print') . '" alt="" />' . ' ' . $Title . '</p><br />';
echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '" method="post">';
echo '<div>';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
echo '<table class="selection">
<tr>
<td>' . _('Select Inventory Categories') . ':</td>
<td><select autofocus="autofocus" required="required" minlength="1" size="12" name="Categories[]" multiple="multiple">';
$SQL = 'SELECT categoryid, categorydescription
FROM stockcategory
ORDER BY categorydescription';
$CatResult = DB_query($SQL);
while ($MyRow = DB_fetch_array($CatResult)) {
if (isset($_POST['Categories']) AND in_array($MyRow['categoryid'], $_POST['Categories'])) {
echo '<option selected="selected" value="' . $MyRow['categoryid'] . '">' . $MyRow['categorydescription'] .'</option>';
} else {
echo '<option value="' . $MyRow['categoryid'] . '">' . $MyRow['categorydescription'] . '</option>';
}
}
echo '</select>
</td>
</tr>';
echo '<tr>
<td>' . _('For Inventory in Location') . ':</td>
<td><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
ORDER BY locationname";
$LocnResult=DB_query($sql);
while ($myrow=DB_fetch_array($LocnResult)){
echo '<option value="' . $myrow['loccode'] . '">' . $myrow['locationname'] . '</option>';
}
echo '</select>
</td>
</tr>';
echo '<tr>
<td>' . _('Action for Stock Check Freeze') . ':</td>
<td><select name="MakeStkChkData">';
if (!isset($_POST['MakeStkChkData'])){
$_POST['MakeStkChkData'] = 'PrintOnly';
}
if ($_POST['MakeStkChkData'] =='New'){
echo '<option selected="selected" value="New">' . _('Make new stock check data file') . '</option>';
} else {
echo '<option value="New">' . _('Make new stock check data file') . '</option>';
}
if ($_POST['MakeStkChkData'] =='AddUpdate'){
echo '<option selected="selected" value="AddUpdate">' . _('Add/update existing stock check file') . '</option>';
} else {
echo '<option value="AddUpdate">' . _('Add/update existing stock check file') . '</option>';
}
if ($_POST['MakeStkChkData'] =='PrintOnly'){
echo '<option selected="selected" value="PrintOnly">' . _('Print Stock Check Sheets Only') . '</option>';
} else {
echo '<option value="PrintOnly">' . _('Print Stock Check Sheets Only') . '</option>';
}
echo '</select></td></tr>';
echo '<tr>
<td>' . _('Show system quantity on sheets') . ':</td>
<td>';
if (isset($_POST['ShowInfo']) and $_POST['ShowInfo'] == false){
echo '<input type="checkbox" name="ShowInfo" value="false" />';
} else {
echo '<input type="checkbox" name="ShowInfo" value="true" />';
}
echo '</td>
</tr>';
echo '<tr>
<td>' . _('Only print items with non zero quantities') . ':</td>
<td>';
if (isset($_POST['NonZerosOnly']) and $_POST['NonZerosOnly'] == false){
echo '<input type="checkbox" name="NonZerosOnly" value="false" />';
} else {
echo '<input type="checkbox" name="NonZerosOnly" value="true" />';
}
echo '</td>
</tr>
</table>
<br />
<div class="centre">
<input type="submit" name="PrintPDF" value="' . _('Print and Process') . '" />
</div>
</div>
</form>';
include('includes/footer.php');
} /*end of else not PrintPDF */
?>