Fixed Customer statement reflecting wrong balance. @Braath Waate.
[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 include_once($path_to_root . "/includes/db/crm_contacts_db.inc");
26
27 //----------------------------------------------------------------------------------------------------
28
29 print_statements();
30
31 //----------------------------------------------------------------------------------------------------
32
33 function getTransactions($debtorno, $date, $show_also_allocated)
34 {
35     $sql = "SELECT trans.type,
36         trans.trans_no,
37         trans.order_,
38         trans.reference,
39         trans.tran_date,
40         trans.due_date,
41         (ov_amount + ov_gst + ov_freight + ov_freight_tax + ov_discount) AS TotalAmount, alloc AS Allocated,
42                 ((trans.type = ".ST_SALESINVOICE.") AND due_date < '$date') AS OverDue
43                 FROM ".TB_PREF."debtor_trans trans
44                 LEFT JOIN ".TB_PREF."voided as v
45             ON trans.trans_no=v.id AND trans.type=v.type
46         WHERE tran_date <= '$date' AND debtor_no = ".db_escape($debtorno)."
47                         AND trans.type <> ".ST_CUSTDELIVERY." AND ISNULL(v.date_)
48                         AND ABS(ov_amount + ov_gst + ov_freight + ov_freight_tax + ov_discount) > ". FLOAT_COMP_DELTA;
49         
50         if (!$show_also_allocated)
51                 $sql .= " AND ABS(ABS(ov_amount + ov_gst + ov_freight + ov_freight_tax + ov_discount) - alloc) > ". FLOAT_COMP_DELTA;
52         $sql .= " ORDER BY tran_date";
53
54     return db_query($sql,"No transactions were returned");
55 }
56
57 //----------------------------------------------------------------------------------------------------
58
59 function print_statements()
60 {
61         global $path_to_root, $systypes_array;
62
63         include_once($path_to_root . "/reporting/includes/pdf_report.inc");
64
65         $customer = $_POST['PARAM_0'];
66         $currency = $_POST['PARAM_1'];
67         $show_also_allocated = $_POST['PARAM_2'];
68         $email = $_POST['PARAM_3'];
69         $comments = $_POST['PARAM_4'];
70         $orientation = $_POST['PARAM_5'];
71
72         $orientation = ($orientation ? 'L' : 'P');
73         $dec = user_price_dec();
74
75         $cols = array(4, 100, 130, 190, 250, 320, 385, 450, 515);
76
77         //$headers in doctext.inc
78
79         $aligns = array('left', 'left', 'left', 'left', 'right', 'right', 'right', 'right');
80
81         $params = array('comments' => $comments);
82
83         $cur = get_company_pref('curr_default');
84         $PastDueDays1 = get_company_pref('past_due_days');
85         $PastDueDays2 = 2 * $PastDueDays1;
86
87     if ($orientation == 'L')
88         recalculate_cols($cols);
89
90         $sql = "SELECT debtor_no, name AS DebtorName, address, tax_id, curr_code, curdate() AS tran_date FROM ".TB_PREF."debtors_master";
91         if ($customer != ALL_TEXT)
92                 $sql .= " WHERE debtor_no = ".db_escape($customer);
93         else
94                 $sql .= " ORDER by name";
95         $result = db_query($sql, "The customers could not be retrieved");
96
97         while ($myrow=db_fetch($result))
98         {
99                 if ($currency != ALL_TEXT && $myrow['curr_code'] != $currency) {
100                         continue;
101                 }       
102                 $date = date('Y-m-d');
103
104                 $myrow['order_'] = "";
105
106                 $TransResult = getTransactions($myrow['debtor_no'], $date, $show_also_allocated);
107                 $baccount = get_default_bank_account($myrow['curr_code']);
108                 $params['bankaccount'] = $baccount['id'];
109                 if (db_num_rows($TransResult) == 0)
110                         continue;
111         if ($email == 0 && !isset($rep))
112             $rep = new FrontReport(_('STATEMENT'), "StatementBulk", user_pagesize(), 9, $orientation);
113                 if ($email == 1)
114                 {
115                         $rep = new FrontReport("", "", user_pagesize(), 9, $orientation);
116                         $rep->title = _('STATEMENT');
117                         $rep->filename = "Statement" . $myrow['debtor_no'] . ".pdf";
118                         $rep->Info($params, $cols, null, $aligns);
119                 }
120
121                 $contacts = get_customer_contacts($myrow['debtor_no'], 'invoice');
122                 $rep->currency = $cur;
123                 $rep->Font();
124                 $rep->Info($params, $cols, null, $aligns);
125
126                 //= get_branch_contacts($branch['branch_code'], 'invoice', $branch['debtor_no']);
127                 $rep->SetCommonData($myrow, null, null, $baccount, ST_STATEMENT, $contacts);
128                 $rep->SetHeaderType('Header2');
129                 $rep->NewPage();
130                 $rep->NewLine();
131                 $doctype = ST_STATEMENT;
132                 $rep->fontSize += 2;
133                 $rep->TextCol(0, 8, _("Outstanding Transactions"));
134                 $rep->fontSize -= 2;
135                 $rep->NewLine(2);
136                 while ($myrow2=db_fetch($TransResult))
137                 {
138                         $DisplayTotal = number_format2(Abs($myrow2["TotalAmount"]),$dec);
139                         $DisplayAlloc = number_format2($myrow2["Allocated"],$dec);
140                         $DisplayNet = number_format2($myrow2["TotalAmount"] - $myrow2["Allocated"],$dec);
141
142                         $rep->TextCol(0, 1, $systypes_array[$myrow2['type']], -2);
143                         $rep->TextCol(1, 2,     $myrow2['reference'], -2);
144                         $rep->TextCol(2, 3,     sql2date($myrow2['tran_date']), -2);
145                         if ($myrow2['type'] == ST_SALESINVOICE)
146                                 $rep->TextCol(3, 4,     sql2date($myrow2['due_date']), -2);
147                         if ($myrow2['type'] == ST_SALESINVOICE || $myrow2['type'] == ST_BANKPAYMENT || 
148                                 ($myrow2['type'] == ST_JOURNAL && $myrow2["TotalAmount"] > 0.0))
149                                 $rep->TextCol(4, 5,     $DisplayTotal, -2);
150                         else
151                                 $rep->TextCol(5, 6,     $DisplayTotal, -2);
152                         $rep->TextCol(6, 7,     $DisplayAlloc, -2);
153                         $rep->TextCol(7, 8,     $DisplayNet, -2);
154                         $rep->NewLine();
155                         if ($rep->row < $rep->bottomMargin + (10 * $rep->lineHeight))
156                                 $rep->NewPage();
157                 }
158                 $nowdue = "1-" . $PastDueDays1 . " " . _("Days");
159                 $pastdue1 = $PastDueDays1 + 1 . "-" . $PastDueDays2 . " " . _("Days");
160                 $pastdue2 = _("Over") . " " . $PastDueDays2 . " " . _("Days");
161                 $CustomerRecord = get_customer_details($myrow['debtor_no'], null, $show_also_allocated);
162                 $str = array(_("Current"), $nowdue, $pastdue1, $pastdue2, _("Total Balance"));
163                 $str2 = array(number_format2(($CustomerRecord["Balance"] - $CustomerRecord["Due"]),$dec),
164                         number_format2(($CustomerRecord["Due"]-$CustomerRecord["Overdue1"]),$dec),
165                         number_format2(($CustomerRecord["Overdue1"]-$CustomerRecord["Overdue2"]) ,$dec),
166                         number_format2($CustomerRecord["Overdue2"],$dec),
167                         number_format2($CustomerRecord["Balance"],$dec));
168                 $col = array($rep->cols[0], $rep->cols[0] + 110, $rep->cols[0] + 210, $rep->cols[0] + 310,
169                         $rep->cols[0] + 410, $rep->cols[0] + 510);
170                 $rep->row = $rep->bottomMargin + (10 * $rep->lineHeight - 6);
171                 for ($i = 0; $i < 5; $i++)
172                         $rep->TextWrap($col[$i], $rep->row, $col[$i + 1] - $col[$i], $str[$i], 'right');
173                 $rep->NewLine();
174                 for ($i = 0; $i < 5; $i++)
175                         $rep->TextWrap($col[$i], $rep->row, $col[$i + 1] - $col[$i], $str2[$i], 'right');
176                 if ($email == 1)
177                         $rep->End($email, _("Statement") . " " . _("as of") . " " . sql2date($date));
178
179         }
180
181     if (!isset($rep))
182         display_notification("No customers with outstanding balances found");
183         else if ($email == 0)
184                 $rep->End();
185 }
186