Copyright notes at top op every source file
[fa-stable.git] / taxes / tax_types.php
index 55e40950d43ff4534c5a5272aae4d9c21087507b..a7c538361c001d1628f03fc5d40f4ac1eb475f3c 100644 (file)
@@ -1,4 +1,14 @@
 <?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 
+       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>.
+***********************************************************************/
 $page_security = 3;
 $path_to_root="..";
 
@@ -8,14 +18,7 @@ page(_("Tax Types"));
 include_once($path_to_root . "/includes/ui.inc");
 include_once($path_to_root . "/taxes/db/tax_types_db.inc");
 
-if (isset($_GET['selected_id']))
-{
-       $selected_id = $_GET['selected_id'];
-}
-elseif(isset($_POST['selected_id']))
-{
-       $selected_id = $_POST['selected_id'];
-}
+simple_page_mode(true);
 //-----------------------------------------------------------------------------------
 
 function can_process()
@@ -38,22 +41,24 @@ function can_process()
 
 //-----------------------------------------------------------------------------------
 
-if (isset($_POST['ADD_ITEM']) && can_process())
+if ($Mode=='ADD_ITEM' && can_process())
 {
 
        add_tax_type($_POST['name'], $_POST['sales_gl_code'],
                $_POST['purchasing_gl_code'], input_num('rate'));
-       meta_forward($_SERVER['PHP_SELF']);
+       display_notification(_('New tax type has been added'));
+       $Mode = 'RESET';
 }
 
 //-----------------------------------------------------------------------------------
 
-if (isset($_POST['UPDATE_ITEM']) && can_process())
+if ($Mode=='UPDATE_ITEM' && can_process())
 {
 
        update_tax_type($selected_id, $_POST['name'],
        $_POST['sales_gl_code'], $_POST['purchasing_gl_code'], input_num('rate'));
-       meta_forward($_SERVER['PHP_SELF']);
+       display_notification(_('Selected tax type has been updated'));
+       $Mode = 'RESET';
 }
 
 //-----------------------------------------------------------------------------------
@@ -76,20 +81,27 @@ function can_delete($selected_id)
 
 //-----------------------------------------------------------------------------------
 
-if (isset($_GET['delete']))
+if ($Mode == 'Delete')
 {
 
        if (can_delete($selected_id))
        {
                delete_tax_type($selected_id);
-               meta_forward($_SERVER['PHP_SELF']);
+               display_notification(_('Selected tax type has been deleted'));
        }
+       $Mode = 'RESET';
 }
 
+if ($Mode == 'RESET')
+{
+       $selected_id = -1;
+       unset($_POST);
+}
 //-----------------------------------------------------------------------------------
 
 $result = get_all_tax_types();
 
+start_form();
 start_table($table_style);
 
 $th = array(_("Description"), _("Default Rate (%)"),
@@ -107,17 +119,16 @@ while ($myrow = db_fetch($result))
        label_cell($myrow["sales_gl_code"] . "&nbsp;" . $myrow["SalesAccountName"]);
        label_cell($myrow["purchasing_gl_code"] . "&nbsp;" . $myrow["PurchasingAccountName"]);
 
-       edit_link_cell("selected_id=".$myrow["id"]);
-       delete_link_cell("selected_id=".$myrow["id"]."&delete=1");
+       edit_button_cell("Edit".$myrow["id"], _("Edit"));
+       delete_button_cell("Delete".$myrow["id"], _("Delete"));
 
        end_row();
 }
 
 end_table();
 
-//-----------------------------------------------------------------------------------
-
-hyperlink_no_params($_SERVER['PHP_SELF'], _("New Tax Type"));
+end_form();
+echo '<br>';
 
 //-----------------------------------------------------------------------------------
 
@@ -125,17 +136,18 @@ start_form();
 
 start_table($table_style2);
 
-if (isset($selected_id))
+if ($selected_id != -1) 
 {
-       //editing an existing status code
-
-       $myrow = get_tax_type($selected_id);
+       if ($Mode == 'Edit') {
+               //editing an existing status code
 
-       $_POST['name']  = $myrow["name"];
-       $_POST['rate']  = percent_format($myrow["rate"]);
-       $_POST['sales_gl_code']  = $myrow["sales_gl_code"];
-       $_POST['purchasing_gl_code']  = $myrow["purchasing_gl_code"];
+               $myrow = get_tax_type($selected_id);
 
+               $_POST['name']  = $myrow["name"];
+               $_POST['rate']  = percent_format($myrow["rate"]);
+               $_POST['sales_gl_code']  = $myrow["sales_gl_code"];
+               $_POST['purchasing_gl_code']  = $myrow["purchasing_gl_code"];
+       }
        hidden('selected_id', $selected_id);
 }
 text_row_ex(_("Description:"), 'name', 50);
@@ -146,7 +158,7 @@ gl_all_accounts_list_row(_("Purchasing GL Account:"), 'purchasing_gl_code', null
 
 end_table(1);
 
-submit_add_or_update_center(!isset($selected_id));
+submit_add_or_update_center($selected_id == -1, '', true);
 
 end_form();