Security update merged from 2.1.
[fa-stable.git] / reporting / rep304.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_SALESANALYTIC';
13 // ----------------------------------------------------------------
14 // $ Revision:  2.0 $
15 // Creator:     Joe Hunt
16 // date_:       2005-05-19
17 // Title:       Inventory Sales Report
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 . "/includes/banking.inc");
25 include_once($path_to_root . "/gl/includes/gl_db.inc");
26 include_once($path_to_root . "/inventory/includes/db/items_category_db.inc");
27
28 //----------------------------------------------------------------------------------------------------
29
30 print_inventory_sales();
31
32 function getTransactions($category, $location, $fromcust, $from, $to)
33 {
34         $from = date2sql($from);
35         $to = date2sql($to);
36         $sql = "SELECT ".TB_PREF."stock_master.category_id,
37                         ".TB_PREF."stock_category.description AS cat_description,
38                         ".TB_PREF."stock_master.stock_id,
39                         ".TB_PREF."stock_master.description,
40                         ".TB_PREF."stock_moves.loc_code,
41                         ".TB_PREF."debtor_trans.debtor_no,
42                         ".TB_PREF."debtors_master.name AS debtor_name,
43                         ".TB_PREF."stock_moves.tran_date,
44                         SUM(-".TB_PREF."stock_moves.qty) AS qty,
45                         SUM(-".TB_PREF."stock_moves.qty*".TB_PREF."stock_moves.price*(1-".TB_PREF."stock_moves.discount_percent)) AS amt,
46                         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 cost
47                 FROM ".TB_PREF."stock_master,
48                         ".TB_PREF."stock_category,
49                         ".TB_PREF."debtor_trans,
50                         ".TB_PREF."debtors_master,
51                         ".TB_PREF."stock_moves
52                 WHERE ".TB_PREF."stock_master.stock_id=".TB_PREF."stock_moves.stock_id
53                 AND ".TB_PREF."stock_master.category_id=".TB_PREF."stock_category.category_id
54                 AND ".TB_PREF."debtor_trans.debtor_no=".TB_PREF."debtors_master.debtor_no
55                 AND ".TB_PREF."stock_moves.type=".TB_PREF."debtor_trans.type
56                 AND ".TB_PREF."stock_moves.trans_no=".TB_PREF."debtor_trans.trans_no
57                 AND ".TB_PREF."stock_moves.tran_date>='$from'
58                 AND ".TB_PREF."stock_moves.tran_date<='$to'
59                 AND ((".TB_PREF."debtor_trans.type=".ST_CUSTDELIVERY." AND ".TB_PREF."debtor_trans.version=1) OR ".TB_PREF."stock_moves.type=".ST_CUSTCREDIT.")
60                 AND (".TB_PREF."stock_master.mb_flag='B' OR ".TB_PREF."stock_master.mb_flag='M')";
61                 if ($category != 0)
62                         $sql .= " AND ".TB_PREF."stock_master.category_id = ".db_escape($category);
63                 if ($location != 'all')
64                         $sql .= " AND ".TB_PREF."stock_moves.loc_code = ".db_escape($location);
65                 if ($fromcust != -1)
66                         $sql .= " AND ".TB_PREF."debtors_master.debtor_no = ".db_escape($fromcust);
67                 $sql .= " GROUP BY ".TB_PREF."stock_master.stock_id, ".TB_PREF."debtors_master.name ORDER BY ".TB_PREF."stock_master.category_id,
68                         ".TB_PREF."stock_master.stock_id, ".TB_PREF."debtors_master.name";
69     return db_query($sql,"No transactions were returned");
70
71 }
72
73 //----------------------------------------------------------------------------------------------------
74
75 function print_inventory_sales()
76 {
77     global $path_to_root;
78
79         $from = $_POST['PARAM_0'];
80         $to = $_POST['PARAM_1'];
81     $category = $_POST['PARAM_2'];
82     $location = $_POST['PARAM_3'];
83     $fromcust = $_POST['PARAM_4'];
84         $comments = $_POST['PARAM_5'];
85         $destination = $_POST['PARAM_6'];
86         if ($destination)
87                 include_once($path_to_root . "/reporting/includes/excel_report.inc");
88         else
89                 include_once($path_to_root . "/reporting/includes/pdf_report.inc");
90
91     $dec = user_price_dec();
92
93         if ($category == ALL_NUMERIC)
94                 $category = 0;
95         if ($category == 0)
96                 $cat = _('All');
97         else
98                 $cat = get_category_name($category);
99
100         if ($location == ALL_TEXT)
101                 $location = 'all';
102         if ($location == 'all')
103                 $loc = _('All');
104         else
105                 $loc = get_location_name($location);
106
107         if ($fromcust == ALL_NUMERIC)
108                 $fromc = _('All');
109         else
110                 $fromc = get_customer_name($fromcust);
111
112         $cols = array(0, 75, 175, 250, 300, 375, 450,   515);
113
114         $headers = array(_('Category'), _('Description'), _('Customer'), _('Qty'), _('Sales'), _('Cost'), _('Contribution'));
115         if ($fromcust != ALL_NUMERIC)
116                 $headers[2] = '';       
117
118         $aligns = array('left', 'left', 'left', 'right', 'right', 'right', 'right');
119
120     $params =   array(  0 => $comments,
121                                     1 => array('text' => _('Period'),'from' => $from, 'to' => $to),
122                                     2 => array('text' => _('Category'), 'from' => $cat, 'to' => ''),
123                                     3 => array('text' => _('Location'), 'from' => $loc, 'to' => ''),
124                                     4 => array('text' => _('Customer'), 'from' => $fromc, 'to' => ''));
125
126     $rep = new FrontReport(_('Inventory Sales Report'), "InventorySalesReport", user_pagesize());
127
128     $rep->Font();
129     $rep->Info($params, $cols, $headers, $aligns);
130     $rep->Header();
131
132         $res = getTransactions($category, $location, $fromcust, $from, $to);
133         $total = $grandtotal = 0.0;
134         $total1 = $grandtotal1 = 0.0;
135         $total2 = $grandtotal2 = 0.0;
136         $catt = '';
137         while ($trans=db_fetch($res))
138         {
139                 if ($catt != $trans['cat_description'])
140                 {
141                         if ($catt != '')
142                         {
143                                 $rep->NewLine(2, 3);
144                                 $rep->TextCol(0, 4, _('Total'));
145                                 $rep->AmountCol(4, 5, $total, $dec);
146                                 $rep->AmountCol(5, 6, $total1, $dec);
147                                 $rep->AmountCol(6, 7, $total2, $dec);
148                                 $rep->Line($rep->row - 2);
149                                 $rep->NewLine();
150                                 $rep->NewLine();
151                                 $total = $total1 = $total2 = 0.0;
152                         }
153                         $rep->TextCol(0, 1, $trans['category_id']);
154                         $rep->TextCol(1, 6, $trans['cat_description']);
155                         $catt = $trans['cat_description'];
156                         $rep->NewLine();
157                 }
158
159                 $curr = get_customer_currency($trans['debtor_no']);
160                 $rate = get_exchange_rate_from_home_currency($curr, sql2date($trans['tran_date']));
161                 $trans['amt'] *= $rate;
162                 $cb = $trans['amt'] - $trans['cost'];
163                 $rep->NewLine();
164                 $rep->fontsize -= 2;
165                 $rep->TextCol(0, 1, $trans['stock_id']);
166                 if ($fromcust == ALL_NUMERIC)
167                 {
168                         $rep->TextCol(1, 2, $trans['description']);
169                         $rep->TextCol(2, 3, $trans['debtor_name']);
170                 }
171                 else
172                         $rep->TextCol(1, 3, $trans['description']);
173                 $rep->AmountCol(3, 4, $trans['qty'], get_qty_dec($trans['stock_id']));
174                 $rep->AmountCol(4, 5, $trans['amt'], $dec);
175                 $rep->AmountCol(5, 6, $trans['cost'], $dec);
176                 $rep->AmountCol(6, 7, $cb, $dec);
177                 $rep->fontsize += 2;
178                 $total += $trans['amt'];
179                 $total1 += $trans['cost'];
180                 $total2 += $cb;
181                 $grandtotal += $trans['amt'];
182                 $grandtotal1 += $trans['cost'];
183                 $grandtotal2 += $cb;
184         }
185         $rep->NewLine(2, 3);
186         $rep->TextCol(0, 4, _('Total'));
187         $rep->AmountCol(4, 5, $total, $dec);
188         $rep->AmountCol(5, 6, $total1, $dec);
189         $rep->AmountCol(6, 7, $total2, $dec);
190         $rep->Line($rep->row - 2);
191         $rep->NewLine();
192         $rep->NewLine(2, 1);
193         $rep->TextCol(0, 4, _('Grand Total'));
194         $rep->AmountCol(4, 5, $grandtotal, $dec);
195         $rep->AmountCol(5, 6, $grandtotal1, $dec);
196         $rep->AmountCol(6, 7, $grandtotal2, $dec);
197
198         $rep->Line($rep->row  - 4);
199         $rep->NewLine();
200     $rep->End();
201 }
202
203 ?>