054a12d613b19c1d90c10d32bf6599151b8d1699
[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." 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     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 == '')
101                 $loc = _('All');
102         else
103                 $loc = get_location_name($location);
104
105         if ($fromcust == '')
106                 $fromc = _('All');
107         else
108                 $fromc = get_customer_name($fromcust);
109
110         $cols = array(0, 75, 175, 250, 300, 375, 450,   515);
111
112         $headers = array(_('Category'), _('Description'), _('Customer'), _('Qty'), _('Sales'), _('Cost'), _('Contribution'));
113         if ($fromcust != '')
114                 $headers[2] = '';
115
116         $aligns = array('left', 'left', 'left', 'right', 'right', 'right', 'right');
117
118     $params =   array(  0 => $comments,
119                                     1 => array('text' => _('Period'),'from' => $from, 'to' => $to),
120                                     2 => array('text' => _('Category'), 'from' => $cat, 'to' => ''),
121                                     3 => array('text' => _('Location'), 'from' => $loc, 'to' => ''),
122                                     4 => array('text' => _('Customer'), 'from' => $fromc, 'to' => ''));
123
124     $rep = new FrontReport(_('Inventory Sales Report'), "InventorySalesReport", user_pagesize());
125
126     $rep->Font();
127     $rep->Info($params, $cols, $headers, $aligns);
128     $rep->NewPage();
129
130         $res = getTransactions($category, $location, $fromcust, $from, $to);
131         $total = $grandtotal = 0.0;
132         $total1 = $grandtotal1 = 0.0;
133         $total2 = $grandtotal2 = 0.0;
134         $catt = '';
135         while ($trans=db_fetch($res))
136         {
137                 if ($catt != $trans['cat_description'])
138                 {
139                         if ($catt != '')
140                         {
141                                 $rep->NewLine(2, 3);
142                                 $rep->TextCol(0, 4, _('Total'));
143                                 $rep->AmountCol(4, 5, $total, $dec);
144                                 $rep->AmountCol(5, 6, $total1, $dec);
145                                 $rep->AmountCol(6, 7, $total2, $dec);
146                                 $rep->Line($rep->row - 2);
147                                 $rep->NewLine();
148                                 $rep->NewLine();
149                                 $total = $total1 = $total2 = 0.0;
150                         }
151                         $rep->TextCol(0, 1, $trans['category_id']);
152                         $rep->TextCol(1, 6, $trans['cat_description']);
153                         $catt = $trans['cat_description'];
154                         $rep->NewLine();
155                 }
156
157                 $curr = get_customer_currency($trans['debtor_no']);
158                 $rate = get_exchange_rate_from_home_currency($curr, sql2date($trans['tran_date']));
159                 $trans['amt'] *= $rate;
160                 $cb = $trans['amt'] - $trans['cost'];
161                 $rep->NewLine();
162                 $rep->fontSize -= 2;
163                 $rep->TextCol(0, 1, $trans['stock_id']);
164                 if ($fromcust == ALL_TEXT)
165                 {
166                         $rep->TextCol(1, 2, $trans['description'].($trans['inactive']==1 ? " ("._("Inactive").")" : ""), -1);
167                         $rep->TextCol(2, 3, $trans['debtor_name']);
168                 }
169                 else
170                         $rep->TextCol(1, 3, $trans['description'].($trans['inactive']==1 ? " ("._("Inactive").")" : ""), -1);
171                 $rep->AmountCol(3, 4, $trans['qty'], get_qty_dec($trans['stock_id']));
172                 $rep->AmountCol(4, 5, $trans['amt'], $dec);
173                 $rep->AmountCol(5, 6, $trans['cost'], $dec);
174                 $rep->AmountCol(6, 7, $cb, $dec);
175                 $rep->fontSize += 2;
176                 $total += $trans['amt'];
177                 $total1 += $trans['cost'];
178                 $total2 += $cb;
179                 $grandtotal += $trans['amt'];
180                 $grandtotal1 += $trans['cost'];
181                 $grandtotal2 += $cb;
182         }
183         $rep->NewLine(2, 3);
184         $rep->TextCol(0, 4, _('Total'));
185         $rep->AmountCol(4, 5, $total, $dec);
186         $rep->AmountCol(5, 6, $total1, $dec);
187         $rep->AmountCol(6, 7, $total2, $dec);
188         $rep->Line($rep->row - 2);
189         $rep->NewLine();
190         $rep->NewLine(2, 1);
191         $rep->TextCol(0, 4, _('Grand Total'));
192         $rep->AmountCol(4, 5, $grandtotal, $dec);
193         $rep->AmountCol(5, 6, $grandtotal1, $dec);
194         $rep->AmountCol(6, 7, $grandtotal2, $dec);
195
196         $rep->Line($rep->row  - 4);
197         $rep->NewLine();
198     $rep->End();
199 }
200
201 ?>