Copyright notes at top op every source file
[fa-stable.git] / sales / includes / db / sales_types_db.inc
index 4bde37506bf08cc65b12fe54ff816b6fa8da8ec2..2257ad5e6b1c89525376013c3a04315038b2c5df 100644 (file)
@@ -1,12 +1,17 @@
 <?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>.
+***********************************************************************/
 function add_sales_type($name, $tax_included, $factor)
 {
-       // maximum one base price list
-         clear_base_sales_type();
-
        $sql = "INSERT INTO ".TB_PREF."sales_types (sales_type,tax_included,factor) VALUES (".db_escape($name).",'$tax_included',$factor)";
-               
        db_query($sql, "could not add sales type");             
 }