X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fview_print_transaction.php;h=856fe05c9d81b4aa0abe2a88b9a87f176f4352a4;hb=f99d4e3d028d6dc1e43716dad6188090a5f34a25;hp=5b283b4159d485458c3893c99a91484033ff515b;hpb=5b8f4c4b4aa8cf996bc071f116bfce1273200fa2;p=fa-stable.git diff --git a/admin/view_print_transaction.php b/admin/view_print_transaction.php index 5b283b41..856fe05c 100644 --- a/admin/view_print_transaction.php +++ b/admin/view_print_transaction.php @@ -22,7 +22,7 @@ include_once($path_to_root . "/admin/db/transactions_db.inc"); include_once($path_to_root . "/reporting/includes/reporting.inc"); $js = ""; -if ($use_popup_windows) +if ($SysPrefs->use_popup_windows) $js .= get_js_open_window(800, 500); page(_($help_context = "View or Print Transactions"), false, false, "", $js); @@ -69,7 +69,7 @@ function viewing_controls() start_table(TABLESTYLE_NOBORDER); start_row(); - systypes_list_cells(_("Type:"), 'filterType', null, true); + systypes_list_cells(_("Type:"), 'filterType', null, true, array(ST_CUSTOMER, ST_SUPPLIER)); if (!isset($_POST['FromTransNo'])) $_POST['FromTransNo'] = "1"; @@ -113,11 +113,11 @@ function handle_search() if (check_valid_entries()==true) { $trans_ref = false; - $sql = get_sql_for_view_transactions($_POST['filterType'], $_POST['FromTransNo'], $_POST['ToTransNo'], $trans_ref); + $sql = get_sql_for_view_transactions(get_post('filterType'), get_post('FromTransNo'), get_post('ToTransNo'), $trans_ref); if ($sql == "") return; - $print_type = $_POST['filterType']; + $print_type = get_post('filterType'); $print_out = ($print_type == ST_SALESINVOICE || $print_type == ST_CUSTCREDIT || $print_type == ST_CUSTDELIVERY || $print_type == ST_PURCHORDER || $print_type == ST_SALESORDER || $print_type == ST_SALESQUOTE || $print_type == ST_CUSTPAYMENT || $print_type == ST_SUPPAYMENT || $print_type == ST_WORKORDER);