Improved Customer and Supplier Balances Report. Option to choose last column as balance.
[fa-stable.git] / reporting / rep101.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_CUSTPAYMREP';
13
14 // ----------------------------------------------------------------
15 // $ Revision:  2.0 $
16 // Creator:     Joe Hunt
17 // date_:       2005-05-19
18 // Title:       Customer Balances
19 // ----------------------------------------------------------------
20 $path_to_root="..";
21
22 include_once($path_to_root . "/includes/session.inc");
23 include_once($path_to_root . "/includes/date_functions.inc");
24 include_once($path_to_root . "/includes/data_checks.inc");
25 include_once($path_to_root . "/gl/includes/gl_db.inc");
26 include_once($path_to_root . "/sales/includes/db/customers_db.inc");
27
28 //----------------------------------------------------------------------------------------------------
29
30 // trial_inquiry_controls();
31 print_customer_balances();
32
33 function get_open_balance($debtorno, $to, $convert)
34 {
35         if($to)
36                 $to = date2sql($to);
37
38     $sql = "SELECT SUM(IF(t.type = ".ST_SALESINVOICE." OR t.type = ".ST_BANKPAYMENT.",
39         (t.ov_amount + t.ov_gst + t.ov_freight + t.ov_freight_tax + t.ov_discount)";
40     if ($convert)
41         $sql .= " * rate";
42     $sql .= ", 0)) AS charges,
43         SUM(IF(t.type <> ".ST_SALESINVOICE." AND t.type <> ".ST_BANKPAYMENT.",
44         (t.ov_amount + t.ov_gst + t.ov_freight + t.ov_freight_tax + t.ov_discount)";
45     if ($convert)
46         $sql .= " * rate";
47     $sql .= " * -1, 0)) AS credits,
48                 SUM(t.alloc";
49         if ($convert)
50                 $sql .= " * rate";
51         $sql .= ") AS Allocated,
52                 SUM(IF(t.type = ".ST_SALESINVOICE." OR t.type = ".ST_BANKPAYMENT.",
53                         (t.ov_amount + t.ov_gst + t.ov_freight + t.ov_freight_tax + t.ov_discount - t.alloc)";
54     if ($convert)
55         $sql .= " * rate";
56     $sql .= ", 
57         ((t.ov_amount + t.ov_gst + t.ov_freight + t.ov_freight_tax + t.ov_discount) * -1 + t.alloc)";
58     if ($convert)
59         $sql .= " * rate";
60     $sql .= ")) AS OutStanding
61                 FROM ".TB_PREF."debtor_trans t
62         WHERE t.debtor_no = ".db_escape($debtorno)
63                 ." AND t.type <> ".ST_CUSTDELIVERY;
64     if ($to)
65         $sql .= " AND t.tran_date < '$to'";
66         $sql .= " GROUP BY debtor_no";
67
68     $result = db_query($sql,"No transactions were returned");
69     return db_fetch($result);
70 }
71
72 function get_transactions($debtorno, $from, $to)
73 {
74         $from = date2sql($from);
75         $to = date2sql($to);
76
77     $sql = "SELECT ".TB_PREF."debtor_trans.*,
78                 (".TB_PREF."debtor_trans.ov_amount + ".TB_PREF."debtor_trans.ov_gst + ".TB_PREF."debtor_trans.ov_freight + 
79                 ".TB_PREF."debtor_trans.ov_freight_tax + ".TB_PREF."debtor_trans.ov_discount)
80                 AS TotalAmount, ".TB_PREF."debtor_trans.alloc AS Allocated,
81                 ((".TB_PREF."debtor_trans.type = ".ST_SALESINVOICE.")
82                 AND ".TB_PREF."debtor_trans.due_date < '$to') AS OverDue
83         FROM ".TB_PREF."debtor_trans
84         WHERE ".TB_PREF."debtor_trans.tran_date >= '$from'
85                 AND ".TB_PREF."debtor_trans.tran_date <= '$to'
86                 AND ".TB_PREF."debtor_trans.debtor_no = ".db_escape($debtorno)."
87                 AND ".TB_PREF."debtor_trans.type <> ".ST_CUSTDELIVERY."
88         ORDER BY ".TB_PREF."debtor_trans.tran_date";
89
90     return db_query($sql,"No transactions were returned");
91 }
92
93 //----------------------------------------------------------------------------------------------------
94
95 function print_customer_balances()
96 {
97         global $path_to_root, $systypes_array;
98
99         $from = $_POST['PARAM_0'];
100         $to = $_POST['PARAM_1'];
101         $fromcust = $_POST['PARAM_2'];
102         $show_balance = $_POST['PARAM_3'];
103         $currency = $_POST['PARAM_4'];
104         $no_zeros = $_POST['PARAM_5'];
105         $comments = $_POST['PARAM_6'];
106         $orientation = $_POST['PARAM_7'];
107         $destination = $_POST['PARAM_8'];
108         if ($destination)
109                 include_once($path_to_root . "/reporting/includes/excel_report.inc");
110         else
111                 include_once($path_to_root . "/reporting/includes/pdf_report.inc");
112
113         $orientation = ($orientation ? 'L' : 'P');
114         if ($fromcust == ALL_TEXT)
115                 $cust = _('All');
116         else
117                 $cust = get_customer_name($fromcust);
118         $dec = user_price_dec();
119
120         if ($currency == ALL_TEXT)
121         {
122                 $convert = true;
123                 $currency = _('Balances in Home Currency');
124         }
125         else
126                 $convert = false;
127
128         if ($no_zeros) $nozeros = _('Yes');
129         else $nozeros = _('No');
130
131         $cols = array(0, 100, 130, 190, 250, 320, 385, 450,     515);
132
133         $headers = array(_('Trans Type'), _('#'), _('Date'), _('Due Date'), _('Charges'), _('Credits'),
134                 _('Allocated'),         _('Outstanding'));
135
136         if ($show_balance)
137                 $headers[7] = _('Balance');
138         $aligns = array('left', 'left', 'left', 'left', 'right', 'right', 'right', 'right');
139
140     $params =   array(  0 => $comments,
141                                     1 => array('text' => _('Period'), 'from' => $from,          'to' => $to),
142                                     2 => array('text' => _('Customer'), 'from' => $cust,        'to' => ''),
143                                     3 => array('text' => _('Currency'), 'from' => $currency, 'to' => ''),
144                                                 4 => array('text' => _('Suppress Zeros'), 'from' => $nozeros, 'to' => ''));
145
146     $rep = new FrontReport(_('Customer Balances'), "CustomerBalances", user_pagesize(), 9, $orientation);
147     if ($orientation == 'L')
148         recalculate_cols($cols);
149     $rep->Font();
150     $rep->Info($params, $cols, $headers, $aligns);
151     $rep->NewPage();
152
153         $grandtotal = array(0,0,0,0);
154
155         $sql = "SELECT debtor_no, name, curr_code FROM ".TB_PREF."debtors_master ";
156         if ($fromcust != ALL_TEXT)
157                 $sql .= "WHERE debtor_no=".db_escape($fromcust);
158         $sql .= " ORDER BY name";
159         $result = db_query($sql, "The customers could not be retrieved");
160         $num_lines = 0;
161
162         while ($myrow = db_fetch($result))
163         {
164                 if (!$convert && $currency != $myrow['curr_code']) continue;
165                 
166                 $accumulate = 0;
167                 $bal = get_open_balance($myrow['debtor_no'], $from, $convert);
168                 $init[0] = $init[1] = 0.0;
169                 $init[0] = round2(abs($bal['charges']), $dec);
170                 $init[1] = round2(Abs($bal['credits']), $dec);
171                 $init[2] = round2($bal['Allocated'], $dec);
172                 if ($show_balance)
173                 {
174                         $init[3] = $init[0] - $init[1];
175                         $accumulate += $init[3];
176                 }       
177                 else    
178                         $init[3] = round2($bal['OutStanding'], $dec);
179
180                 $res = get_transactions($myrow['debtor_no'], $from, $to);
181                 if ($no_zeros && db_num_rows($res) == 0) continue;
182
183                 $num_lines++;
184                 $rep->fontSize += 2;
185                 $rep->TextCol(0, 2, $myrow['name']);
186                 if ($convert)
187                         $rep->TextCol(2, 3,     $myrow['curr_code']);
188                 $rep->fontSize -= 2;
189                 $rep->TextCol(3, 4,     _("Open Balance"));
190                 $rep->AmountCol(4, 5, $init[0], $dec);
191                 $rep->AmountCol(5, 6, $init[1], $dec);
192                 $rep->AmountCol(6, 7, $init[2], $dec);
193                 $rep->AmountCol(7, 8, $init[3], $dec);
194                 $total = array(0,0,0,0);
195                 for ($i = 0; $i < 4; $i++)
196                 {
197                         $total[$i] += $init[$i];
198                         $grandtotal[$i] += $init[$i];
199                 }
200                 $rep->NewLine(1, 2);
201                 if (db_num_rows($res)==0)
202                         continue;
203                 $rep->Line($rep->row + 4);
204                 while ($trans = db_fetch($res))
205                 {
206                         if ($no_zeros && floatcmp($trans['TotalAmount'], $trans['Allocated']) == 0) continue;
207                         $rep->NewLine(1, 2);
208                         $rep->TextCol(0, 1, $systypes_array[$trans['type']]);
209                         $rep->TextCol(1, 2,     $trans['reference']);
210                         $rep->DateCol(2, 3,     $trans['tran_date'], true);
211                         if ($trans['type'] == ST_SALESINVOICE)
212                                 $rep->DateCol(3, 4,     $trans['due_date'], true);
213                         $item[0] = $item[1] = 0.0;
214                         if ($convert)
215                                 $rate = $trans['rate'];
216                         else
217                                 $rate = 1.0;
218                         if ($trans['type'] == ST_CUSTCREDIT || $trans['type'] == ST_CUSTPAYMENT || $trans['type'] == ST_BANKDEPOSIT)
219                                 $trans['TotalAmount'] *= -1;
220                         if ($trans['TotalAmount'] > 0.0)
221                         {
222                                 $item[0] = round2(abs($trans['TotalAmount']) * $rate, $dec);
223                                 $rep->AmountCol(4, 5, $item[0], $dec);
224                                 $accumulate += $item[0];
225                         }
226                         else
227                         {
228                                 $item[1] = round2(Abs($trans['TotalAmount']) * $rate, $dec);
229                                 $rep->AmountCol(5, 6, $item[1], $dec);
230                                 $accumulate -= $item[1];
231                         }
232                         $item[2] = round2($trans['Allocated'] * $rate, $dec);
233                         $rep->AmountCol(6, 7, $item[2], $dec);
234                         if ($trans['type'] == ST_SALESINVOICE || $trans['type'] == ST_BANKPAYMENT)
235                                 $item[3] = $item[0] + $item[1] - $item[2];
236                         else    
237                                 $item[3] = $item[0] - $item[1] + $item[2];
238                         if ($show_balance)      
239                                 $rep->AmountCol(7, 8, $accumulate, $dec);
240                         else    
241                                 $rep->AmountCol(7, 8, $item[3], $dec);
242                         for ($i = 0; $i < 4; $i++)
243                         {
244                                 $total[$i] += $item[$i];
245                                 $grandtotal[$i] += $item[$i];
246                         }
247                         if ($show_balance)
248                                 $total[3] = $total[0] - $total[1];
249                 }
250                 $rep->Line($rep->row - 8);
251                 $rep->NewLine(2);
252                 $rep->TextCol(0, 3, _('Total'));
253                 for ($i = 0; $i < 4; $i++)
254                         $rep->AmountCol($i + 4, $i + 5, $total[$i], $dec);
255                 $rep->Line($rep->row  - 4);
256                 $rep->NewLine(2);
257         }
258         $rep->fontSize += 2;
259         $rep->TextCol(0, 3, _('Grand Total'));
260         $rep->fontSize -= 2;
261         if ($show_balance)
262                 $grandtotal[3] = $grandtotal[0] - $grandtotal[1];
263         for ($i = 0; $i < 4; $i++)
264                 $rep->AmountCol($i + 4, $i + 5, $grandtotal[$i], $dec);
265         $rep->Line($rep->row  - 4);
266         $rep->NewLine();
267         $rep->End();
268 }
269
270 ?>