Copyright notes at top op every source file
[fa-stable.git] / sales / includes / db / sales_types_db.inc
index 338ae59b309b7ea48ae942dec5d16697304dc005..2257ad5e6b1c89525376013c3a04315038b2c5df 100644 (file)
@@ -1,16 +1,25 @@
 <?php
-
-function add_sales_type($name, $tax_included)
+/**********************************************************************
+    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)
 {
-       $sql = "INSERT INTO ".TB_PREF."sales_types (sales_type,tax_included) VALUES ('$name','$tax_included')";
-               
+       $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");             
 }
 
-function update_sales_type($id, $name, $tax_included)
+function update_sales_type($id, $name, $tax_included, $factor)
 {
-       $sql = "UPDATE ".TB_PREF."sales_types SET sales_type = '$name',
-       tax_included =$tax_included WHERE id = $id";
+
+       $sql = "UPDATE ".TB_PREF."sales_types SET sales_type = ".db_escape($name).",
+       tax_included =$tax_included, factor=$factor WHERE id = $id";
        
        db_query($sql, "could not update sales type");                  
 }