Asynchronous customer/supplier/item selection now use popup window.
[fa-stable.git] / purchasing / allocations / supplier_allocation_main.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 $path_to_root="../..";
13 $page_security = 3;
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 . "/includes/date_functions.inc");
18
19 include_once($path_to_root . "/includes/ui.inc");
20 include_once($path_to_root . "/includes/banking.inc");
21
22 include_once($path_to_root . "/sales/includes/sales_db.inc");
23 $js = "";
24 if ($use_popup_windows)
25         $js .= get_js_open_window(900, 500);
26 page(_("Supplier Allocations"), false, false, "", $js);
27
28 //--------------------------------------------------------------------------------
29 set_editor('supplier', 'supplier_id' , 'ShowSettled');
30
31 start_form();
32
33         /* show all outstanding receipts and credits to be allocated */
34         /*Clear any previous allocation records */
35         if (isset($_SESSION['alloc']))
36         {
37                 unset($_SESSION['alloc']->allocs);
38                 unset($_SESSION['alloc']);
39         }
40     if (!isset($_POST['supplier_id']))
41         $_POST['supplier_id'] = get_global_supplier();
42
43     echo "<center>" . _("Select a Supplier: ") . "&nbsp;&nbsp;";
44         supplier_list('supplier_id', $_POST['supplier_id'], true, true);
45     echo "<br>";
46     check(_("Show Settled Items:"), 'ShowSettled', null, true);
47         echo "</center><br><br>";
48         end_form();
49         set_global_supplier($_POST['supplier_id']);
50
51         if (isset($_POST['supplier_id']) && ($_POST['supplier_id'] == reserved_words::get_all())) 
52         {
53                 unset($_POST['supplier_id']);
54         }
55
56         $settled = false;
57         if (check_value('ShowSettled'))
58                 $settled = true;
59         $supplier_id = null;
60         if (isset($_POST['supplier_id']))
61                 $supplier_id = $_POST['supplier_id'];
62
63 //--------------------------------------------------------------------------------
64 function systype_name($dummy, $type)
65 {
66         return systypes::name($type);
67 }
68
69 function trans_view($trans)
70 {
71         return get_trans_view_str($trans["type"], $trans["trans_no"]);
72 }
73
74 function alloc_link($row)
75 {
76         return pager_link(_("Allocate"),
77                 "/purchasing/allocations/supplier_allocate.php?trans_no="
78                         .$row["trans_no"] . "&trans_type=" . $row["type"], ICON_MONEY );
79 }
80
81 function amount_left($row)
82 {
83         return price_format(-$row["Total"]-$row["alloc"]);
84 }
85
86 function amount_total($row)
87 {
88         return price_format(-$row["Total"]);
89 }
90
91 function check_settled($row)
92 {
93         return $row['settled'] == 1;
94 }
95
96
97 $sql = get_allocatable_from_supp_sql($supplier_id, $settled);
98
99 $cols = array(
100         _("Transaction Type") => array('fun'=>'systype_name'),
101         _("#") => array('fun'=>'trans_view'),
102         _("Reference"), 
103         _("Date") => array('name'=>'tran_date', 'type'=>'date', 'ord'=>'asc'),
104         _("Supplier") => array('ord'=>''),
105         _("Currency") => array('align'=>'center'),
106         _("Total") => array('align'=>'right', 'fun'=>'amount_total'), 
107         _("Left to Allocate") => array('align'=>'right','insert'=>true, 'fun'=>'amount_left'), 
108         array('insert'=>true, 'fun'=>'alloc_link')
109         );
110
111 if (isset($_POST['customer_id'])) {
112         $cols[_("Supplier")] = 'skip';
113         $cols[_("Currency")] = 'skip';
114 }
115
116 $table =& new_db_pager('alloc_tbl', $sql, $cols);
117 $table->set_marker('check_settled', _("Marked items are settled."), 'settledbg', 'settledfg');
118
119 if (get_post('_ShowSettled_update') || get_post('_supplier_id_update') ) {
120         $table->set_sql($sql);
121         $table->set_columns($cols);
122 }
123 $table->width = "80%";
124 start_form();
125
126 display_db_pager($table);
127
128 end_form();
129 end_page();
130 ?>