Save/retrieve last document date.
[fa-stable.git] / gl / inquiry / tax_inquiry.php
index 9c8b7a3725ee78e2f7564d2a41149e34c57887e2..db10eea01e50901aaa21b0bf1d1a378fcb8f7720 100644 (file)
@@ -1,13 +1,13 @@
 <?php
 /**********************************************************************
     Copyright (C) FrontAccounting, LLC.
-       Released under the terms of the GNU Affero General Public License,
-       AGPL, as published by the Free Software Foundation, either version 
-       of the License, or (at your option) any later version.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
-    See the License here <http://www.gnu.org/licenses/agpl-3.0.html>.
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
 ***********************************************************************/
 $page_security = 8;
 $path_to_root="../..";
@@ -50,12 +50,6 @@ if (get_post('TransFromDate') == "" && get_post('TransToDate') == "")
 
 //----------------------------------------------------------------------------------------------------
 
-function get_tax_types()
-{
-       $sql = "SELECT * FROM ".TB_PREF."tax_types ORDER BY id";
-    return db_query($sql,"No transactions were returned");
-}
-
 function tax_inquiry_controls()
 {
        global $table_style2;
@@ -68,7 +62,7 @@ function tax_inquiry_controls()
 
        date_cells(_("from:"), 'TransFromDate', '', null, -30);
        date_cells(_("to:"), 'TransToDate');
-       submit_cells('Show',_("Show"),'','', true);
+       submit_cells('Show',_("Show"),'','', 'default');
 
     end_row();
 
@@ -119,12 +113,14 @@ function show_results()
                label_cell("<b>".$tx['name'] . " " . $tx['rate'] . "%</b>");
                label_cell("<b>"._("Net payable or collectible") . ":</b>");
                amount_cell($net, true);
+               label_cell("");
                end_row();
        }       
        alt_table_row_color($k);
        label_cell("");
        label_cell("<b>"._("Total payable or refund") . ":</b>");
        amount_cell($total, true);
+       label_cell("");
        end_row();
 
        end_table(2);