Call hooks on split.
[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 include_once("includes/splitter.inc");
21
22 $page_security = 'SA_ORDERLINEX_EDIT';
23 add_access_extensions();
24
25 $_SESSION['page_title'] = _($help_context = "Edit lines extra parameters");
26
27 // Process POST
28 update_extra_order_details();
29 split_order_details();
30
31
32 $js = "";
33 if ($use_popup_windows)
34         $js .= get_js_open_window(900, 600);
35 if ($use_date_picker)
36         $js .= get_js_date_picker();
37 page($_SESSION['page_title'], false, false, "", $js);
38
39 //---------------------------------------------------------------------------------------------
40
41 start_form();
42
43 start_table(TABLESTYLE_NOBORDER);
44 start_row();
45
46
47 if(!isset($_POST['customer_id'])) {
48         if(isset($_GET['customer_id'])) {
49                 $customer_id = $_GET['customer_id'];
50                 $_POST['customer_id'] = $customer_id;
51         }
52 else $customer_id = null;
53
54 }
55 else {
56         $customer_id = $_POST['customer_id'];
57 }
58 customer_list_cells(_("Select a customer: "), 'customer_id', $customer_id, true, true);
59
60
61
62
63
64 //submit_cells('SearchOrders', _("Search"),'',_('Select documents'), 'default');
65
66 end_row();
67
68 end_table(1);
69
70 //---------------------------------------------------------------------------------------------
71 //      Orders inquiry table
72 //
73 if($customer_id) {
74         $sql = get_order_details_extra($customer_id, 'DEF');
75         $cols = array(
76                 'detail_id' => 'skip'
77                 ,       _("Order #") => array('fun'=>'view_link', 'ord' => '')
78                 ,_("Item Code") => array('ord' => '', 'fun' => 'item_link')
79                 ,_("Quantity") => array('type' => 'qty', 'dec' => 0)
80                 ,_("Available") => array('fun' => 'available_quantity', 'dec' => 0, 'ord' => '')
81                 ,_("Before") => 'skip'
82                 ,_("Priority") => array('fun' => 'input_priority_date_details', 'ord' => '')
83                 ,_("Hold Until") => array('fun' => 'input_hold_until_date_details', 'ord' => '')
84                 ,_("Require By") => array('fun' => 'input_required_date_details', 'ord' => '')
85                 ,_("Expiry Date") => array('fun' => 'input_expiry_date_details', 'ord' => '')
86         ,_("Comment") => array('fun' => 'input_comment_details', 'ord' => '')
87         );
88 }
89 else {
90         $sql = get_order_summary('DEF');
91         $cols = array(
92         'customer id' => 'skip',
93 _("Customer") => array('ord' => '', 'fun' => 'customer_link'),
94 _("Branch") => array('ord' => ''),
95 _("Delivery Date") => array('ord' => '', 'type' => 'date'),
96 _("Quantity") => array('ord' => '', 'type' => 'qty', 'dec' => 0),
97 _("Amount") => array('ord' => '', 'type' => 'amount'),
98 _("Avail. Q") => array('ord' => '', 'type' => 'qty', 'dec' => 0),
99 _("Avail. A") => array('ord' => '', 'type' => 'amount', 'dec' => 0),
100 _("required date") => array('ord' => '', 'type' => 'date'),
101 _("Comments") => array('ord' => '', 'fun' => 'aggregate_comment'),
102 _("comment 2 ") =>  'skip'
103         );
104 }
105
106
107 $table =& new_db_pager('orders_tbl', $sql, $cols);
108
109 $table->width = "80%";
110
111 display_db_pager($table);
112
113 function display_split_area() {
114 start_table(TABLESTYLE_NOBORDER);
115 date_cells('Start', 'start_date');
116 date_cells('End', 'end_date');
117 qty_cells('Max', 'max_quantity', 6);
118 submit_cells('Split', 'Split');
119 end_table();
120
121 }
122 display_split_area();
123
124
125 br(1);
126 submit_center_first('Update', _("Update"), '', 'default', false);
127 submit_center_last('Cancel', _("Cancel"), '', 'cancel', false);
128
129         end_form();
130         end_page();
131 ?>
132 <style>
133 span.tooltip{ display:none;}
134 span.tooltip {
135       position: absolute;
136                         right: -0px;
137                         top: 20px;
138       width: 200px;
139       color: rgb(113, 157, 171);
140       background: rgb(255, 255, 255);
141       border: 1px solid rgb(113, 157, 171);
142 }
143
144 :hover > span.tooltip, span.tooltip:hover {
145         display: inline;
146 }
147 span.before-tooltip {
148         color: #800;
149         font-style: italic;
150         position: relative;
151 }
152
153 </style>