Update from usntable branch.
[fa-stable.git] / purchasing / inquiry / supplier_allocation_inquiry.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_SUPPLIERALLOC';
13 $path_to_root = "../..";
14 include($path_to_root . "/includes/db_pager.inc");
15 include($path_to_root . "/includes/session.inc");
16
17 include($path_to_root . "/purchasing/includes/purchasing_ui.inc");
18 $js = "";
19 if ($use_popup_windows)
20         $js .= get_js_open_window(900, 500);
21 if ($use_date_picker)
22         $js .= get_js_date_picker();
23 page(_($help_context = "Supplier Allocation Inquiry"), false, false, "", $js);
24
25 if (isset($_GET['supplier_id']))
26 {
27         $_POST['supplier_id'] = $_GET['supplier_id'];
28 }
29 if (isset($_GET['FromDate']))
30 {
31         $_POST['TransAfterDate'] = $_GET['FromDate'];
32 }
33 if (isset($_GET['ToDate']))
34 {
35         $_POST['TransToDate'] = $_GET['ToDate'];
36 }
37
38 //------------------------------------------------------------------------------------------------
39
40 start_form();
41
42 if (!isset($_POST['supplier_id']))
43         $_POST['supplier_id'] = get_global_supplier();
44
45 start_table("class='tablestyle_noborder'");
46 start_row();
47
48 supplier_list_cells(_("Select a supplier: "), 'supplier_id', $_POST['supplier_id'], true);
49
50 date_cells(_("From:"), 'TransAfterDate', '', null, -30);
51 date_cells(_("To:"), 'TransToDate', '', null, 1);
52
53 supp_allocations_list_cell("filterType", null);
54
55 check_cells(_("show settled:"), 'showSettled', null);
56
57 submit_cells('RefreshInquiry', _("Search"),'',_('Refresh Inquiry'), 'default');
58
59 set_global_supplier($_POST['supplier_id']);
60
61 end_row();
62 end_table();
63 //------------------------------------------------------------------------------------------------
64 function check_overdue($row)
65 {
66         return ($row['TotalAmount']>$row['Allocated']) && 
67                 $row['OverDue'] == 1;
68 }
69
70 function systype_name($dummy, $type)
71 {
72         global $systypes_array;
73         
74         return $systypes_array[$type];
75 }
76
77 function view_link($trans)
78 {
79         return get_trans_view_str($trans["type"], $trans["trans_no"]);
80 }
81
82 function due_date($row)
83 {
84         return (($row["type"] == ST_SUPPINVOICE) || ($row["type"]== ST_SUPPCREDIT))
85                 ? $row["due_date"] : "";
86 }
87
88 function fmt_balance($row)
89 {
90         $value = ($row["type"] == ST_BANKPAYMENT || $row["type"] == ST_SUPPCREDIT || $row["type"] == ST_SUPPAYMENT)
91                 ? -$row["TotalAmount"] - $row["Allocated"]
92                 : $row["TotalAmount"] - $row["Allocated"];
93         return $value;
94 }
95
96 function alloc_link($row)
97 {
98         $link = 
99         pager_link(_("Allocations"),
100                 "/purchasing/allocations/supplier_allocate.php?trans_no=" .
101                         $row["trans_no"]. "&trans_type=" . $row["type"], ICON_MONEY );
102
103         return (($row["type"] == ST_BANKPAYMENT || $row["type"] == ST_SUPPCREDIT || $row["type"] == ST_SUPPAYMENT) 
104                 && (-$row["TotalAmount"] - $row["Allocated"]) > 0)
105                 ? $link : '';
106 }
107
108 function fmt_debit($row)
109 {
110         $value = -$row["TotalAmount"];
111         return $value>=0 ? price_format($value) : '';
112
113 }
114
115 function fmt_credit($row)
116 {
117         $value = $row["TotalAmount"];
118         return $value>0 ? price_format($value) : '';
119 }
120 //------------------------------------------------------------------------------------------------
121
122  $date_after = date2sql($_POST['TransAfterDate']);
123  $date_to = date2sql($_POST['TransToDate']);
124
125     // Sherifoz 22.06.03 Also get the description
126     $sql = "SELECT 
127                 trans.type, 
128                 trans.trans_no,
129                 trans.reference, 
130                 supplier.supp_name, 
131                 trans.supp_reference,
132         trans.tran_date, 
133                 trans.due_date,
134                 supplier.curr_code, 
135         (trans.ov_amount + trans.ov_gst  + trans.ov_discount) AS TotalAmount, 
136                 trans.alloc AS Allocated,
137                 ((trans.type = ".ST_SUPPINVOICE." OR trans.type = ".ST_SUPPCREDIT.") AND trans.due_date < '" . date2sql(Today()) . "') AS OverDue
138         FROM "
139                         .TB_PREF."supp_trans as trans, "
140                         .TB_PREF."suppliers as supplier
141         WHERE supplier.supplier_id = trans.supplier_id
142         AND trans.tran_date >= '$date_after'
143         AND trans.tran_date <= '$date_to'";
144
145         if ($_POST['supplier_id'] != ALL_TEXT)
146                 $sql .= " AND trans.supplier_id = ".db_escape($_POST['supplier_id']);
147         if (isset($_POST['filterType']) && $_POST['filterType'] != ALL_TEXT)
148         {
149                 if (($_POST['filterType'] == '1') || ($_POST['filterType'] == '2'))
150                 {
151                         $sql .= " AND trans.type = ".ST_SUPPINVOICE." ";
152                 }
153                 elseif ($_POST['filterType'] == '3')
154                 {
155                         $sql .= " AND trans.type = ".ST_SUPPAYMENT." ";
156                 }
157                 elseif (($_POST['filterType'] == '4') || ($_POST['filterType'] == '5'))
158                 {
159                         $sql .= " AND trans.type = ".ST_SUPPCREDIT." ";
160                 }
161
162                 if (($_POST['filterType'] == '2') || ($_POST['filterType'] == '5'))
163                 {
164                         $today =  date2sql(Today());
165                         $sql .= " AND trans.due_date < '$today' ";
166                 }
167         }
168
169         if (!check_value('showSettled'))
170         {
171                 $sql .= " AND (round(abs(ov_amount + ov_gst + ov_discount) - alloc,6) != 0) ";
172         }
173
174 $cols = array(
175         _("Type") => array('fun'=>'systype_name'),
176         _("#") => array('fun'=>'view_link', 'ord'=>''),
177         _("Reference"), 
178         _("Supplier") => array('ord'=>''), 
179         _("Supp Reference"),
180         _("Date") => array('name'=>'tran_date', 'type'=>'date', 'ord'=>'asc'),
181         _("Due Date") => array('fun'=>'due_date'),
182         _("Currency") => array('align'=>'center'),
183         _("Debit") => array('align'=>'right', 'fun'=>'fmt_debit'), 
184         _("Credit") => array('align'=>'right', 'insert'=>true, 'fun'=>'fmt_credit'), 
185         _("Allocated") => 'amount', 
186         _("Balance") => array('type'=>'amount', 'insert'=>true, 'fun'=>'fmt_balance'),
187         array('insert'=>true, 'fun'=>'alloc_link')
188         );
189
190 if ($_POST['supplier_id'] != ALL_TEXT) {
191         $cols[_("Supplier")] = 'skip';
192         $cols[_("Currency")] = 'skip';
193 }
194 //------------------------------------------------------------------------------------------------
195
196 $table =& new_db_pager('doc_tbl', $sql, $cols);
197 $table->set_marker('check_overdue', _("Marked items are overdue."));
198
199 $table->width = "90%";
200
201 display_db_pager($table);
202
203 end_form();
204 end_page();
205 ?>