X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Finquiry%2Fsales_orders_view.php;h=f59be9c028bb5de375939bc49421bd8c3b1dbdb1;hb=733eb13076420ced9417f53d4180c87e8a8effd8;hp=5f23e891a989b0aa497b711da1e71c645e7e9f12;hpb=b3b458b39c2b24680c486e80d52a4880c011dce6;p=fa-stable.git diff --git a/sales/inquiry/sales_orders_view.php b/sales/inquiry/sales_orders_view.php index 5f23e891..f59be9c0 100644 --- a/sales/inquiry/sales_orders_view.php +++ b/sales/inquiry/sales_orders_view.php @@ -11,9 +11,9 @@ ***********************************************************************/ $path_to_root = "../.."; -include($path_to_root . "/includes/db_pager.inc"); -include($path_to_root . "/includes/session.inc"); -include($path_to_root . "/sales/includes/sales_ui.inc"); +include_once($path_to_root . "/includes/db_pager.inc"); +include_once($path_to_root . "/includes/session.inc"); +include_once($path_to_root . "/sales/includes/sales_ui.inc"); include_once($path_to_root . "/reporting/includes/reporting.inc"); $page_security = 'SA_SALESTRANSVIEW'; @@ -25,12 +25,6 @@ set_page_security( @$_POST['order_view_mode'], 'InvoiceTemplates' => 'SA_SALESINVOICE') ); -$js = ""; -if ($use_popup_windows) - $js .= get_js_open_window(900, 600); -if ($use_date_picker) - $js .= get_js_date_picker(); - if (get_post('type')) $trans_type = $_POST['type']; elseif (isset($_GET['type']) && $_GET['type'] == ST_SALESQUOTE) @@ -66,7 +60,16 @@ else $_POST['order_view_mode'] = "Quotations"; $_SESSION['page_title'] = _($help_context = "Search All Sales Quotations"); } -page($_SESSION['page_title'], false, false, "", $js); + +if (!@$_GET['popup']) +{ + $js = ""; + if ($use_popup_windows) + $js .= get_js_open_window(900, 600); + if ($use_date_picker) + $js .= get_js_date_picker(); + page($_SESSION['page_title'], false, false, "", $js); +} if (isset($_GET['selected_customer'])) { @@ -118,6 +121,8 @@ function prt_link($row) function edit_link($row) { + if (@$_GET['popup']) + return ''; global $trans_type; $modify = ($trans_type == ST_SALESORDER ? "ModifyOrderNumber" : "ModifyQuotationNumber"); return pager_link( _("Edit"), @@ -162,6 +167,8 @@ function tmpl_checkbox($row) global $trans_type; if ($trans_type == ST_SALESQUOTE) return ''; + if (@$_GET['popup']) + return ''; $name = "chgtpl" .$row['order_no']; $value = $row['type'] ? 1:0; @@ -210,7 +217,8 @@ if (get_post('_OrderNumber_changed') || get_post('_OrderReference_changed')) // $Ajax->activate('orders_tbl'); } -start_form(); +if (!@$_GET['popup']) + start_form(); start_table(TABLESTYLE_NOBORDER); start_row(); @@ -231,7 +239,8 @@ if($show_dates) { start_row(); } stock_items_list_cells(_("Item:"), 'SelectStockFromList', null, true); - +if (!@$_GET['popup']) + customer_list_cells(_("Select a customer: "), 'customer_id', null, true); if ($trans_type == ST_SALESQUOTE) check_cells(_("Show All:"), 'show_all'); @@ -246,7 +255,7 @@ end_table(1); // Orders inquiry table // $sql = get_sql_for_sales_orders_view($selected_customer, $trans_type, $_POST['OrderNumber'], $_POST['order_view_mode'], - @$selected_stock_item, @$_POST['OrdersAfterDate'], @$_POST['OrdersToDate'], @$_POST['OrderReference'], $_POST['StockLocation']); + @$selected_stock_item, @$_POST['OrdersAfterDate'], @$_POST['OrdersToDate'], @$_POST['OrderReference'], $_POST['StockLocation'], $_POST['customer_id']); if ($trans_type == ST_SALESORDER) $cols = array( @@ -276,9 +285,11 @@ else 'Type' => 'skip', _("Currency") => array('align'=>'center') ); -if ($_POST['order_view_mode'] == 'OutstandingOnly') { - //array_substitute($cols, 3, 1, _("Cust Order Ref")); - array_append($cols, array(array('insert'=>true, 'fun'=>'dispatch_link'))); +if ($_POST['order_view_mode'] == 'OutstandingOnly') { + //array_substitute($cols, 3, 1, _("Cust Order Ref")); + array_append($cols, array( + array('insert'=>true, 'fun'=>'dispatch_link'), + array('insert'=>true, 'fun'=>'edit_link'))); } elseif ($_POST['order_view_mode'] == 'InvoiceTemplates') { array_substitute($cols, 3, 1, _("Description")); @@ -311,6 +322,9 @@ $table->width = "80%"; display_db_pager($table); submit_center('Update', _("Update"), true, '', null); -end_form(); -end_page(); +if (!@$_GET['popup']) +{ + end_form(); + end_page(); +} ?> \ No newline at end of file