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