PHP 7.4 Bugs in some reports.
[fa-stable.git] / reporting / rep306.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_purchase();
31
32 function getTransactions($category, $location, $fromsupp, $item, $from, $to)
33 {
34         $from = date2sql($from);
35         $to = date2sql($to);
36         $sql = "SELECT item.category_id,
37                         category.description AS cat_description,
38                         item.stock_id,
39                         item.description, item.inactive,
40                         move.loc_code,
41                         supplier.supplier_id , IF(ISNULL(grn.rate), credit.rate, grn.rate) ex_rate,
42                         supplier.supp_name AS supplier_name,
43                         move.tran_date,
44                         move.qty AS qty,
45                         move.price
46                 FROM ".TB_PREF."stock_moves move
47                                 LEFT JOIN ".TB_PREF."supp_trans credit ON credit.trans_no=move.trans_no AND credit.type=move.type
48                                 LEFT JOIN ".TB_PREF."grn_batch grn ON grn.id=move.trans_no AND 25=move.type
49                                 LEFT JOIN ".TB_PREF."suppliers supplier ON IFNULL(grn.supplier_id, credit.supplier_id)=supplier.supplier_id,
50                         ".TB_PREF."stock_master item,
51                         ".TB_PREF."stock_category category
52                 WHERE item.stock_id=move.stock_id
53                 AND item.category_id=category.category_id
54                 AND move.tran_date>='$from'
55                 AND move.tran_date<='$to'
56                 AND (move.type=".ST_SUPPRECEIVE." OR move.type=".ST_SUPPCREDIT.")
57                 AND (item.mb_flag='B' OR item.mb_flag='M')";
58                 if ($category != 0)
59                         $sql .= " AND item.category_id = ".db_escape($category);
60                 if ($location != '')
61                         $sql .= " AND move.loc_code = ".db_escape($location);
62                 if ($fromsupp != '')
63                         $sql .= " AND supplier.supplier_id = ".db_escape($fromsupp);
64                 if ($item != '')
65                         $sql .= " AND item.stock_id = ".db_escape($item);
66                 $sql .= " ORDER BY item.category_id,
67                         supplier.supp_name, item.stock_id, move.tran_date";
68     return db_query($sql,"No transactions were returned");
69
70 }
71
72 function get_supp_inv_reference($supplier_id, $stock_id, $date)
73 {
74         $sql = "SELECT trans.supp_reference
75                 FROM ".TB_PREF."supp_trans trans,
76                         ".TB_PREF."supp_invoice_items line,
77                         ".TB_PREF."grn_batch batch,
78                         ".TB_PREF."grn_items item
79                 WHERE trans.type=line.supp_trans_type
80                 AND trans.trans_no=line.supp_trans_no
81                 AND item.grn_batch_id=batch.id
82                 AND item.item_code=line.stock_id
83                 AND trans.supplier_id=".db_escape($supplier_id)."
84                 AND line.stock_id=".db_escape($stock_id)."
85                 AND trans.tran_date=".db_escape($date);
86     $result = db_query($sql,"No transactions were returned");
87     $row = db_fetch_row($result);
88     if (isset($row[0]))
89         return $row[0];
90     else
91         return '';
92 }
93
94 //----------------------------------------------------------------------------------------------------
95
96 function print_inventory_purchase()
97 {
98     global $path_to_root;
99
100         $from = $_POST['PARAM_0'];
101         $to = $_POST['PARAM_1'];
102     $category = $_POST['PARAM_2'];
103     $location = $_POST['PARAM_3'];
104     $fromsupp = $_POST['PARAM_4'];
105     $item = $_POST['PARAM_5'];
106         $comments = $_POST['PARAM_6'];
107         $orientation = $_POST['PARAM_7'];
108         $destination = $_POST['PARAM_8'];
109         if ($destination)
110                 include_once($path_to_root . "/reporting/includes/excel_report.inc");
111         else
112                 include_once($path_to_root . "/reporting/includes/pdf_report.inc");
113
114         $orientation = ($orientation ? 'L' : 'P');
115     $dec = user_price_dec();
116
117         if ($category == ALL_NUMERIC)
118                 $category = 0;
119         if ($category == 0)
120                 $cat = _('All');
121         else
122                 $cat = get_category_name($category);
123
124         if ($location == '')
125                 $loc = _('All');
126         else
127                 $loc = get_location_name($location);
128
129         if ($fromsupp == '')
130                 $froms = _('All');
131         else
132                 $froms = get_supplier_name($fromsupp);
133
134         if ($item == '')
135                 $itm = _('All');
136         else
137                 $itm = $item;
138
139         $cols = array(0, 60, 180, 225, 275, 400, 420, 465,      520);
140
141         $headers = array(_('Category'), _('Description'), _('Date'), _('#'), _('Supplier'), _('Qty'), _('Unit Price'), _('Total'));
142         if ($fromsupp != '')
143                 $headers[4] = '';
144
145         $aligns = array('left', 'left', 'left', 'left', 'left', 'left', 'right', 'right');
146
147     $params =   array(  0 => $comments,
148                                     1 => array('text' => _('Period'),'from' => $from, 'to' => $to),
149                                     2 => array('text' => _('Category'), 'from' => $cat, 'to' => ''),
150                                     3 => array('text' => _('Location'), 'from' => $loc, 'to' => ''),
151                                     4 => array('text' => _('Supplier'), 'from' => $froms, 'to' => ''),
152                                     5 => array('text' => _('Item'), 'from' => $itm, 'to' => ''));
153
154     $rep = new FrontReport(_('Inventory Purchasing Report'), "InventoryPurchasingReport", user_pagesize(), 9, $orientation);
155     if ($orientation == 'L')
156         recalculate_cols($cols);
157
158     $rep->Font();
159     $rep->Info($params, $cols, $headers, $aligns);
160     $rep->NewPage();
161
162         $res = getTransactions($category, $location, $fromsupp, $item, $from, $to);
163
164         $total = $total_supp = $grandtotal = 0.0;
165         $total_qty = 0.0;
166         $catt = $stock_description = $stock_id = $supplier_name = '';
167         while ($trans=db_fetch($res))
168         {
169                 if ($stock_description != $trans['description'])
170                 {
171                         if ($stock_description != '')
172                         {
173                                 if ($supplier_name != '')
174                                 {
175                                         $rep->NewLine(2, 3);
176                                         $rep->TextCol(0, 1, _('Total'));
177                                         $rep->TextCol(1, 4, $stock_description);
178                                         $rep->TextCol(4, 5, $supplier_name);
179                                         $rep->AmountCol(5, 7, $total_qty, get_qty_dec($stock_id));
180                                         $rep->AmountCol(7, 8, $total_supp, $dec);
181                                         $rep->Line($rep->row - 2);
182                                         $rep->NewLine();
183                                         $total_supp = $total_qty = 0.0;
184                                         $supplier_name = $trans['supplier_name'];
185                                 }       
186                         }
187                         $stock_id = $trans['stock_id'];
188                         $stock_description = $trans['description'];
189                 }
190
191                 if ($supplier_name != $trans['supplier_name'])
192                 {
193                         if ($supplier_name != '')
194                         {
195                                 $rep->NewLine(2, 3);
196                                 $rep->TextCol(0, 1, _('Total'));
197                                 $rep->TextCol(1, 4, $stock_description);
198                                 $rep->TextCol(4, 5, $supplier_name);
199                                 $rep->AmountCol(5, 7, $total_qty, get_qty_dec($stock_id));
200                                 $rep->AmountCol(7, 8, $total_supp, $dec);
201                                 $rep->Line($rep->row - 2);
202                                 $rep->NewLine();
203                                 $total_supp = $total_qty = 0.0;
204                         }
205                         $supplier_name = $trans['supplier_name'];
206                 }
207                 if ($catt != $trans['cat_description'])
208                 {
209                         if ($catt != '')
210                         {
211                                 $rep->NewLine(2, 3);
212                                 $rep->TextCol(0, 1, _('Total'));
213                                 $rep->TextCol(1, 7, $catt);
214                                 $rep->AmountCol(7, 8, $total, $dec);
215                                 $rep->Line($rep->row - 2);
216                                 $rep->NewLine();
217                                 $rep->NewLine();
218                                 $total = 0.0;
219                         }
220                         $rep->TextCol(0, 1, $trans['category_id']);
221                         $rep->TextCol(1, 6, $trans['cat_description']);
222                         $catt = $trans['cat_description'];
223                         $rep->NewLine();
224                 }
225                 
226                 $curr = get_supplier_currency($trans['supplier_id']);
227                 $trans['price'] *= $trans['ex_rate'];
228                 $rep->NewLine();
229                 $trans['supp_reference'] = get_supp_inv_reference($trans['supplier_id'], $trans['stock_id'], $trans['tran_date']);
230                 $rep->fontSize -= 2;
231                 $rep->TextCol(0, 1, $trans['stock_id']);
232                 if ($fromsupp == ALL_TEXT)
233                 {
234                         $rep->TextCol(1, 2, $trans['description'].($trans['inactive']==1 ? " ("._("Inactive").")" : ""), -1);
235                         $rep->TextCol(2, 3, sql2date($trans['tran_date']));
236                         $rep->TextCol(3, 4, $trans['supp_reference']);
237                         $rep->TextCol(4, 5, $trans['supplier_name']);
238                 }
239                 else
240                 {
241                         $rep->TextCol(1, 2, $trans['description'].($trans['inactive']==1 ? " ("._("Inactive").")" : ""), -1);
242                         $rep->TextCol(2, 3, sql2date($trans['tran_date']));
243                         $rep->TextCol(3, 4, $trans['supp_reference']);
244                 }       
245                 $rep->AmountCol(5, 6, $trans['qty'], get_qty_dec($trans['stock_id']));
246                 $rep->AmountCol(6, 7, $trans['price'], $dec);
247                 $amt = $trans['qty'] * $trans['price'];
248                 $rep->AmountCol(7, 8, $amt, $dec);
249                 $rep->fontSize += 2;
250                 $total += $amt;
251                 $total_supp += $amt;
252                 $grandtotal += $amt;
253                 $total_qty += $trans['qty'];
254         }
255         if ($stock_description != '')
256         {
257                 if ($supplier_name != '')
258                 {
259                         $rep->NewLine(2, 3);
260                         $rep->TextCol(0, 1, _('Total'));
261                         $rep->TextCol(1, 4, $stock_description);
262                         $rep->TextCol(4, 5, $supplier_name);
263                         $rep->AmountCol(5, 7, $total_qty, get_qty_dec($stock_id));
264                         $rep->AmountCol(7, 8, $total_supp, $dec);
265                         $rep->Line($rep->row - 2);
266                         $rep->NewLine();
267                         $rep->NewLine();
268                         $total_supp = $total_qty = 0.0;
269                         $supplier_name = isset($trans['supplier_name']) ? $trans['supplier_name'] : "";
270                 }       
271         }
272         if ($supplier_name != '')
273         {
274                 $rep->NewLine(2, 3);
275                 $rep->TextCol(0, 1, _('Total'));
276                 $rep->TextCol(1, 4, $stock_description);
277                 $rep->TextCol(4, 5, $supplier_name);
278                 $rep->AmountCol(5, 7, $total_qty, get_qty_dec($stock_id));
279                 $rep->AmountCol(7, 8, $total_supp, $dec);
280                 $rep->Line($rep->row - 2);
281                 $rep->NewLine();
282                 $rep->NewLine();
283         }
284
285         $rep->NewLine(2, 3);
286         $rep->TextCol(0, 1, _('Total'));
287         $rep->TextCol(1, 7, $catt);
288         $rep->AmountCol(7, 8, $total, $dec);
289         $rep->Line($rep->row - 2);
290         $rep->NewLine();
291         $rep->NewLine(2, 1);
292         $rep->TextCol(0, 7, _('Grand Total'));
293         $rep->AmountCol(7, 8, $grandtotal, $dec);
294
295         $rep->Line($rep->row  - 4);
296         $rep->NewLine();
297     $rep->End();
298 }
299