. ***********************************************************************/ $page_security = 'SA_VIEWPRINTTRANSACTION'; $path_to_root = ".."; include($path_to_root . "/includes/db_pager.inc"); include_once($path_to_root . "/includes/session.inc"); include_once($path_to_root . "/includes/date_functions.inc"); include_once($path_to_root . "/includes/ui.inc"); include_once($path_to_root . "/includes/data_checks.inc"); include_once($path_to_root . "/reporting/includes/reporting.inc"); $js = ""; if ($use_popup_windows) $js .= get_js_open_window(800, 500); page(_($help_context = "View or Print Transactions"), false, false, "", $js); //---------------------------------------------------------------------------------------- function view_link($trans) { return get_trans_view_str($trans["type"], $trans["trans_no"]); } function prt_link($row) { if ($row['type'] != ST_CUSTPAYMENT && $row['type'] != ST_BANKDEPOSIT) // customer payment or bank deposit printout not defined yet. return print_document_link($row['trans_no'], _("Print"), true, $row['type'], ICON_PRINT); } function gl_view($row) { return get_gl_view_str($row["type"], $row["trans_no"]); } function viewing_controls() { display_note(_("Only documents can be printed.")); start_table("class='tablestyle_noborder'"); start_row(); systypes_list_cells(_("Type:"), 'filterType', null, true); if (!isset($_POST['FromTransNo'])) $_POST['FromTransNo'] = "1"; if (!isset($_POST['ToTransNo'])) $_POST['ToTransNo'] = "999999"; ref_cells(_("from #:"), 'FromTransNo'); ref_cells(_("to #:"), 'ToTransNo'); submit_cells('ProcessSearch', _("Search"), '', '', 'default'); end_row(); end_table(1); } //---------------------------------------------------------------------------------------- function check_valid_entries() { if (!is_numeric($_POST['FromTransNo']) OR $_POST['FromTransNo'] <= 0) { display_error(_("The starting transaction number is expected to be numeric and greater than zero.")); return false; } if (!is_numeric($_POST['ToTransNo']) OR $_POST['ToTransNo'] <= 0) { display_error(_("The ending transaction number is expected to be numeric and greater than zero.")); return false; } return true; } //---------------------------------------------------------------------------------------- function handle_search() { global $table_style; if (check_valid_entries()==true) { $db_info = get_systype_db_info($_POST['filterType']); if ($db_info == null) return; $table_name = $db_info[0]; $type_name = $db_info[1]; $trans_no_name = $db_info[2]; $trans_ref = $db_info[3]; $sql = "SELECT DISTINCT $trans_no_name as trans_no"; if ($trans_ref) $sql .= " ,$trans_ref "; $sql .= ", ".$_POST['filterType']." as type FROM $table_name WHERE $trans_no_name >= ".db_escape($_POST['FromTransNo']). " AND $trans_no_name <= ".db_escape($_POST['ToTransNo']); if ($type_name != null) $sql .= " AND `$type_name` = ".db_escape($_POST['filterType']); $sql .= " ORDER BY $trans_no_name"; $print_type = $_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); $cols = array( _("#"), _("Reference"), _("View") => array('insert'=>true, 'fun'=>'view_link'), _("Print") => array('insert'=>true, 'fun'=>'prt_link'), _("GL") => array('insert'=>true, 'fun'=>'gl_view') ); if(!$print_out) { array_remove($cols, 3); } if(!$trans_ref) { array_remove($cols, 1); } $table =& new_db_pager('transactions', $sql, $cols); $table->width = "40%"; display_db_pager($table); } } //---------------------------------------------------------------------------------------- if (isset($_POST['ProcessSearch'])) { if (!check_valid_entries()) unset($_POST['ProcessSearch']); $Ajax->activate('transactions'); } //---------------------------------------------------------------------------------------- start_form(false); viewing_controls(); handle_search(); end_form(2); end_page(); ?>