[0000172] Difference between Customer Balances and Print Statements
[fa-stable.git] / reporting / rep108.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_CUSTSTATREP';
13 // ----------------------------------------------------------------
14 // $ Revision:  2.0 $
15 // Creator:     Joe Hunt
16 // date_:       2005-05-19
17 // Title:       Print Statements
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 . "/sales/includes/sales_db.inc");
25
26 //----------------------------------------------------------------------------------------------------
27
28 print_statements();
29
30 //----------------------------------------------------------------------------------------------------
31
32 function getTransactions($debtorno, $date)
33 {
34     $sql = "SELECT ".TB_PREF."debtor_trans.*,
35                                 (".TB_PREF."debtor_trans.ov_amount + ".TB_PREF."debtor_trans.ov_gst + ".TB_PREF."debtor_trans.ov_freight + 
36                                 ".TB_PREF."debtor_trans.ov_freight_tax + ".TB_PREF."debtor_trans.ov_discount)
37                                 AS TotalAmount, ".TB_PREF."debtor_trans.alloc AS Allocated,
38                                 ((".TB_PREF."debtor_trans.type = ".ST_SALESINVOICE.")
39                                         AND ".TB_PREF."debtor_trans.due_date < '$date') AS OverDue
40                         FROM ".TB_PREF."debtor_trans
41                         WHERE ".TB_PREF."debtor_trans.tran_date <= '$date' AND ".TB_PREF."debtor_trans.debtor_no = '$debtorno'
42                                 AND ".TB_PREF."debtor_trans.type <> ".ST_CUSTDELIVERY."
43                                 ORDER BY ".TB_PREF."debtor_trans.tran_date";
44
45     return db_query($sql,"No transactions were returned");
46 }
47
48 //----------------------------------------------------------------------------------------------------
49
50 function print_statements()
51 {
52         global $path_to_root, $systypes_array;
53
54         include_once($path_to_root . "/reporting/includes/pdf_report.inc");
55
56         $customer = $_POST['PARAM_0'];
57         $currency = $_POST['PARAM_1'];
58         $email = $_POST['PARAM_2'];
59         $comments = $_POST['PARAM_3'];
60
61         $dec = user_price_dec();
62
63         $cols = array(4, 100, 130, 190, 250, 320, 385, 450, 515);
64
65         //$headers in doctext.inc
66
67         $aligns = array('left', 'left', 'left', 'left', 'right', 'right', 'right', 'right');
68
69         $params = array('comments' => $comments);
70
71         $cur = get_company_pref('curr_default');
72         $PastDueDays1 = get_company_pref('past_due_days');
73         $PastDueDays2 = 2 * $PastDueDays1;
74
75         if ($email == 0)
76         {
77                 $rep = new FrontReport(_('STATEMENT'), "StatementBulk", user_pagesize());
78                 $rep->currency = $cur;
79                 $rep->Font();
80                 $rep->Info($params, $cols, null, $aligns);
81         }
82
83         $sql = "SELECT debtor_no, name AS DebtorName, address, tax_id, email, curr_code, curdate() AS tran_date, payment_terms FROM ".TB_PREF."debtors_master";
84         if ($customer != ALL_NUMERIC)
85                 $sql .= " WHERE debtor_no = $customer";
86         else
87                 $sql .= " ORDER by name";
88         $result = db_query($sql, "The customers could not be retrieved");
89
90         while ($myrow=db_fetch($result))
91         {
92                 $date = date('Y-m-d');
93
94                 $myrow['order_'] = "";
95
96                 $TransResult = getTransactions($myrow['debtor_no'], $date);
97                 $baccount = get_default_bank_account($myrow['curr_code']);
98                 $params['bankaccount'] = $baccount['id'];
99                 if (db_num_rows($TransResult) == 0)
100                         continue;
101                 if ($email == 1)
102                 {
103                         $rep = new FrontReport("", "", user_pagesize());
104                         $rep->currency = $cur;
105                         $rep->Font();
106                         $rep->title = _('STATEMENT');
107                         $rep->filename = "Statement" . $myrow['debtor_no'] . ".pdf";
108                         $rep->Info($params, $cols, null, $aligns);
109                 }
110                 $rep->Header2($myrow, null, null, $baccount, 12);
111                 $rep->NewLine();
112                 $linetype = true;
113                 $doctype = 12;
114                 if ($rep->currency != $myrow['curr_code'])
115                 {
116                         include($path_to_root . "/reporting/includes/doctext2.inc");
117                 }
118                 else
119                 {
120                         include($path_to_root . "/reporting/includes/doctext.inc");
121                 }
122                 $rep->fontSize += 2;
123                 $rep->TextCol(0, 8, $doc_Outstanding);
124                 $rep->fontSize -= 2;
125                 $rep->NewLine(2);
126                 while ($myrow2=db_fetch($TransResult))
127                 {
128                         $DisplayTotal = number_format2(Abs($myrow2["TotalAmount"]),$dec);
129                         $DisplayAlloc = number_format2($myrow2["Allocated"],$dec);
130                         $DisplayNet = number_format2($myrow2["TotalAmount"] - $myrow2["Allocated"],$dec);
131
132                         $rep->TextCol(0, 1, $systypes_array[$myrow2['type']], -2);
133                         $rep->TextCol(1, 2,     $myrow2['reference'], -2);
134                         $rep->TextCol(2, 3,     sql2date($myrow2['tran_date']), -2);
135                         if ($myrow2['type'] == ST_SALESINVOICE)
136                                 $rep->TextCol(3, 4,     sql2date($myrow2['due_date']), -2);
137                         if ($myrow2['type'] == ST_SALESINVOICE)
138                                 $rep->TextCol(4, 5,     $DisplayTotal, -2);
139                         else
140                                 $rep->TextCol(5, 6,     $DisplayTotal, -2);
141                         $rep->TextCol(6, 7,     $DisplayAlloc, -2);
142                         $rep->TextCol(7, 8,     $DisplayNet, -2);
143                         $rep->NewLine();
144                         if ($rep->row < $rep->bottomMargin + (10 * $rep->lineHeight))
145                                 $rep->Header2($myrow, null, null, $baccount, 12);
146                 }
147                 $nowdue = "1-" . $PastDueDays1 . " " . $doc_Days;
148                 $pastdue1 = $PastDueDays1 + 1 . "-" . $PastDueDays2 . " " . $doc_Days;
149                 $pastdue2 = $doc_Over . " " . $PastDueDays2 . " " . $doc_Days;
150                 $CustomerRecord = get_customer_details($myrow['debtor_no']);
151                 $str = array($doc_Current, $nowdue, $pastdue1, $pastdue2, $doc_Total_Balance);
152                 $str2 = array(number_format2(($CustomerRecord["Balance"] - $CustomerRecord["Due"]),$dec),
153                         number_format2(($CustomerRecord["Due"]-$CustomerRecord["Overdue1"]),$dec),
154                         number_format2(($CustomerRecord["Overdue1"]-$CustomerRecord["Overdue2"]) ,$dec),
155                         number_format2($CustomerRecord["Overdue2"],$dec),
156                         number_format2($CustomerRecord["Balance"],$dec));
157                 $col = array($rep->cols[0], $rep->cols[0] + 110, $rep->cols[0] + 210, $rep->cols[0] + 310,
158                         $rep->cols[0] + 410, $rep->cols[0] + 510);
159                 $rep->row = $rep->bottomMargin + (8 * $rep->lineHeight - 6);
160                 for ($i = 0; $i < 5; $i++)
161                         $rep->TextWrap($col[$i], $rep->row, $col[$i + 1] - $col[$i], $str[$i], 'right');
162                 $rep->NewLine();
163                 for ($i = 0; $i < 5; $i++)
164                         $rep->TextWrap($col[$i], $rep->row, $col[$i + 1] - $col[$i], $str2[$i], 'right');
165                 if ($email == 1)
166                         $rep->End($email, $doc_Statement . " " . $doc_as_of . " " . sql2date($date), $myrow, 12);
167
168         }
169         if ($email == 0)
170                 $rep->End();
171 }
172
173 ?>