Fixed handling extended journal entries in various places.
[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)
34 {
35         if($to)
36                 $to = date2sql($to);
37
38      $sql = "SELECT SUM(IF(t.type = ".ST_SALESINVOICE." OR (t.type = ".ST_JOURNAL." AND t.ov_amount>0),
39         -abs(t.ov_amount + t.ov_gst + t.ov_freight + t.ov_freight_tax + t.ov_discount), 0)) AS charges,";
40      $sql .= "SUM(IF(t.type != ".ST_SALESINVOICE." AND NOT(t.type = ".ST_JOURNAL." AND t.ov_amount>0),
41         abs(t.ov_amount + t.ov_gst + t.ov_freight + t.ov_freight_tax + t.ov_discount) * -1, 0)) AS credits,";
42      $sql .= "SUM(t.alloc) AS Allocated,";
43
44         $sql .= "SUM(IF(t.type = ".ST_SALESINVOICE.", 1, -1) *
45                         (abs(t.ov_amount + t.ov_gst + t.ov_freight + t.ov_freight_tax + t.ov_discount) - abs(t.alloc))) AS OutStanding
46                 FROM ".TB_PREF."debtor_trans t
47         WHERE t.debtor_no = ".db_escape($debtorno)
48                 ." AND t.type <> ".ST_CUSTDELIVERY;
49     if ($to)
50         $sql .= " AND t.tran_date < '$to'";
51         $sql .= " GROUP BY debtor_no";
52
53     $result = db_query($sql,"No transactions were returned");
54     return db_fetch($result);
55 }
56
57 function get_transactions($debtorno, $from, $to)
58 {
59         $from = date2sql($from);
60         $to = date2sql($to);
61
62         $allocated_from = 
63                         "(SELECT trans_type_from as trans_type, trans_no_from as trans_no, date_alloc, sum(amt) amount
64                         FROM ".TB_PREF."cust_allocations alloc
65                                 WHERE person_id=".db_escape($debtorno)."
66                                         AND date_alloc <= '$to'
67                                 GROUP BY trans_type_from, trans_no_from) alloc_from";
68         $allocated_to = 
69                         "(SELECT trans_type_to as trans_type, trans_no_to as trans_no, date_alloc, sum(amt) amount
70                         FROM ".TB_PREF."cust_allocations alloc
71                                 WHERE person_id=".db_escape($debtorno)."
72                                         AND date_alloc <= '$to'
73                                 GROUP BY trans_type_to, trans_no_to) alloc_to";
74
75      $sql = "SELECT trans.*,
76                 (trans.ov_amount + trans.ov_gst + trans.ov_freight + trans.ov_freight_tax + trans.ov_discount) AS TotalAmount,
77                 IFNULL(alloc_from.amount, alloc_to.amount) AS Allocated,
78                 ((trans.type = ".ST_SALESINVOICE.")     AND trans.due_date < '$to') AS OverDue
79         FROM ".TB_PREF."debtor_trans trans
80                         LEFT JOIN ".TB_PREF."voided voided ON trans.type=voided.type AND trans.trans_no=voided.id
81                         LEFT JOIN $allocated_from ON alloc_from.trans_type = trans.type AND alloc_from.trans_no = trans.trans_no
82                         LEFT JOIN $allocated_to ON alloc_to.trans_type = trans.type AND alloc_to.trans_no = trans.trans_no
83
84         WHERE trans.tran_date >= '$from'
85                         AND trans.tran_date <= '$to'
86                         AND trans.debtor_no = ".db_escape($debtorno)."
87                         AND trans.type <> ".ST_CUSTDELIVERY."
88                         AND ISNULL(voided.id)
89         ORDER BY trans.tran_date";
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
161         while ($myrow = db_fetch($result))
162         {
163                 if (!$convert && $currency != $myrow['curr_code']) continue;
164                 
165                 $accumulate = 0;
166                 $rate = $convert ? get_exchange_rate_from_home_currency($myrow['curr_code'], Today()) : 1;
167                 $bal = get_open_balance($myrow['debtor_no'], $from, $convert);
168                 $init[0] = $init[1] = 0.0;
169                 $init[0] = round2(abs($bal['charges']*$rate), $dec);
170                 $init[1] = round2(Abs($bal['credits']*$rate), $dec);
171                 $init[2] = round2($bal['Allocated']*$rate, $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']*$rate, $dec);
179
180                 $res = get_transactions($myrow['debtor_no'], $from, $to);
181                 if ($no_zeros && db_num_rows($res) == 0) continue;
182
183                 $rep->fontSize += 2;
184                 $rep->TextCol(0, 2, $myrow['name']);
185                 if ($convert)
186                         $rep->TextCol(2, 3,     $myrow['curr_code']);
187                 $rep->fontSize -= 2;
188                 $rep->TextCol(3, 4,     _("Open Balance"));
189                 $rep->AmountCol(4, 5, $init[0], $dec);
190                 $rep->AmountCol(5, 6, $init[1], $dec);
191                 $rep->AmountCol(6, 7, $init[2], $dec);
192                 $rep->AmountCol(7, 8, $init[3], $dec);
193                 $total = array(0,0,0,0);
194                 for ($i = 0; $i < 4; $i++)
195                 {
196                         $total[$i] += $init[$i];
197                         $grandtotal[$i] += $init[$i];
198                 }
199                 $rep->NewLine(1, 2);
200                 $rep->Line($rep->row + 4);
201                 if (db_num_rows($res)==0) {
202                         $rep->NewLine(1, 2);
203                         continue;
204                 }
205                 while ($trans = db_fetch($res))
206                 {
207                         if ($no_zeros && floatcmp($trans['TotalAmount'], $trans['Allocated']) == 0) continue;
208                         $rep->NewLine(1, 2);
209                         $rep->TextCol(0, 1, $systypes_array[$trans['type']]);
210                         $rep->TextCol(1, 2,     $trans['reference']);
211                         $rep->DateCol(2, 3,     $trans['tran_date'], true);
212                         if ($trans['type'] == ST_SALESINVOICE)
213                                 $rep->DateCol(3, 4,     $trans['due_date'], true);
214                         $item[0] = $item[1] = 0.0;
215                         if ($trans['type'] == ST_CUSTCREDIT || $trans['type'] == ST_CUSTPAYMENT || $trans['type'] == ST_BANKDEPOSIT)
216                                 $trans['TotalAmount'] *= -1;
217                         if ($trans['TotalAmount'] > 0.0)
218                         {
219                                 $item[0] = round2(abs($trans['TotalAmount']) * $rate, $dec);
220                                 $rep->AmountCol(4, 5, $item[0], $dec);
221                                 $accumulate += $item[0];
222                         }
223                         else
224                         {
225                                 $item[1] = round2(Abs($trans['TotalAmount']) * $rate, $dec);
226                                 $rep->AmountCol(5, 6, $item[1], $dec);
227                                 $accumulate -= $item[1];
228                         }
229                         $item[2] = round2($trans['Allocated'] * $rate, $dec);
230                         $rep->AmountCol(6, 7, $item[2], $dec);
231                         if ($trans['type'] == ST_SALESINVOICE || $trans['type'] == ST_BANKPAYMENT)
232                                 $item[3] = $item[0] + $item[1] - $item[2];
233                         else    
234                                 $item[3] = $item[0] - $item[1] + $item[2];
235                         if ($show_balance)      
236                                 $rep->AmountCol(7, 8, $accumulate, $dec);
237                         else    
238                                 $rep->AmountCol(7, 8, $item[3], $dec);
239                         for ($i = 0; $i < 4; $i++)
240                         {
241                                 $total[$i] += $item[$i];
242                                 $grandtotal[$i] += $item[$i];
243                         }
244                         if ($show_balance)
245                                 $total[3] = $total[0] - $total[1];
246                 }
247                 $rep->Line($rep->row - 8);
248                 $rep->NewLine(2);
249                 $rep->TextCol(0, 3, _('Total'));
250                 for ($i = 0; $i < 4; $i++)
251                         $rep->AmountCol($i + 4, $i + 5, $total[$i], $dec);
252                 $rep->Line($rep->row  - 4);
253                 $rep->NewLine(2);
254         }
255         $rep->fontSize += 2;
256         $rep->TextCol(0, 3, _('Grand Total'));
257         $rep->fontSize -= 2;
258         if ($show_balance)
259                 $grandtotal[3] = $grandtotal[0] - $grandtotal[1];
260         for ($i = 0; $i < 4; $i++)
261                 $rep->AmountCol($i + 4, $i + 5, $grandtotal[$i], $dec);
262         $rep->Line($rep->row  - 4);
263         $rep->NewLine();
264         $rep->End();
265 }
266