Rerun of implemented Selectable Print Orientation (Portrait, Landscape) for all repor...
[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.",
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.",
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.",
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         $currency = $_POST['PARAM_3'];
103         $no_zeros = $_POST['PARAM_4'];
104         $comments = $_POST['PARAM_5'];
105         $orientation = $_POST['PARAM_6'];
106         $destination = $_POST['PARAM_7'];
107         if ($destination)
108                 include_once($path_to_root . "/reporting/includes/excel_report.inc");
109         else
110                 include_once($path_to_root . "/reporting/includes/pdf_report.inc");
111
112         $orientation = ($orientation ? 'L' : 'P');
113         if ($fromcust == ALL_TEXT)
114                 $cust = _('All');
115         else
116                 $cust = get_customer_name($fromcust);
117         $dec = user_price_dec();
118
119         if ($currency == ALL_TEXT)
120         {
121                 $convert = true;
122                 $currency = _('Balances in Home Currency');
123         }
124         else
125                 $convert = false;
126
127         if ($no_zeros) $nozeros = _('Yes');
128         else $nozeros = _('No');
129
130         $cols = array(0, 100, 130, 190, 250, 320, 385, 450,     515);
131
132         $headers = array(_('Trans Type'), _('#'), _('Date'), _('Due Date'), _('Charges'), _('Credits'),
133                 _('Allocated'),         _('Outstanding'));
134
135         $aligns = array('left', 'left', 'left', 'left', 'right', 'right', 'right', 'right');
136
137     $params =   array(  0 => $comments,
138                                     1 => array('text' => _('Period'), 'from' => $from,          'to' => $to),
139                                     2 => array('text' => _('Customer'), 'from' => $cust,        'to' => ''),
140                                     3 => array('text' => _('Currency'), 'from' => $currency, 'to' => ''),
141                                                 4 => array('text' => _('Suppress Zeros'), 'from' => $nozeros, 'to' => ''));
142
143     $rep = new FrontReport(_('Customer Balances'), "CustomerBalances", user_pagesize(), 9, $orientation);
144     if ($orientation == 'L')
145         recalculate_cols($cols);
146     $rep->Font();
147     $rep->Info($params, $cols, $headers, $aligns);
148     $rep->NewPage();
149
150         $grandtotal = array(0,0,0,0);
151
152         $sql = "SELECT debtor_no, name, curr_code FROM ".TB_PREF."debtors_master ";
153         if ($fromcust != ALL_TEXT)
154                 $sql .= "WHERE debtor_no=".db_escape($fromcust);
155         $sql .= " ORDER BY name";
156         $result = db_query($sql, "The customers could not be retrieved");
157         $num_lines = 0;
158
159         while ($myrow = db_fetch($result))
160         {
161                 if (!$convert && $currency != $myrow['curr_code']) continue;
162
163                 $bal = get_open_balance($myrow['debtor_no'], $from, $convert);
164                 $init[0] = $init[1] = 0.0;
165                 $init[0] = round2(abs($bal['charges']), $dec);
166                 $init[1] = round2(Abs($bal['credits']), $dec);
167                 $init[2] = round2($bal['Allocated'], $dec);
168                 $init[3] = round2($bal['OutStanding'], $dec);;
169
170                 $res = get_transactions($myrow['debtor_no'], $from, $to);
171                 if ($no_zeros && db_num_rows($res) == 0) continue;
172
173                 $num_lines++;
174                 $rep->fontSize += 2;
175                 $rep->TextCol(0, 2, $myrow['name']);
176                 if ($convert)
177                         $rep->TextCol(2, 3,     $myrow['curr_code']);
178                 $rep->fontSize -= 2;
179                 $rep->TextCol(3, 4,     _("Open Balance"));
180                 $rep->AmountCol(4, 5, $init[0], $dec);
181                 $rep->AmountCol(5, 6, $init[1], $dec);
182                 $rep->AmountCol(6, 7, $init[2], $dec);
183                 $rep->AmountCol(7, 8, $init[3], $dec);
184                 $total = array(0,0,0,0);
185                 for ($i = 0; $i < 4; $i++)
186                 {
187                         $total[$i] += $init[$i];
188                         $grandtotal[$i] += $init[$i];
189                 }
190                 $rep->NewLine(1, 2);
191                 if (db_num_rows($res)==0)
192                         continue;
193                 $rep->Line($rep->row + 4);
194                 while ($trans = db_fetch($res))
195                 {
196                         if ($no_zeros && floatcmp($trans['TotalAmount'], $trans['Allocated']) == 0) continue;
197                         $rep->NewLine(1, 2);
198                         $rep->TextCol(0, 1, $systypes_array[$trans['type']]);
199                         $rep->TextCol(1, 2,     $trans['reference']);
200                         $rep->DateCol(2, 3,     $trans['tran_date'], true);
201                         if ($trans['type'] == ST_SALESINVOICE)
202                                 $rep->DateCol(3, 4,     $trans['due_date'], true);
203                         $item[0] = $item[1] = 0.0;
204                         if ($convert)
205                                 $rate = $trans['rate'];
206                         else
207                                 $rate = 1.0;
208                         if ($trans['type'] == ST_CUSTCREDIT || $trans['type'] == ST_CUSTPAYMENT || $trans['type'] == ST_BANKDEPOSIT)
209                                 $trans['TotalAmount'] *= -1;
210                         if ($trans['TotalAmount'] > 0.0)
211                         {
212                                 $item[0] = round2(abs($trans['TotalAmount']) * $rate, $dec);
213                                 $rep->AmountCol(4, 5, $item[0], $dec);
214                         }
215                         else
216                         {
217                                 $item[1] = round2(Abs($trans['TotalAmount']) * $rate, $dec);
218                                 $rep->AmountCol(5, 6, $item[1], $dec);
219                         }
220                         $item[2] = round2($trans['Allocated'] * $rate, $dec);
221                         $rep->AmountCol(6, 7, $item[2], $dec);
222                         /*
223                         if ($trans['type'] == 10)
224                                 $item[3] = ($trans['TotalAmount'] - $trans['Allocated']) * $rate;
225                         else
226                                 $item[3] = ($trans['TotalAmount'] + $trans['Allocated']) * $rate;
227                         */
228                         if ($trans['type'] == ST_SALESINVOICE || $trans['type'] == ST_BANKPAYMENT)
229                                 $item[3] = $item[0] + $item[1] - $item[2];
230                         else    
231                                 $item[3] = $item[0] - $item[1] + $item[2];
232                         $rep->AmountCol(7, 8, $item[3], $dec);
233                         for ($i = 0; $i < 4; $i++)
234                         {
235                                 $total[$i] += $item[$i];
236                                 $grandtotal[$i] += $item[$i];
237                         }
238                 }
239                 $rep->Line($rep->row - 8);
240                 $rep->NewLine(2);
241                 $rep->TextCol(0, 3, _('Total'));
242                 for ($i = 0; $i < 4; $i++)
243                         $rep->AmountCol($i + 4, $i + 5, $total[$i], $dec);
244                 $rep->Line($rep->row  - 4);
245                 $rep->NewLine(2);
246         }
247         $rep->fontSize += 2;
248         $rep->TextCol(0, 3, _('Grand Total'));
249         $rep->fontSize -= 2;
250         for ($i = 0; $i < 4; $i++)
251                 $rep->AmountCol($i + 4, $i + 5, $grandtotal[$i], $dec);
252         $rep->Line($rep->row  - 4);
253         $rep->NewLine();
254         $rep->End();
255 }
256
257 ?>