X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=gl%2Finquiry%2Ftax_inquiry.php;h=6022fcd7211f67d8579c643566e1c0887f97e453;hb=ac5842d266a1c8b935231b03f987bd52dc8b9500;hp=c68ddabbe526bba0d16caf55793444a90c5c6e45;hpb=e41d9f32739a4d895138feb772f7dccdde312dbd;p=fa-stable.git diff --git a/gl/inquiry/tax_inquiry.php b/gl/inquiry/tax_inquiry.php index c68ddabb..6022fcd7 100644 --- a/gl/inquiry/tax_inquiry.php +++ b/gl/inquiry/tax_inquiry.php @@ -9,7 +9,7 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License here . ***********************************************************************/ -$page_security = 8; +$page_security = 'SA_TAXREP'; $path_to_root="../.."; include_once($path_to_root . "/includes/session.inc"); @@ -27,7 +27,7 @@ if ($use_popup_windows) if ($use_date_picker) $js .= get_js_date_picker(); -page(_("Tax Inquiry"), false, false, '', $js); +page(_($help_context = "Tax Inquiry"), false, false, '', $js); //---------------------------------------------------------------------------------------------------- // Ajax updates @@ -53,17 +53,14 @@ if (get_post('TransFromDate') == "" && get_post('TransToDate') == "") function tax_inquiry_controls() { - global $table_style2; - start_form(); - //start_table($table_style2); - start_table("class='tablestyle_noborder'"); + start_table(TABLESTYLE_NOBORDER); start_row(); date_cells(_("from:"), 'TransFromDate', '', null, -30); date_cells(_("to:"), 'TransToDate'); - submit_cells('Show',_("Show"),'','', true); + submit_cells('Show',_("Show"),'','', 'default'); end_row(); @@ -76,11 +73,11 @@ function tax_inquiry_controls() function show_results() { - global $path_to_root, $table_style; + global $path_to_root; /*Now get the transactions */ div_start('trans_tbl'); - start_table($table_style); + start_table(TABLESTYLE); $th = array(_("Type"), _("Description"), _("Amount"), _("Outputs")."/"._("Inputs")); table_header($th);