Feature 5388: Print Invoices (documents) list gets too long. Fixed by default 180...
[fa-stable.git] / reporting / rep202.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_SUPPLIERANALYTIC';
13 // ----------------------------------------------------------------
14 // $ Revision:  2.0 $
15 // Creator:     Joe Hunt
16 // date_:       2005-05-19
17 // Title:       Ages Supplier Analysis
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
26 //----------------------------------------------------------------------------------------------------
27
28 print_aged_supplier_analysis();
29
30 //----------------------------------------------------------------------------------------------------
31
32 function get_invoices($supplier_id, $to, $all=true)
33 {
34         $todate = date2sql($to);
35         $PastDueDays1 = get_company_pref('past_due_days');
36         $PastDueDays2 = 2 * $PastDueDays1;
37
38         // Revomed allocated from sql
39         if ($all)
40         $value = "(trans.ov_amount + trans.ov_gst + trans.ov_discount)";
41     else
42         $value = "IF (trans.type=".ST_SUPPINVOICE." OR trans.type=".ST_BANKDEPOSIT.", 
43         (trans.ov_amount + trans.ov_gst + trans.ov_discount - trans.alloc),
44         (trans.ov_amount + trans.ov_gst + trans.ov_discount + trans.alloc))";
45         $due = "IF (trans.type=".ST_SUPPINVOICE." OR trans.type=".ST_SUPPCREDIT.",trans.due_date,trans.tran_date)";
46         $sql = "SELECT trans.type,
47                 trans.reference,
48                 trans.tran_date,
49                 $value as Balance,
50                 IF ((TO_DAYS('$todate') - TO_DAYS($due)) > 0,$value,0) AS Due,
51                 IF ((TO_DAYS('$todate') - TO_DAYS($due)) > $PastDueDays1,$value,0) AS Overdue1,
52                 IF ((TO_DAYS('$todate') - TO_DAYS($due)) > $PastDueDays2,$value,0) AS Overdue2
53
54                 FROM ".TB_PREF."suppliers supplier,
55                         ".TB_PREF."supp_trans trans
56
57                 WHERE supplier.supplier_id = trans.supplier_id
58                         AND trans.supplier_id = $supplier_id
59                         AND trans.tran_date <= '$todate'
60                         AND ABS(trans.ov_amount + trans.ov_gst + trans.ov_discount) > ".FLOAT_COMP_DELTA;
61         if (!$all)
62                 $sql .= " AND ABS(trans.ov_amount + trans.ov_gst + trans.ov_discount) - trans.alloc > ".FLOAT_COMP_DELTA;
63         $sql .= " ORDER BY trans.tran_date";
64
65
66         return db_query($sql, "The supplier details could not be retrieved");
67 }
68
69 //----------------------------------------------------------------------------------------------------
70
71 function print_aged_supplier_analysis()
72 {
73     global $path_to_root, $systypes_array, $SysPrefs;
74
75     $to = $_POST['PARAM_0'];
76     $fromsupp = $_POST['PARAM_1'];
77     $currency = $_POST['PARAM_2'];
78         $show_all = $_POST['PARAM_3'];
79         $summaryOnly = $_POST['PARAM_4'];
80     $no_zeros = $_POST['PARAM_5'];
81     $graphics = $_POST['PARAM_6'];
82     $comments = $_POST['PARAM_7'];
83         $orientation = $_POST['PARAM_8'];
84         $destination = $_POST['PARAM_9'];
85
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         $orientation = ($orientation ? 'L' : 'P');
91         if ($graphics)
92         {
93                 include_once($path_to_root . "/reporting/includes/class.graphic.inc");
94                 $pg = new graph();
95         }
96
97         if ($fromsupp == ALL_TEXT)
98                 $from = _('All');
99         else
100                 $from = get_supplier_name($fromsupp);
101         $dec = user_price_dec();
102
103         if ($summaryOnly == 1)
104                 $summary = _('Summary Only');
105         else
106                 $summary = _('Detailed Report');
107         if ($currency == ALL_TEXT)
108         {
109                 $convert = true;
110                 $currency = _('Balances in Home Currency');
111         }
112         else
113                 $convert = false;
114
115         if ($no_zeros) $nozeros = _('Yes');
116         else $nozeros = _('No');
117         if ($show_all) $show = _('Yes');
118         else $show = _('No');
119
120         $PastDueDays1 = get_company_pref('past_due_days');
121         $PastDueDays2 = 2 * $PastDueDays1;
122         $nowdue = "1-" . $PastDueDays1 . " " . _('Days');
123         $pastdue1 = $PastDueDays1 + 1 . "-" . $PastDueDays2 . " " . _('Days');
124         $pastdue2 = _('Over') . " " . $PastDueDays2 . " " . _('Days');
125
126         $cols = array(0, 100, 130, 190, 250, 320, 385, 450,     515);
127
128         $headers = array(_('Supplier'), '',     '',     _('Current'), $nowdue, $pastdue1,$pastdue2,
129                 _('Total Balance'));
130
131         $aligns = array('left', 'left', 'left', 'right', 'right', 'right', 'right',     'right');
132
133         $params =   array(      0 => $comments,
134                                 1 => array('text' => _('End Date'), 'from' => $to, 'to' => ''),
135                                 2 => array('text' => _('Supplier'), 'from' => $from, 'to' => ''),
136                                 3 => array('text' => _('Currency'),'from' => $currency,'to' => ''),
137                                 4 => array('text' => _('Type'), 'from' => $summary,'to' => ''),
138                     5 => array('text' => _('Show Also Allocated'), 'from' => $show, 'to' => ''),                
139                                 6 => array('text' => _('Suppress Zeros'), 'from' => $nozeros, 'to' => ''));
140
141         if ($convert)
142                 $headers[2] = _('currency');
143     $rep = new FrontReport(_('Aged Supplier Analysis'), "AgedSupplierAnalysis", user_pagesize(), 9, $orientation);
144     if ($orientation == 'L')
145         recalculate_cols($cols);
146
147     $rep->Font();
148     $rep->Info($params, $cols, $headers, $aligns);
149     $rep->NewPage();
150
151         $total = array();
152         $total[0] = $total[1] = $total[2] = $total[3] = $total[4] = 0.0;
153         $PastDueDays1 = get_company_pref('past_due_days');
154         $PastDueDays2 = 2 * $PastDueDays1;
155
156         $nowdue = "1-" . $PastDueDays1 . " " . _('Days');
157         $pastdue1 = $PastDueDays1 + 1 . "-" . $PastDueDays2 . " " . _('Days');
158         $pastdue2 = _('Over') . " " . $PastDueDays2 . " " . _('Days');
159
160         $sql = "SELECT supplier_id, supp_name AS name, curr_code FROM ".TB_PREF."suppliers";
161         if ($fromsupp != ALL_TEXT)
162                 $sql .= " WHERE supplier_id=".db_escape($fromsupp);
163         $sql .= " ORDER BY supp_name";
164         $result = db_query($sql, "The suppliers could not be retrieved");
165
166         while ($myrow=db_fetch($result))
167         {
168                 if (!$convert && $currency != $myrow['curr_code']) continue;
169
170                 if ($convert) $rate = get_exchange_rate_from_home_currency($myrow['curr_code'], $to);
171                 else $rate = 1.0;
172
173                 $supprec = get_supplier_details($myrow['supplier_id'], $to, $show_all);
174                 if (!$supprec)
175                         continue;
176                 $supprec['Balance'] *= $rate;
177                 $supprec['Due'] *= $rate;
178                 $supprec['Overdue1'] *= $rate;
179                 $supprec['Overdue2'] *= $rate;
180
181                 $str = array($supprec["Balance"] - $supprec["Due"],
182                         $supprec["Due"]-$supprec["Overdue1"],
183                         $supprec["Overdue1"]-$supprec["Overdue2"],
184                         $supprec["Overdue2"],
185                         $supprec["Balance"]);
186
187                 if ($no_zeros && floatcmp(array_sum($str), 0) == 0) continue;
188
189                 $rep->fontSize += 2;
190                 $rep->TextCol(0, 2,     $myrow['name']);
191                 if ($convert) $rep->TextCol(2, 3,       $myrow['curr_code']);
192                 $rep->fontSize -= 2;
193                 $total[0] += ($supprec["Balance"] - $supprec["Due"]);
194                 $total[1] += ($supprec["Due"]-$supprec["Overdue1"]);
195                 $total[2] += ($supprec["Overdue1"]-$supprec["Overdue2"]);
196                 $total[3] += $supprec["Overdue2"];
197                 $total[4] += $supprec["Balance"];
198                 for ($i = 0; $i < count($str); $i++)
199                         $rep->AmountCol($i + 3, $i + 4, $str[$i], $dec);
200                 $rep->NewLine(1, 2);
201                 if (!$summaryOnly)
202                 {
203                         $res = get_invoices($myrow['supplier_id'], $to, $show_all);
204                 if (db_num_rows($res)==0)
205                                 continue;
206                 $rep->Line($rep->row + 4);
207                         while ($trans=db_fetch($res))
208                         {
209                                 $rep->NewLine(1, 2);
210                         $rep->TextCol(0, 1, $systypes_array[$trans['type']], -2);
211                                 $rep->TextCol(1, 2,     $trans['reference'], -2);
212                                 $rep->TextCol(2, 3,     sql2date($trans['tran_date']), -2);
213                                 foreach ($trans as $i => $value)
214                                         $trans[$i] = (float)$trans[$i] * $rate;
215                                 $str = array($trans["Balance"] - $trans["Due"],
216                                         $trans["Due"]-$trans["Overdue1"],
217                                         $trans["Overdue1"]-$trans["Overdue2"],
218                                         $trans["Overdue2"],
219                                         $trans["Balance"]);
220                                 for ($i = 0; $i < count($str); $i++)
221                                         $rep->AmountCol($i + 3, $i + 4, $str[$i], $dec);
222                         }
223                         $rep->Line($rep->row - 8);
224                         $rep->NewLine(2);
225                 }
226         }
227         if ($summaryOnly)
228         {
229         $rep->Line($rep->row  + 4);
230         $rep->NewLine();
231         }
232         $rep->fontSize += 2;
233         $rep->TextCol(0, 3,     _('Grand Total'));
234         $rep->fontSize -= 2;
235         for ($i = 0; $i < count($total); $i++)
236         {
237                 $rep->AmountCol($i + 3, $i + 4, $total[$i], $dec);
238                 if ($graphics && $i < count($total) - 1)
239                 {
240                         $pg->y[$i] = abs($total[$i]);
241                 }
242         }
243         $rep->Line($rep->row  - 8);
244         $rep->NewLine();
245         if ($graphics)
246         {
247                 $pg->x = array(_('Current'), $nowdue, $pastdue1, $pastdue2);
248                 $pg->title     = $rep->title;
249                 $pg->axis_x    = _("Days");
250                 $pg->axis_y    = _("Amount");
251                 $pg->graphic_1 = $to;
252                 $pg->type      = $graphics;
253                 $pg->skin      = $SysPrefs->graph_skin;
254                 $pg->built_in  = false;
255                 $pg->latin_notation = ($SysPrefs->decseps[user_dec_sep()] != ".");
256                 $filename = company_path(). "/pdf_files/". random_id().".png";
257                 $pg->display($filename, true);
258                 $w = $pg->width / 1.5;
259                 $h = $pg->height / 1.5;
260                 $x = ($rep->pageWidth - $w) / 2;
261                 $rep->NewLine(2);
262                 if ($rep->row - $h < $rep->bottomMargin)
263                         $rep->NewPage();
264                 $rep->AddImage($filename, $x, $rep->row - $h, $w, $h);
265         }
266     $rep->End();
267 }
268