forked from timschofield/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStockCheck.php
297 lines (248 loc) · 10.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
<?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;
$LineHeight=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*$LineHeight);
}
$LeftOvers = $pdf->addTextWrap($Left_Margin,$YPos,260-$Left_Margin,$FontSize,$InventoryCheckRow['categoryid'] . ' - ' . $InventoryCheckRow['categorydescription'], 'left');
$Category = $InventoryCheckRow['categoryid'];
}
$FontSize=10;
$YPos -=$LineHeight;
if (isset($_POST['ShowInfo']) and $_POST['ShowInfo']==true){
$DemandQty = GetDemand($InventoryCheckRow['stockid'], $_POST['Location']);
$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 + $LineHeight){
$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');
$ViewTopic = 'Inventory';
$BookMark = '';
include('includes/header.php');
echo '<p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/printer.png" title="'. _('print') . '" alt="" />' . ' ' . $Title . '</p>';
echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '" method="post">';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
echo '<fieldset>
<legend>', _('Select Items For Stock Check'), '</legend>
<field>
<label for="Categories">' . _('Select Inventory Categories') . ':</label>
<select autofocus="autofocus" required="required" minlength="1" 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>
</field>';
echo '<field>
<label for="Location">' . _('For Inventory in Location') . ':</label>
<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>
</field>';
echo '<field>
<label for="MakeStkChkData">' . _('Action for Stock Check Freeze') . ':</label>
<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>
</field>';
echo '<field>
<label for="ShowInfo">' . _('Show system quantity on sheets') . ':</label>';
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 '</field>';
echo '<field>
<label for="NonZerosOnly">' . _('Only print items with non zero quantities') . ':</label>';
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 '</field>';
echo '</fieldset>';
echo '<div class="centre">
<input type="submit" name="PrintPDF" value="' . _('Print and Process') . '" />
</div>
</form>';
include('includes/footer.php');
} /*end of else not PrintPDF */
?>