0000978 : PDF report don't run in newer verions of PHP (case sensitive member functions).
[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, ".TB_PREF."stock_master.inactive,
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(-IF(".TB_PREF."stock_moves.standard_cost <> 0, ".TB_PREF."stock_moves.qty * ".TB_PREF."stock_moves.standard_cost, ".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 != '')
64                         $sql .= " AND ".TB_PREF."stock_moves.loc_code = ".db_escape($location);
65                 if ($fromcust != '')
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 _vd($sql);
70     return db_query($sql,"No transactions were returned");
71
72 }
73
74 //----------------------------------------------------------------------------------------------------
75
76 function print_inventory_sales()
77 {
78     global $path_to_root;
79
80         $from = $_POST['PARAM_0'];
81         $to = $_POST['PARAM_1'];
82     $category = $_POST['PARAM_2'];
83     $location = $_POST['PARAM_3'];
84     $fromcust = $_POST['PARAM_4'];
85         $comments = $_POST['PARAM_5'];
86         $destination = $_POST['PARAM_6'];
87         if ($destination)
88                 include_once($path_to_root . "/reporting/includes/excel_report.inc");
89         else
90                 include_once($path_to_root . "/reporting/includes/pdf_report.inc");
91
92     $dec = user_price_dec();
93
94         if ($category == ALL_NUMERIC)
95                 $category = 0;
96         if ($category == 0)
97                 $cat = _('All');
98         else
99                 $cat = get_category_name($category);
100
101         if ($location == '')
102                 $loc = _('All');
103         else
104                 $loc = get_location_name($location);
105
106         if ($fromcust == '')
107                 $fromc = _('All');
108         else
109                 $fromc = get_customer_name($fromcust);
110
111         $cols = array(0, 75, 175, 250, 300, 375, 450,   515);
112
113         $headers = array(_('Category'), _('Description'), _('Customer'), _('Qty'), _('Sales'), _('Cost'), _('Contribution'));
114         if ($fromcust != '')
115                 $headers[2] = '';
116
117         $aligns = array('left', 'left', 'left', 'right', 'right', 'right', 'right');
118
119     $params =   array(  0 => $comments,
120                                     1 => array('text' => _('Period'),'from' => $from, 'to' => $to),
121                                     2 => array('text' => _('Category'), 'from' => $cat, 'to' => ''),
122                                     3 => array('text' => _('Location'), 'from' => $loc, 'to' => ''),
123                                     4 => array('text' => _('Customer'), 'from' => $fromc, 'to' => ''));
124
125     $rep = new FrontReport(_('Inventory Sales Report'), "InventorySalesReport", user_pagesize());
126
127     $rep->Font();
128     $rep->Info($params, $cols, $headers, $aligns);
129     $rep->NewPage();
130
131         $res = getTransactions($category, $location, $fromcust, $from, $to);
132         $total = $grandtotal = 0.0;
133         $total1 = $grandtotal1 = 0.0;
134         $total2 = $grandtotal2 = 0.0;
135         $catt = '';
136         while ($trans=db_fetch($res))
137         {
138                 if ($catt != $trans['cat_description'])
139                 {
140                         if ($catt != '')
141                         {
142                                 $rep->NewLine(2, 3);
143                                 $rep->TextCol(0, 4, _('Total'));
144                                 $rep->AmountCol(4, 5, $total, $dec);
145                                 $rep->AmountCol(5, 6, $total1, $dec);
146                                 $rep->AmountCol(6, 7, $total2, $dec);
147                                 $rep->Line($rep->row - 2);
148                                 $rep->NewLine();
149                                 $rep->NewLine();
150                                 $total = $total1 = $total2 = 0.0;
151                         }
152                         $rep->TextCol(0, 1, $trans['category_id']);
153                         $rep->TextCol(1, 6, $trans['cat_description']);
154                         $catt = $trans['cat_description'];
155                         $rep->NewLine();
156                 }
157
158                 $curr = get_customer_currency($trans['debtor_no']);
159                 $rate = get_exchange_rate_from_home_currency($curr, sql2date($trans['tran_date']));
160                 $trans['amt'] *= $rate;
161                 $cb = $trans['amt'] - $trans['cost'];
162                 $rep->NewLine();
163                 $rep->fontSize -= 2;
164                 $rep->TextCol(0, 1, $trans['stock_id']);
165                 if ($fromcust == ALL_TEXT)
166                 {
167                         $rep->TextCol(1, 2, $trans['description'].($trans['inactive']==1 ? " ("._("Inactive").")" : ""), -1);
168                         $rep->TextCol(2, 3, $trans['debtor_name']);
169                 }
170                 else
171                         $rep->TextCol(1, 3, $trans['description'].($trans['inactive']==1 ? " ("._("Inactive").")" : ""), -1);
172                 $rep->AmountCol(3, 4, $trans['qty'], get_qty_dec($trans['stock_id']));
173                 $rep->AmountCol(4, 5, $trans['amt'], $dec);
174                 $rep->AmountCol(5, 6, $trans['cost'], $dec);
175                 $rep->AmountCol(6, 7, $cb, $dec);
176                 $rep->fontSize += 2;
177                 $total += $trans['amt'];
178                 $total1 += $trans['cost'];
179                 $total2 += $cb;
180                 $grandtotal += $trans['amt'];
181                 $grandtotal1 += $trans['cost'];
182                 $grandtotal2 += $cb;
183         }
184         $rep->NewLine(2, 3);
185         $rep->TextCol(0, 4, _('Total'));
186         $rep->AmountCol(4, 5, $total, $dec);
187         $rep->AmountCol(5, 6, $total1, $dec);
188         $rep->AmountCol(6, 7, $total2, $dec);
189         $rep->Line($rep->row - 2);
190         $rep->NewLine();
191         $rep->NewLine(2, 1);
192         $rep->TextCol(0, 4, _('Grand Total'));
193         $rep->AmountCol(4, 5, $grandtotal, $dec);
194         $rep->AmountCol(5, 6, $grandtotal1, $dec);
195         $rep->AmountCol(6, 7, $grandtotal2, $dec);
196
197         $rep->Line($rep->row  - 4);
198         $rep->NewLine();
199     $rep->End();
200 }
201
202 ?>