36093b1b7c4bf5289f7e9a5a97b676bb29dd60b1
[fa-stable.git] / reporting / rep301.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL,
5         as published by the Free Software Foundation, either version 3
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 $page_security = 'SA_ITEMSVALREP';
13 // ----------------------------------------------------------------
14 // $ Revision:  2.0 $
15 // Creator:     Joe Hunt
16 // date_:       2005-05-19
17 // Title:       Inventory Valuation
18 // ----------------------------------------------------------------
19 $path_to_root="..";
20
21 include_once($path_to_root . "/includes/session.inc");
22 include_once($path_to_root . "/includes/date_functions.inc");
23 include_once($path_to_root . "/includes/data_checks.inc");
24 include_once($path_to_root . "/gl/includes/gl_db.inc");
25 include_once($path_to_root . "/inventory/includes/db/items_category_db.inc");
26
27 //----------------------------------------------------------------------------------------------------
28
29 print_inventory_valuation_report();
30
31 function getTransactions($category, $location, $date)
32 {
33         $date = date2sql($date);
34         $sql = "SELECT ".TB_PREF."stock_master.category_id,
35                         ".TB_PREF."stock_category.description AS cat_description,
36                         ".TB_PREF."stock_master.stock_id,
37                         ".TB_PREF."stock_master.units,
38                         ".TB_PREF."stock_master.description, ".TB_PREF."stock_master.inactive,
39                         ".TB_PREF."stock_moves.loc_code,
40                         SUM(".TB_PREF."stock_moves.qty) AS QtyOnHand,
41                         ".TB_PREF."stock_master.material_cost + ".TB_PREF."stock_master.labour_cost + ".TB_PREF."stock_master.overhead_cost AS UnitCost,
42                         SUM(".TB_PREF."stock_moves.qty) *(".TB_PREF."stock_master.material_cost + ".TB_PREF."stock_master.labour_cost + ".TB_PREF."stock_master.overhead_cost) AS ItemTotal
43                 FROM ".TB_PREF."stock_master,
44                         ".TB_PREF."stock_category,
45                         ".TB_PREF."stock_moves
46                 WHERE ".TB_PREF."stock_master.stock_id=".TB_PREF."stock_moves.stock_id
47                 AND ".TB_PREF."stock_master.category_id=".TB_PREF."stock_category.category_id
48                 AND ".TB_PREF."stock_master.mb_flag<>'D' 
49                 AND ".TB_PREF."stock_moves.tran_date <= '$date'
50                 GROUP BY ".TB_PREF."stock_master.category_id,
51                         ".TB_PREF."stock_category.description, ";
52                 if ($location != 'all')
53                         $sql .= TB_PREF."stock_moves.loc_code, ";
54                 $sql .= "UnitCost,
55                         ".TB_PREF."stock_master.stock_id,
56                         ".TB_PREF."stock_master.description
57                 HAVING SUM(".TB_PREF."stock_moves.qty) != 0";
58                 if ($category != 0)
59                         $sql .= " AND ".TB_PREF."stock_master.category_id = ".db_escape($category);
60                 if ($location != 'all')
61                         $sql .= " AND ".TB_PREF."stock_moves.loc_code = ".db_escape($location);
62                 $sql .= " ORDER BY ".TB_PREF."stock_master.category_id,
63                         ".TB_PREF."stock_master.stock_id";
64
65     return db_query($sql,"No transactions were returned");
66 }
67
68 //----------------------------------------------------------------------------------------------------
69
70 function print_inventory_valuation_report()
71 {
72     global $path_to_root;
73
74         $date = $_POST['PARAM_0'];
75     $category = $_POST['PARAM_1'];
76     $location = $_POST['PARAM_2'];
77     $detail = $_POST['PARAM_3'];
78     $comments = $_POST['PARAM_4'];
79         $destination = $_POST['PARAM_5'];
80         if ($destination)
81                 include_once($path_to_root . "/reporting/includes/excel_report.inc");
82         else
83                 include_once($path_to_root . "/reporting/includes/pdf_report.inc");
84         $detail = !$detail;
85     $dec = user_price_dec();
86
87         if ($category == ALL_NUMERIC)
88                 $category = 0;
89         if ($category == 0)
90                 $cat = _('All');
91         else
92                 $cat = get_category_name($category);
93
94         if ($location == ALL_TEXT)
95                 $location = 'all';
96         if ($location == 'all')
97                 $loc = _('All');
98         else
99                 $loc = get_location_name($location);
100
101         $cols = array(0, 75, 225, 250, 350, 450,        515);
102
103         $headers = array(_('Category'), '', _('UOM'), _('Quantity'), _('Unit Cost'), _('Value'));
104
105         $aligns = array('left', 'left', 'left', 'right', 'right', 'right');
106
107     $params =   array(  0 => $comments,
108                                         1 => array('text' => _('End Date'), 'from' => $date,            'to' => ''),
109                                     2 => array('text' => _('Category'), 'from' => $cat, 'to' => ''),
110                                     3 => array('text' => _('Location'), 'from' => $loc, 'to' => ''));
111
112     $rep = new FrontReport(_('Inventory Valuation Report'), "InventoryValReport", user_pagesize());
113
114     $rep->Font();
115     $rep->Info($params, $cols, $headers, $aligns);
116     $rep->NewPage();
117
118         $res = getTransactions($category, $location, $date);
119         $total = $grandtotal = 0.0;
120         $catt = '';
121         while ($trans=db_fetch($res))
122         {
123                 if ($catt != $trans['cat_description'])
124                 {
125                         if ($catt != '')
126                         {
127                                 if ($detail)
128                                 {
129                                         $rep->NewLine(2, 3);
130                                         $rep->TextCol(0, 4, _('Total'));
131                                 }
132                                 $rep->AmountCol(5, 6, $total, $dec);
133                                 if ($detail)
134                                 {
135                                         $rep->Line($rep->row - 2);
136                                         $rep->NewLine();
137                                 }
138                                 $rep->NewLine();
139                                 $total = 0.0;
140                         }
141                         $rep->TextCol(0, 1, $trans['category_id']);
142                         $rep->TextCol(1, 2, $trans['cat_description']);
143                         $catt = $trans['cat_description'];
144                         if ($detail)
145                                 $rep->NewLine();
146                 }
147                 if ($detail)
148                 {
149                         $rep->NewLine();
150                         $rep->fontSize -= 2;
151                         $rep->TextCol(0, 1, $trans['stock_id']);
152                         $rep->TextCol(1, 2, $trans['description'].($trans['inactive']==1 ? " ("._("Inactive").")" : ""), -1);
153                         $rep->TextCol(2, 3, $trans['units']);
154                         $rep->AmountCol(3, 4, $trans['QtyOnHand'], get_qty_dec($trans['stock_id']));
155                         $dec2 = 0;
156                         price_decimal_format($trans['UnitCost'], $dec2);
157                         $rep->AmountCol(4, 5, $trans['UnitCost'], $dec2);
158                         $rep->AmountCol(5, 6, $trans['ItemTotal'], $dec);
159                         $rep->fontSize += 2;
160                 }
161                 $total += $trans['ItemTotal'];
162                 $grandtotal += $trans['ItemTotal'];
163         }
164         if ($detail)
165         {
166                 $rep->NewLine(2, 3);
167                 $rep->TextCol(0, 4, _('Total'));
168         }
169         $rep->Amountcol(5, 6, $total, $dec);
170         if ($detail)
171         {
172                 $rep->Line($rep->row - 2);
173                 $rep->NewLine();
174         }
175         $rep->NewLine(2, 1);
176         $rep->TextCol(0, 4, _('Grand Total'));
177         $rep->AmountCol(5, 6, $grandtotal, $dec);
178         $rep->Line($rep->row  - 4);
179         $rep->NewLine();
180     $rep->End();
181 }
182
183 ?>