Due date in transaction table finally fixed.
[fa-stable.git] / sales / inquiry / customer_inquiry.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU Affero General Public License,
5         AGPL, as published by the Free Software Foundation, either version 
6         3 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/agpl-3.0.html>.
11 ***********************************************************************/
12 $page_security = 1;
13 $path_to_root="../..";
14 include($path_to_root . "/includes/db_pager.inc");
15 include_once($path_to_root . "/includes/session.inc");
16
17 include_once($path_to_root . "/sales/includes/sales_ui.inc");
18 include_once($path_to_root . "/sales/includes/sales_db.inc");
19 include_once($path_to_root . "/reporting/includes/reporting.inc");
20
21 $js = "";
22 if ($use_popup_windows)
23         $js .= get_js_open_window(900, 500);
24 if ($use_date_picker)
25         $js .= get_js_date_picker();
26 page(_("Customer Transactions"), false, false, "", $js);
27
28
29 if (isset($_GET['customer_id']))
30 {
31         $_POST['customer_id'] = $_GET['customer_id'];
32 }
33
34 //------------------------------------------------------------------------------------------------
35
36 start_form();
37
38 if (!isset($_POST['customer_id']))
39         $_POST['customer_id'] = get_global_customer();
40
41 start_table("class='tablestyle_noborder'");
42 start_row();
43
44 customer_list_cells(_("Select a customer: "), 'customer_id', null, true);
45
46 date_cells(_("From:"), 'TransAfterDate', '', null, -30);
47 date_cells(_("To:"), 'TransToDate', '', null, 1);
48
49 if (!isset($_POST['filterType']))
50         $_POST['filterType'] = 0;
51
52 cust_allocations_list_cells(null, 'filterType', $_POST['filterType'], true);
53
54 submit_cells('RefreshInquiry', _("Search"),'',_('Refresh Inquiry'), true);
55 end_row();
56 end_table();
57 end_form();
58 set_global_customer($_POST['customer_id']);
59
60 //------------------------------------------------------------------------------------------------
61
62 function display_customer_summary($customer_record)
63 {
64         global $table_style;
65
66         $past1 = get_company_pref('past_due_days');
67         $past2 = 2 * $past1;
68     if ($customer_record["dissallow_invoices"] != 0)
69     {
70         echo "<center><font color=red size=4><b>" . _("CUSTOMER ACCOUNT IS ON HOLD") . "</font></b></center>";
71     }
72
73         $nowdue = "1-" . $past1 . " " . _('Days');
74         $pastdue1 = $past1 + 1 . "-" . $past2 . " " . _('Days');
75         $pastdue2 = _('Over') . " " . $past2 . " " . _('Days');
76
77     start_table("width=80% $table_style");
78     $th = array(_("Currency"), _("Terms"), _("Current"), $nowdue,
79         $pastdue1, $pastdue2, _("Total Balance"));
80     table_header($th);
81
82         start_row();
83     label_cell($customer_record["curr_code"]);
84     label_cell($customer_record["terms"]);
85         amount_cell($customer_record["Balance"] - $customer_record["Due"]);
86         amount_cell($customer_record["Due"] - $customer_record["Overdue1"]);
87         amount_cell($customer_record["Overdue1"] - $customer_record["Overdue2"]);
88         amount_cell($customer_record["Overdue2"]);
89         amount_cell($customer_record["Balance"]);
90         end_row();
91
92         end_table();
93 }
94 //------------------------------------------------------------------------------------------------
95
96 div_start('totals_tbl');
97 if ($_POST['customer_id'] != "" && $_POST['customer_id'] != reserved_words::get_all())
98 {
99         $customer_record = get_customer_details($_POST['customer_id'], $_POST['TransToDate']);
100     display_customer_summary($customer_record);
101     echo "<br>";
102 }
103 div_end();
104
105 if(get_post('RefreshInquiry'))
106 {
107         $Ajax->activate('totals_tbl');
108 }
109 //------------------------------------------------------------------------------------------------
110
111 function systype_name($dummy, $type)
112 {
113         return systypes::name($type);
114 }
115
116 function order_view($row)
117 {
118         return $row['order_']>0 ?
119                 get_customer_trans_view_str(systypes::sales_order(), $row['order_'])
120                 : "";
121 }
122
123 function trans_view($trans)
124 {
125         return get_trans_view_str($trans["type"], $trans["trans_no"]);
126 }
127
128 function due_date($row)
129 {
130         return  $row["type"] == 10      ? $row["due_date"] : '';
131 }
132
133 function gl_view($row)
134 {
135         return get_gl_view_str($row["type"], $row["trans_no"]);
136 }
137
138 function fmt_debit($row)
139 {
140         $value =
141             $row['type']==11 || $row['type']==12 || $row['type']==2 ?
142                 -$row["TotalAmount"] : $row["TotalAmount"];
143         return $value>=0 ? price_format($value) : '';
144
145 }
146
147 function fmt_credit($row)
148 {
149         $value =
150             !($row['type']==11 || $row['type']==12 || $row['type']==2) ?
151                 -$row["TotalAmount"] : $row["TotalAmount"];
152         return $value>0 ? price_format($value) : '';
153 }
154
155 function credit_link($row)
156 {
157         return $row['type'] == 10 && $row["TotalAmount"] - $row["Allocated"] > 0 ?
158                 pager_link(_("Credit This"),
159                         "/sales/customer_credit_invoice.php?InvoiceNumber=".
160                         $row['trans_no'], ICON_CREDIT)
161                         : '';
162 }
163
164 function edit_link($row)
165 {
166         $str = '';
167
168         switch($row['type']) {
169         case 10:
170                 if (get_voided_entry(10, $row["trans_no"]) === false && $row['Allocated'] == 0)
171                         $str = "/sales/customer_invoice.php?ModifyInvoice=".$row['trans_no'];
172                 break;
173         case 11:
174                 if (get_voided_entry(11, $row["trans_no"]) === false && $row['Allocated'] == 0) // 2008-11-19 Joe Hunt
175                 {        
176                         if ($row['order_']==0) // free-hand credit note
177                             $str = "/sales/credit_note_entry.php?ModifyCredit=".$row['trans_no'];
178                         else    // credit invoice
179                             $str = "/sales/customer_credit_invoice.php?ModifyCredit=".$row['trans_no'];
180                 }           
181                 break;
182          case 13:
183                 if (get_voided_entry(13, $row["trans_no"]) === false)
184                         $str = "/sales/customer_delivery.php?ModifyDelivery=".$row['trans_no'];
185                 break;
186         }
187         if ($str != "")
188                 return pager_link(_('Edit'), $str, ICON_EDIT);
189         return '';      
190 }
191
192 function prt_link($row)
193 {
194         if ($row['type'] != 12 && $row['type'] != 2) // customer payment or bank deposit printout not defined yet.
195                 return print_document_link($row['trans_no'], _("Print"), true, $row['type'], ICON_PRINT);
196 }
197
198 function check_overdue($row)
199 {
200         return $row['OverDue'] == 1
201                 && (abs($row["TotalAmount"]) - $row["Allocated"] != 0);
202 }
203 //------------------------------------------------------------------------------------------------
204     $date_after = date2sql($_POST['TransAfterDate']);
205     $date_to = date2sql($_POST['TransToDate']);
206
207   $sql = "SELECT 
208                 trans.type, 
209                 trans.trans_no, 
210                 trans.order_, 
211                 trans.reference,
212                 trans.tran_date, 
213                 trans.due_date, 
214                 debtor.name, 
215                 branch.br_name,
216                 debtor.curr_code,
217                 (trans.ov_amount + trans.ov_gst + trans.ov_freight 
218                         + trans.ov_freight_tax + trans.ov_discount)     AS TotalAmount, 
219                 trans.alloc AS Allocated,
220                 ((trans.type = 10)
221                         AND trans.due_date < '" . date2sql(Today()) . "') AS OverDue
222                 FROM "
223                         .TB_PREF."debtor_trans as trans, "
224                         .TB_PREF."debtors_master as debtor, "
225                         .TB_PREF."cust_branch as branch
226                 WHERE debtor.debtor_no = trans.debtor_no
227                         AND trans.tran_date >= '$date_after'
228                         AND trans.tran_date <= '$date_to'
229                         AND trans.branch_code = branch.branch_code";
230
231         if ($_POST['customer_id'] != reserved_words::get_all())
232                 $sql .= " AND trans.debtor_no = '" . $_POST['customer_id'] . "'";
233
234         if ($_POST['filterType'] != reserved_words::get_all())
235         {
236                 if ($_POST['filterType'] == '1')
237                 {
238                         $sql .= " AND (trans.type = 10 OR trans.type = 1) ";
239                 }
240                 elseif ($_POST['filterType'] == '2')
241                 {
242                         $sql .= " AND (trans.type = 10) ";
243                 }
244                 elseif ($_POST['filterType'] == '3')
245                 {
246                         $sql .= " AND (trans.type = " . systypes::cust_payment() 
247                                         ." OR trans.type = 2) ";
248                 }
249                 elseif ($_POST['filterType'] == '4')
250                 {
251                         $sql .= " AND trans.type = 11 ";
252                 }
253                 elseif ($_POST['filterType'] == '5')
254                 {
255                         $sql .= " AND trans.type = 13 ";
256                 }
257
258         if ($_POST['filterType'] == '2')
259         {
260                 $today =  date2sql(Today());
261                 $sql .= " AND trans.due_date < '$today'
262                                 AND (trans.ov_amount + trans.ov_gst + trans.ov_freight_tax + 
263                                 trans.ov_freight + trans.ov_discount - trans.alloc > 0) ";
264         }
265         }
266
267 //------------------------------------------------------------------------------------------------
268
269 $cols = array(
270         _("Type") => array('fun'=>'systype_name', 'ord'=>''),
271         _("#") => array('fun'=>'trans_view', 'ord'=>''),
272         _("Order") => array('fun'=>'order_view'), 
273         _("Reference"), 
274         _("Date") => array('name'=>'tran_date', 'type'=>'date', 'ord'=>'desc'),
275         _("Due Date") => array('type'=>'date', 'fun'=>'due_date'),
276         _("Customer") => array('ord'=>''), 
277         _("Branch") => array('ord'=>''), 
278         _("Currency") => array('align'=>'center'),
279         _("Debit") => array('align'=>'right', 'fun'=>'fmt_debit'), 
280         _("Credit") => array('align'=>'right','insert'=>true, 'fun'=>'fmt_credit'), 
281                 array('insert'=>true, 'fun'=>'gl_view'),
282                 array('insert'=>true, 'fun'=>'credit_link'),
283                 array('insert'=>true, 'fun'=>'edit_link'),
284                 array('insert'=>true, 'fun'=>'prt_link')
285         );
286
287 if ($_POST['customer_id'] != reserved_words::get_all()) {
288         $cols[_("Customer")] = 'skip';
289         $cols[_("Currency")] = 'skip';
290 }
291
292
293 $table =& new_db_pager('trans_tbl', $sql, $cols);
294 $table->set_marker('check_overdue', _("Marked items are overdue."));
295
296 if (get_post('RefreshInquiry')) {
297         $table->set_sql($sql);
298         $table->set_columns($cols);
299 }
300 $table->width = "85%";
301
302 start_form();
303 display_db_pager($table);
304
305 end_form();
306 end_page();
307
308 ?>