X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Finquiry%2Fsales_deliveries_view.php;h=9e4a03a66efaf4aa811d9a326087d4d761029a1a;hb=f48dce88b74eb81e3398d9f36eee19394c4f023c;hp=4ea1a8241aa8d770f7ef9e9d3a8b8aa123399da2;hpb=a5242af68e65661edb7175412444dce536a7f311;p=fa-stable.git diff --git a/sales/inquiry/sales_deliveries_view.php b/sales/inquiry/sales_deliveries_view.php index 4ea1a824..9e4a03a6 100644 --- a/sales/inquiry/sales_deliveries_view.php +++ b/sales/inquiry/sales_deliveries_view.php @@ -9,8 +9,8 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License here . ***********************************************************************/ -$page_security = 2; -$path_to_root="../.."; +$page_security = 'SA_SALESINVOICE'; +$path_to_root = "../.."; include($path_to_root . "/includes/db_pager.inc"); include($path_to_root . "/includes/session.inc"); @@ -96,7 +96,7 @@ if (get_post('_DeliveryNumber_changed')) //----------------------------------------------------------------------------------- -start_form(false, false, $_SERVER['PHP_SELF'] ."?OutstandingOnly=" . $_POST['OutstandingOnly'] .SID); +start_form(false, false, $_SERVER['PHP_SELF'] ."?OutstandingOnly=".$_POST['OutstandingOnly']); start_table("class='tablestyle_noborder'"); start_row(); @@ -108,7 +108,7 @@ locations_list_cells(_("Location:"), 'StockLocation', null, true); stock_items_list_cells(_("Item:"), 'SelectStockFromList', null, true); -submit_cells('SearchOrders', _("Search"),'',_('Select documents'), true); +submit_cells('SearchOrders', _("Search"),'',_('Select documents'), 'default'); hidden('OutstandingOnly', $_POST['OutstandingOnly']); @@ -119,7 +119,7 @@ end_form(); //--------------------------------------------------------------------------------------------- if (isset($_POST['SelectStockFromList']) && ($_POST['SelectStockFromList'] != "") && - ($_POST['SelectStockFromList'] != reserved_words::get_all())) + ($_POST['SelectStockFromList'] != ALL_TEXT)) { $selected_stock_item = $_POST['SelectStockFromList']; } @@ -131,7 +131,7 @@ else //--------------------------------------------------------------------------------------------- function trans_view($trans, $trans_no) { - return get_customer_trans_view_str(13, $trans['trans_no']); + return get_customer_trans_view_str(ST_CUSTDELIVERY, $trans['trans_no']); } function batch_checkbox($row) @@ -153,7 +153,7 @@ function edit_link($row) function prt_link($row) { - return print_document_link($row['trans_no'], _("Print"), true, 13, ICON_PRINT); + return print_document_link($row['trans_no'], _("Print"), true, ST_CUSTDELIVERY, ICON_PRINT); } function invoice_link($row) @@ -191,7 +191,7 @@ $sql = "SELECT trans.trans_no, WHERE sorder.order_no = trans.order_ AND trans.debtor_no = debtor.debtor_no - AND trans.type = 13 + AND trans.type = ".ST_CUSTDELIVERY." AND line.debtor_trans_no = trans.trans_no AND line.debtor_trans_type = trans.type AND trans.branch_code = branch.branch_code @@ -218,7 +218,7 @@ else if (isset($selected_stock_item)) $sql .= " AND line.stock_id='". $selected_stock_item ."' "; - if (isset($_POST['StockLocation']) && $_POST['StockLocation'] != reserved_words::get_all()) + if (isset($_POST['StockLocation']) && $_POST['StockLocation'] != ALL_TEXT) $sql .= " AND sorder.from_stk_loc = '". $_POST['StockLocation'] . "' "; $sql .= " GROUP BY trans.trans_no "; @@ -255,10 +255,6 @@ if (isset($_SESSION['Batch'])) $table =& new_db_pager('deliveries_tbl', $sql, $cols); $table->set_marker('check_overdue', _("Marked items are overdue.")); -if (get_post('SearchOrders')) { - $table->set_sql($sql); - $table->set_columns($cols); -} //$table->width = "92%"; start_form();