Add Update and Cancel button.
[order_line_extra.git] / order_lines_view.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
14 include_once($path_to_root . "/includes/db_pager.inc");
15 include_once($path_to_root . "/includes/session.inc");
16 include_once($path_to_root . "/sales/includes/sales_ui.inc");
17 include_once($path_to_root . "/reporting/includes/reporting.inc");
18
19 include_once("includes/order_lines.inc");
20
21 $page_security = 'SA_ORDERLINEX_EDIT';
22 add_access_extensions();
23
24 $_SESSION['page_title'] = _($help_context = "Edit lines extra parameters");
25
26 $js = "";
27 if ($use_popup_windows)
28         $js .= get_js_open_window(900, 600);
29 if ($use_date_picker)
30         $js .= get_js_date_picker();
31 page($_SESSION['page_title'], false, false, "", $js);
32
33 //---------------------------------------------------------------------------------------------
34
35 start_form();
36
37 start_table(TABLESTYLE_NOBORDER);
38 start_row();
39
40 customer_list_cells(_("Select a customer: "), 'customer_id', false, false, true);
41
42
43
44
45
46 //submit_cells('SearchOrders', _("Search"),'',_('Select documents'), 'default');
47
48 end_row();
49
50 end_table(1);
51
52 //---------------------------------------------------------------------------------------------
53 //      Orders inquiry table
54 //
55 $customer_id = $_POST['customer_id'];
56 if(isset($customer_id)) {
57         $sql = get_order_details_extra($customer_id);
58
59
60         $cols = array(
61                 'detail_id' => 'skip'
62         ,       _("Order #") => array('fun'=>'view_link', 'ord' => '')
63         ,_("Item Code") => array('ord' => '')
64                 ,_("Quantity") => array('type' => 'qty')
65 ,_("Required Date") => array('fun' => 'input_date_details')
66 ,_("Comment") => array('fun' => 'input_comment_details')
67         );
68 }
69 else {
70 }
71
72
73 $table =& new_db_pager('orders_tbl', $sql, $cols);
74
75 $table->width = "80%";
76
77 display_db_pager($table);
78
79 br(1);
80 submit_center_first('Update', _("Update"), true, '', 'default', true);
81 submit_center_last('Cancel', _("Cancel"), true, '', 'cancel', true);
82
83         end_form();
84         end_page();
85 ?>