X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=gl%2Finquiry%2Ftax_inquiry.php;h=90ec7fe7d0efa255898764da897b7e2284e57f17;hb=63ed17b5a7a6436c148adc545f3df532b30b493f;hp=394963abe42e037e0d2f8a63a726f322209af3bb;hpb=d2cc0860eccf02eaefcd90731ac3af141a841529;p=fa-stable.git diff --git a/gl/inquiry/tax_inquiry.php b/gl/inquiry/tax_inquiry.php index 394963ab..90ec7fe7 100644 --- a/gl/inquiry/tax_inquiry.php +++ b/gl/inquiry/tax_inquiry.php @@ -22,9 +22,9 @@ include_once($path_to_root . "/gl/includes/gl_db.inc"); $js = ''; set_focus('account'); -if ($use_popup_windows) +if ($SysPrefs->use_popup_windows) $js .= get_js_open_window(800, 500); -if ($use_date_picker) +if (user_use_date_picker()) $js .= get_js_date_picker(); page(_($help_context = "Tax Inquiry"), false, false, '', $js); @@ -53,15 +53,12 @@ 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(_("from:"), 'TransFromDate', '', null, -user_transaction_days()); date_cells(_("to:"), 'TransToDate'); submit_cells('Show',_("Show"),'','', 'default'); @@ -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); @@ -138,4 +135,3 @@ show_results(); end_page(); -?>