Service Items - BOM & Cost Update allowed without side-effects
[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)
32 {
33         $sql = "SELECT ".TB_PREF."stock_master.category_id,
34                         ".TB_PREF."stock_category.description AS cat_description,
35                         ".TB_PREF."stock_master.stock_id,
36                         ".TB_PREF."stock_master.units,
37                         ".TB_PREF."stock_master.description, ".TB_PREF."stock_master.inactive,
38                         ".TB_PREF."stock_moves.loc_code,
39                         SUM(".TB_PREF."stock_moves.qty) AS QtyOnHand,
40                         ".TB_PREF."stock_master.material_cost + ".TB_PREF."stock_master.labour_cost + ".TB_PREF."stock_master.overhead_cost AS UnitCost,
41                         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
42                 FROM ".TB_PREF."stock_master,
43                         ".TB_PREF."stock_category,
44                         ".TB_PREF."stock_moves
45                 WHERE ".TB_PREF."stock_master.stock_id=".TB_PREF."stock_moves.stock_id
46                 AND ".TB_PREF."stock_master.category_id=".TB_PREF."stock_category.category_id
47                 AND ".TB_PREF."stock_master.mb_flag<>'D'
48                 GROUP BY ".TB_PREF."stock_master.category_id,
49                         ".TB_PREF."stock_category.description, ";
50                 if ($location != 'all')
51                         $sql .= TB_PREF."stock_moves.loc_code, ";
52                 $sql .= "UnitCost,
53                         ".TB_PREF."stock_master.stock_id,
54                         ".TB_PREF."stock_master.description
55                 HAVING SUM(".TB_PREF."stock_moves.qty) != 0";
56                 if ($category != 0)
57                         $sql .= " AND ".TB_PREF."stock_master.category_id = ".db_escape($category);
58                 if ($location != 'all')
59                         $sql .= " AND ".TB_PREF."stock_moves.loc_code = ".db_escape($location);
60                 $sql .= " ORDER BY ".TB_PREF."stock_master.category_id,
61                         ".TB_PREF."stock_master.stock_id";
62
63     return db_query($sql,"No transactions were returned");
64 }
65
66 //----------------------------------------------------------------------------------------------------
67
68 function print_inventory_valuation_report()
69 {
70     global $path_to_root;
71
72     $category = $_POST['PARAM_0'];
73     $location = $_POST['PARAM_1'];
74     $detail = $_POST['PARAM_2'];
75     $comments = $_POST['PARAM_3'];
76         $destination = $_POST['PARAM_4'];
77         if ($destination)
78                 include_once($path_to_root . "/reporting/includes/excel_report.inc");
79         else
80                 include_once($path_to_root . "/reporting/includes/pdf_report.inc");
81         $detail = !$detail;
82     $dec = user_price_dec();
83
84         if ($category == ALL_NUMERIC)
85                 $category = 0;
86         if ($category == 0)
87                 $cat = _('All');
88         else
89                 $cat = get_category_name($category);
90
91         if ($location == ALL_TEXT)
92                 $location = 'all';
93         if ($location == 'all')
94                 $loc = _('All');
95         else
96                 $loc = get_location_name($location);
97
98         $cols = array(0, 75, 225, 250, 350, 450,        515);
99
100         $headers = array(_('Category'), '', _('UOM'), _('Quantity'), _('Unit Cost'), _('Value'));
101
102         $aligns = array('left', 'left', 'left', 'right', 'right', 'right');
103
104     $params =   array(  0 => $comments,
105                                     1 => array('text' => _('Category'), 'from' => $cat, 'to' => ''),
106                                     2 => array('text' => _('Location'), 'from' => $loc, 'to' => ''));
107
108     $rep = new FrontReport(_('Inventory Valuation Report'), "InventoryValReport", user_pagesize());
109
110     $rep->Font();
111     $rep->Info($params, $cols, $headers, $aligns);
112     $rep->NewPage();
113
114         $res = getTransactions($category, $location);
115         $total = $grandtotal = 0.0;
116         $catt = '';
117         while ($trans=db_fetch($res))
118         {
119                 if ($catt != $trans['cat_description'])
120                 {
121                         if ($catt != '')
122                         {
123                                 if ($detail)
124                                 {
125                                         $rep->NewLine(2, 3);
126                                         $rep->TextCol(0, 4, _('Total'));
127                                 }
128                                 $rep->AmountCol(5, 6, $total, $dec);
129                                 if ($detail)
130                                 {
131                                         $rep->Line($rep->row - 2);
132                                         $rep->NewLine();
133                                 }
134                                 $rep->NewLine();
135                                 $total = 0.0;
136                         }
137                         $rep->TextCol(0, 1, $trans['category_id']);
138                         $rep->TextCol(1, 2, $trans['cat_description']);
139                         $catt = $trans['cat_description'];
140                         if ($detail)
141                                 $rep->NewLine();
142                 }
143                 if ($detail)
144                 {
145                         $rep->NewLine();
146                         $rep->fontSize -= 2;
147                         $rep->TextCol(0, 1, $trans['stock_id']);
148                         $rep->TextCol(1, 2, $trans['description'].($trans['inactive']==1 ? " ("._("Inactive").")" : ""), -1);
149                         $rep->TextCol(2, 3, $trans['units']);
150                         $rep->AmountCol(3, 4, $trans['QtyOnHand'], get_qty_dec($trans['stock_id']));
151                         $dec2 = 0;
152                         price_decimal_format($trans['UnitCost'], $dec2);
153                         $rep->AmountCol(4, 5, $trans['UnitCost'], $dec2);
154                         $rep->AmountCol(5, 6, $trans['ItemTotal'], $dec);
155                         $rep->fontSize += 2;
156                 }
157                 $total += $trans['ItemTotal'];
158                 $grandtotal += $trans['ItemTotal'];
159         }
160         if ($detail)
161         {
162                 $rep->NewLine(2, 3);
163                 $rep->TextCol(0, 4, _('Total'));
164         }
165         $rep->Amountcol(5, 6, $total, $dec);
166         if ($detail)
167         {
168                 $rep->Line($rep->row - 2);
169                 $rep->NewLine();
170         }
171         $rep->NewLine(2, 1);
172         $rep->TextCol(0, 4, _('Grand Total'));
173         $rep->AmountCol(5, 6, $grandtotal, $dec);
174         $rep->Line($rep->row  - 4);
175         $rep->NewLine();
176     $rep->End();
177 }
178
179 ?>