X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=purchasing%2Finquiry%2Fpo_search_completed.php;h=c612639f86ad7830f4025bd625891ff8b16582a5;hb=9502b1b3fc30a8b12c647f7e024e8b8da6a50af6;hp=7e2f7f61a652086816a4448665881540b1789f96;hpb=de320b43ef41373a90d9061483b6e8970947fdfa;p=fa-stable.git diff --git a/purchasing/inquiry/po_search_completed.php b/purchasing/inquiry/po_search_completed.php index 7e2f7f61..c612639f 100644 --- a/purchasing/inquiry/po_search_completed.php +++ b/purchasing/inquiry/po_search_completed.php @@ -1,7 +1,17 @@ . +***********************************************************************/ +$page_security = 'SA_SUPPTRANSVIEW'; $path_to_root="../.."; +include($path_to_root . "/includes/db_pager.inc"); include($path_to_root . "/includes/session.inc"); include($path_to_root . "/purchasing/includes/purchasing_ui.inc"); @@ -11,7 +21,7 @@ if ($use_popup_windows) $js .= get_js_open_window(900, 500); if ($use_date_picker) $js .= get_js_date_picker(); -page(_("Search Purchase Orders"), false, false, "", $js); +page(_($help_context = "Search Purchase Orders"), false, false, "", $js); if (isset($_GET['order_number'])) { @@ -43,9 +53,9 @@ if (get_post('SearchOrders')) } //--------------------------------------------------------------------------------------------- -start_form(false, true); +start_form(); -start_table("class='tablestyle_noborder'"); +start_table(TABLESTYLE_NOBORDER); start_row(); ref_cells(_("#:"), 'order_number', '',null, '', true); @@ -56,21 +66,17 @@ locations_list_cells(_("into location:"), 'StockLocation', null, true); stock_items_list_cells(_("for item:"), 'SelectStockFromList', null, true); -submit_cells('SearchOrders', _("Search"),'',_('Select documents'), true); +submit_cells('SearchOrders', _("Search"),'',_('Select documents'), 'default'); end_row(); end_table(); - -end_form(); - //--------------------------------------------------------------------------------------------- - if (isset($_POST['order_number'])) { $order_number = $_POST['order_number']; } if (isset($_POST['SelectStockFromList']) && ($_POST['SelectStockFromList'] != "") && - ($_POST['SelectStockFromList'] != reserved_words::get_all())) + ($_POST['SelectStockFromList'] != ALL_TEXT)) { $selected_stock_item = $_POST['SelectStockFromList']; } @@ -80,90 +86,51 @@ else } //--------------------------------------------------------------------------------------------- - -//figure out the sql required from the inputs available -$sql = "SELECT ".TB_PREF."purch_orders.order_no, ".TB_PREF."suppliers.supp_name, ".TB_PREF."purch_orders.ord_date, ".TB_PREF."purch_orders.into_stock_location, - ".TB_PREF."purch_orders.requisition_no, ".TB_PREF."purch_orders.reference, ".TB_PREF."locations.location_name, - ".TB_PREF."suppliers.curr_code, Sum(".TB_PREF."purch_order_details.unit_price*".TB_PREF."purch_order_details.quantity_ordered) AS OrderValue - FROM ".TB_PREF."purch_orders, ".TB_PREF."purch_order_details, ".TB_PREF."suppliers, ".TB_PREF."locations - WHERE ".TB_PREF."purch_orders.order_no = ".TB_PREF."purch_order_details.order_no - AND ".TB_PREF."purch_orders.supplier_id = ".TB_PREF."suppliers.supplier_id - AND ".TB_PREF."locations.loc_code = ".TB_PREF."purch_orders.into_stock_location "; - -if (isset($order_number) && $order_number != "") +function trans_view($trans) { - $sql .= "AND ".TB_PREF."purch_orders.reference LIKE '%". $order_number . "%'"; + return get_trans_view_str(ST_PURCHORDER, $trans["order_no"]); } -else -{ - - $data_after = date2sql($_POST['OrdersAfterDate']); - $date_before = date2sql($_POST['OrdersToDate']); - - $sql .= " AND ".TB_PREF."purch_orders.ord_date >= '$data_after'"; - $sql .= " AND ".TB_PREF."purch_orders.ord_date <= '$date_before'"; - - if (isset($_POST['StockLocation']) && $_POST['StockLocation'] != reserved_words::get_all()) - { - $sql .= " AND ".TB_PREF."purch_orders.into_stock_location = '". $_POST['StockLocation'] . "' "; - } - if (isset($selected_stock_item)) - { - $sql .= " AND ".TB_PREF."purch_order_details.item_code='". $selected_stock_item ."' "; - } - -} //end not order number selected - -$sql .= " GROUP BY ".TB_PREF."purch_orders.order_no"; -$result = db_query($sql,"No orders were returned"); - -print_hidden_script(18); +function edit_link($row) +{ + return pager_link( _("Edit"), + "/purchasing/po_entry_items.php?" . SID + . "ModifyOrderNumber=" . $row["order_no"], ICON_EDIT); +} -div_start('orders_tbl'); -start_table("$table_style colspan=7 width=80%"); +function prt_link($row) +{ + return print_document_link($row['order_no'], _("Print"), true, 18, ICON_PRINT); +} -if (isset($_POST['StockLocation']) && $_POST['StockLocation'] == reserved_words::get_all()) - $th = array(_("#"), _("Reference"), _("Supplier"), _("Location"), - _("Supplier's Reference"), _("Order Date"), _("Currency"), _("Order Total"),""); -else - $th = array(_("#"), _("Reference"), _("Supplier"), - _("Supplier's Reference"), _("Order Date"), _("Currency"), _("Order Total"),""); +//--------------------------------------------------------------------------------------------- -table_header($th); +$sql = get_sql_for_po_search_completed(); + +$cols = array( + _("#") => array('fun'=>'trans_view', 'ord'=>''), + _("Reference"), + _("Supplier") => array('ord'=>''), + _("Location"), + _("Supplier's Reference"), + _("Order Date") => array('name'=>'ord_date', 'type'=>'date', 'ord'=>'desc'), + _("Currency") => array('align'=>'center'), + _("Order Total") => 'amount', + array('insert'=>true, 'fun'=>'edit_link'), + array('insert'=>true, 'fun'=>'prt_link'), +); + +if (get_post('StockLocation') != $all_items) { + $cols[_("Location")] = 'skip'; +} +//--------------------------------------------------------------------------------------------------- -$j = 1; -$k = 0; //row colour counter -while ($myrow = db_fetch($result)) -{ +$table =& new_db_pager('orders_tbl', $sql, $cols); - alt_table_row_color($k); - - $date = sql2date($myrow["ord_date"]); - - label_cell(get_trans_view_str(systypes::po(), $myrow["order_no"])); - label_cell($myrow["reference"]); - label_cell($myrow["supp_name"]); - if (isset($_POST['StockLocation']) && $_POST['StockLocation'] == reserved_words::get_all()) - label_cell($myrow["location_name"]); - label_cell($myrow["requisition_no"]); - label_cell($date); - label_cell($myrow["curr_code"]); - amount_cell($myrow["OrderValue"]); - label_cell(print_document_link($myrow['order_no'], _("Print"))); - end_row(); - - $j++; - if ($j == 12) - { - $j = 1; - table_header($th); - } -} +$table->width = "80%"; -end_table(2); -div_end(); -//--------------------------------------------------------------------------------------------------- +display_db_pager($table); +end_form(); end_page(); ?>