forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
InventoryValuation.php
281 lines (237 loc) · 10.8 KB
/
InventoryValuation.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
<?php
include('includes/session.php');
if (isset($_POST['PrintPDF']) OR isset($_POST['CSV'])){
/*Now figure out the inventory data to report for the category range under review */
if ($_POST['Location']=='All'){
$SQL = "SELECT stockmaster.categoryid,
stockcategory.categorydescription,
stockmaster.stockid,
stockmaster.description,
stockmaster.decimalplaces,
SUM(locstock.quantity) AS qtyonhand,
stockmaster.units,
stockmaster.materialcost + stockmaster.labourcost + stockmaster.overheadcost AS unitcost,
SUM(locstock.quantity) *(stockmaster.materialcost + stockmaster.labourcost + stockmaster.overheadcost) AS itemtotal
FROM stockmaster,
stockcategory,
locstock
INNER JOIN locationusers ON locationusers.loccode=locstock.loccode AND locationusers.userid='" . $_SESSION['UserID'] . "' AND locationusers.canview=1
WHERE stockmaster.stockid=locstock.stockid
AND stockmaster.categoryid=stockcategory.categoryid
GROUP BY stockmaster.categoryid,
stockcategory.categorydescription,
unitcost,
stockmaster.units,
stockmaster.decimalplaces,
stockmaster.materialcost,
stockmaster.labourcost,
stockmaster.overheadcost,
stockmaster.stockid,
stockmaster.description
HAVING SUM(locstock.quantity)!=0
AND stockmaster.categoryid IN ('". implode("','",$_POST['Categories'])."')
ORDER BY stockcategory.categorydescription,
stockmaster.stockid";
} else {
$SQL = "SELECT stockmaster.categoryid,
stockcategory.categorydescription,
stockmaster.stockid,
stockmaster.description,
stockmaster.units,
stockmaster.decimalplaces,
locstock.quantity AS qtyonhand,
stockmaster.materialcost + stockmaster.labourcost + stockmaster.overheadcost AS unitcost,
locstock.quantity *(stockmaster.materialcost + stockmaster.labourcost + stockmaster.overheadcost) AS itemtotal
FROM stockmaster,
stockcategory,
locstock
INNER JOIN locationusers ON locationusers.loccode=locstock.loccode AND locationusers.userid='" . $_SESSION['UserID'] . "' AND locationusers.canview=1
WHERE stockmaster.stockid=locstock.stockid
AND stockmaster.categoryid=stockcategory.categoryid
AND locstock.quantity!=0
AND stockmaster.categoryid IN ('". implode("','",$_POST['Categories'])."')
AND locstock.loccode = '" . $_POST['Location'] . "'
ORDER BY stockcategory.categorydescription,
stockmaster.stockid";
}
$InventoryResult = DB_query($SQL,'','',false,true);
if (DB_error_no() !=0) {
$Title = _('Inventory Valuation') . ' - ' . _('Problem Report');
include('includes/header.php');
prnMsg( _('The inventory valuation 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 (isset($_POST['PrintPDF'])){
include('includes/PDFStarter.php');
$pdf->addInfo('Title',_('Inventory Valuation Report'));
$pdf->addInfo('Subject',_('Inventory Valuation'));
$FontSize=9;
$PageNumber=1;
$line_height=12;
if (DB_num_rows($InventoryResult)==0){
$Title = _('Print Inventory Valuation Error');
include('includes/header.php');
prnMsg(_('There were no items with any value to print out for the location specified'),'info');
echo '<br /><a href="' . $RootPath . '/index.php">' . _('Back to the menu') . '</a>';
include('includes/footer.php');
exit;
}
include ('includes/PDFInventoryValnPageHeader.inc');
$Tot_Val=0;
$Category = '';
$CatTot_Val=0;
$CatTot_Qty=0;
while ($InventoryValn = DB_fetch_array($InventoryResult)){
if ($Category!=$InventoryValn['categoryid']){
$FontSize=10;
if ($Category!=''){ /*Then it's NOT the first time round */
/* need to print the total of previous category */
if ($_POST['DetailedReport']=='Yes'){
$YPos -= (2*$line_height);
if ($YPos < $Bottom_Margin + (3*$line_height)){
include('includes/PDFInventoryValnPageHeader.inc');
}
$LeftOvers = $pdf->addTextWrap($Left_Margin,$YPos,260-$Left_Margin,$FontSize,_('Total for') . ' ' . $Category . ' - ' . $CategoryName);
}
$DisplayCatTotVal = locale_number_format($CatTot_Val,$_SESSION['CompanyRecord']['decimalplaces']);
$DisplayCatTotQty = locale_number_format($CatTot_Qty,2);
$LeftOvers = $pdf->addTextWrap(480,$YPos,80,$FontSize,$DisplayCatTotVal, 'right');
$LeftOvers = $pdf->addTextWrap(360,$YPos,60,$FontSize,$DisplayCatTotQty, 'right');
$YPos -=$line_height;
If ($_POST['DetailedReport']=='Yes'){
/*draw a line under the CATEGORY TOTAL*/
$pdf->line($Left_Margin, $YPos+$line_height-2,$Page_Width-$Right_Margin, $YPos+$line_height-2);
$YPos -=(2*$line_height);
}
$CatTot_Val=0;
$CatTot_Qty=0;
}
$LeftOvers = $pdf->addTextWrap($Left_Margin,$YPos,260-$Left_Margin,$FontSize,$InventoryValn['categoryid'] . ' - ' . $InventoryValn['categorydescription']);
$Category = $InventoryValn['categoryid'];
$CategoryName = $InventoryValn['categorydescription'];
}
if ($_POST['DetailedReport']=='Yes'){
$YPos -=$line_height;
$FontSize=8;
$LeftOvers = $pdf->addTextWrap($Left_Margin,$YPos,100,$FontSize,$InventoryValn['stockid']);
$LeftOvers = $pdf->addTextWrap(170,$YPos,220,$FontSize,$InventoryValn['description']);
$DisplayUnitCost = locale_number_format($InventoryValn['unitcost'],$_SESSION['CompanyRecord']['decimalplaces']);
$DisplayQtyOnHand = locale_number_format($InventoryValn['qtyonhand'],$InventoryValn['decimalplaces']);
$DisplayItemTotal = locale_number_format($InventoryValn['itemtotal'],$_SESSION['CompanyRecord']['decimalplaces']);
$LeftOvers = $pdf->addTextWrap(360,$YPos,60,$FontSize,$DisplayQtyOnHand,'right');
$LeftOvers = $pdf->addTextWrap(423,$YPos,15,$FontSize,$InventoryValn['units'],'left');
$LeftOvers = $pdf->addTextWrap(438,$YPos,60,$FontSize,$DisplayUnitCost, 'right');
$LeftOvers = $pdf->addTextWrap(500,$YPos,60,$FontSize,$DisplayItemTotal, 'right');
}
$Tot_Val += $InventoryValn['itemtotal'];
$CatTot_Val += $InventoryValn['itemtotal'];
$CatTot_Qty += $InventoryValn['qtyonhand'];
if ($YPos < $Bottom_Margin + $line_height){
include('includes/PDFInventoryValnPageHeader.inc');
}
} /*end inventory valn while loop */
$FontSize =10;
/*Print out the category totals */
if ($_POST['DetailedReport']=='Yes'){
$YPos -= (2*$line_height);
$LeftOvers = $pdf->addTextWrap($Left_Margin,$YPos,200-$Left_Margin,$FontSize, _('Total for') . ' ' . $Category . ' - ' . $CategoryName, 'left');
}
$DisplayCatTotVal = locale_number_format($CatTot_Val,$_SESSION['CompanyRecord']['decimalplaces']);
$LeftOvers = $pdf->addTextWrap(480,$YPos,80,$FontSize,$DisplayCatTotVal, 'right');
$DisplayCatTotQty = locale_number_format($CatTot_Qty,2);
$LeftOvers = $pdf->addTextWrap(360,$YPos,60,$FontSize,$DisplayCatTotQty, 'right');
if ($_POST['DetailedReport']=='Yes'){
/*draw a line under the CATEGORY TOTAL*/
$YPos -= ($line_height);
$pdf->line($Left_Margin, $YPos+$line_height-2,$Page_Width-$Right_Margin, $YPos+$line_height-2);
}
$YPos -= (2*$line_height);
if ($YPos < $Bottom_Margin + $line_height){
include('includes/PDFInventoryValnPageHeader.inc');
}
/*Print out the grand totals */
$LeftOvers = $pdf->addTextWrap(80,$YPos,260-$Left_Margin,$FontSize,_('Grand Total Value'), 'right');
$DisplayTotalVal = locale_number_format($Tot_Val,$_SESSION['CompanyRecord']['decimalplaces']);
$LeftOvers = $pdf->addTextWrap(500,$YPos,60,$FontSize,$DisplayTotalVal, 'right');
$pdf->OutputD($_SESSION['DatabaseName'] . '_Inventory_Valuation_' . Date('Y-m-d') . '.pdf');
$pdf->__destruct();
} elseif (isset($_POST['CSV'])) {
$CSVListing = _('Category ID') .','. _('Category Description') .','. _('Stock ID') .','. _('Description') .','. _('Decimal Places') .','. _('Qty On Hand') .','. _('Units') .','. _('Unit Cost') .','. _('Total') . "\n";
while ($InventoryValn = DB_fetch_row($InventoryResult)) {
$CSVListing .= '"';
$CSVListing .= implode('","', $InventoryValn) . '"' . "\n";
}
header('Content-Encoding: UTF-8');
header('Content-type: text/csv; charset=UTF-8');
header("Content-disposition: attachment; filename=InventoryValuation_Categories_" . $_POST['FromCriteria'] . '-' . $_POST['ToCriteria'] .'.csv');
header("Pragma: public");
header("Expires: 0");
echo "\xEF\xBB\xBF"; // UTF-8 BOM
echo $CSVListing;
exit;
} else { /*The option to print PDF nor to create the CSV was not hit */
$Title=_('Inventory Valuation Reporting');
include('includes/header.php');
echo '<p class="page_title_text">
<img src="'.$RootPath.'/css/'.$Theme.'/images/inventory.png" title="' . _('Inventory') . '" alt="" />' . ' ' . $Title . '
</p>';
echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '" method="post">
<div>
<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.canview=1
ORDER BY locationname";
$LocnResult=DB_query($sql);
echo '<option value="All">' . _('All Locations') . '</option>';
while ($myrow=DB_fetch_array($LocnResult)){
echo '<option value="' . $myrow['loccode'] . '">' . $myrow['locationname'] . '</option>';
}
echo '</select></td>
</tr>';
echo '<tr>
<td>' . _('Summary or Detailed Report') . ':</td>
<td><select name="DetailedReport">
<option selected="selected" value="No">' . _('Summary Report') . '</option>
<option value="Yes">' . _('Detailed Report') . '</option>
</select></td>
</tr>
</table>
<br />
<div class="centre">
<input type="submit" name="PrintPDF" value="' . _('Print PDF') . '" />
<input type="submit" name="CSV" value="' . _('Output to CSV') . '" />
</div>';
echo '</div>
</form>';
include('includes/footer.php');
} /*end of else not PrintPDF */
?>