X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fview_print_transaction.php;h=90943fe75bb00647eba2504920cf33afe8ebfaab;hb=179e8cf33e77512ca94cf8389ea36a253feebba7;hp=106d161a98eef6cf0a95be437f18c46d693b0828;hpb=cc90670896e909bb5670ca4c823aeb55fe7518df;p=fa-stable.git diff --git a/admin/view_print_transaction.php b/admin/view_print_transaction.php index 106d161a..90943fe7 100644 --- a/admin/view_print_transaction.php +++ b/admin/view_print_transaction.php @@ -1,8 +1,18 @@ . +***********************************************************************/ +$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"); @@ -16,11 +26,25 @@ if ($use_popup_windows) page(_("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_form(false, true); start_table("class='tablestyle_noborder'"); start_row(); @@ -36,12 +60,11 @@ function viewing_controls() ref_cells(_("to #:"), 'ToTransNo'); - submit_cells('ProcessSearch', _("Search")); + submit_cells('ProcessSearch', _("Search"), '', '', 'default'); end_row(); end_table(1); - end_form(); } //---------------------------------------------------------------------------------------- @@ -50,17 +73,15 @@ function check_valid_entries() { if (!is_numeric($_POST['FromTransNo']) OR $_POST['FromTransNo'] <= 0) { - display_note(_("The starting transaction number is expected to be numeric and greater than zero.")); + 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) { - echo _("The ending transaction number is expected to be numeric and greater than zero."); + display_error(_("The ending transaction number is expected to be numeric and greater than zero.")); return false; } - if (!isset($_POST['filterType']) || $_POST['filterType'] == "") - return false; return true; } @@ -82,67 +103,44 @@ function handle_search() $trans_no_name = $db_info[2]; $trans_ref = $db_info[3]; - $sql = "SELECT DISTINCT $trans_no_name "; + $sql = "SELECT DISTINCT $trans_no_name as trans_no"; if ($trans_ref) $sql .= " ,$trans_ref "; - $sql .= " FROM $table_name + $sql .= ", ".$_POST['filterType']." as type FROM $table_name WHERE $trans_no_name >= " . $_POST['FromTransNo']. " AND $trans_no_name <= " . $_POST['ToTransNo']; if ($type_name != null) - $sql .= " AND $type_name = " . $_POST['filterType']; + $sql .= " AND `$type_name` = " . $_POST['filterType']; $sql .= " ORDER BY $trans_no_name"; - $result = db_query($sql, "could not query transactions on $table_name"); - if (db_num_rows($result) == 0) - { - echo _("There are no transactions for the given parameters."); - return; - } $print_type = $_POST['filterType']; - $print_out = ($print_type == 10 || $print_type == 11 || $print_type == systypes::cust_dispatch() || - $print_type == systypes::po() || $print_type == systypes::sales_order()); - if ($print_out) - { - print_hidden_script($print_type); - if ($trans_ref) - $th = array(_("#"), _("Reference"), _("View"), _("Print"), _("GL")); - else - $th = array(_("#"), _("View"), _("Print"), _("GL")); - } - else - { - if ($trans_ref) - $th = array(_("#"), _("Reference"), _("View"), _("GL")); - else - $th = array(_("#"), _("View"), _("GL")); + $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); } - start_table($table_style); - table_header($th); - $k = 0; - while ($line = db_fetch($result)) - { - - alt_table_row_color($k); - - label_cell($line[$trans_no_name]); - if ($trans_ref) - label_cell($line[$trans_ref]); - label_cell(get_trans_view_str($_POST['filterType'],$line[$trans_no_name], _("View"))); - if ($print_out) - label_cell(print_document_link($line[$trans_no_name], _("Print"), true, $print_type)); - label_cell(get_gl_view_str($_POST['filterType'], $line[$trans_no_name], _("View GL"))); - - end_row(); - + if(!$trans_ref) { + array_remove($cols, 1); } - end_table(); + $table =& new_db_pager('transactions', $sql, $cols); + $table->width = "40%"; + display_db_pager($table); } + } //---------------------------------------------------------------------------------------- @@ -151,15 +149,15 @@ if (isset($_POST['ProcessSearch'])) { if (!check_valid_entries()) unset($_POST['ProcessSearch']); + $Ajax->activate('transactions'); } //---------------------------------------------------------------------------------------- -viewing_controls(); - -handle_search(); - -br(2); +start_form(false); + viewing_controls(); + handle_search(); +end_form(2); end_page();