Update from usntable branch.
[fa-stable.git] / inventory / includes / db / items_category_db.inc
index 20f469b0384dfabed5a07139567cec2d84e3a629..11f9486ddc3b7a2f3ef41bde988a0c1b1c500243 100644 (file)
@@ -9,34 +9,64 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
 ***********************************************************************/
-function add_item_category($description)
-
+function add_item_category($description, $tax_type_id, $sales_account, 
+       $cogs_account, $inventory_account, $adjustment_account, $assembly_account, 
+       $units, $mb_flag, $dim1, $dim2, $no_sale)
 {
-       $sql = "INSERT INTO ".TB_PREF."stock_category (description)
-               VALUES (".db_escape($description).")";
+       $sql = "INSERT INTO ".TB_PREF."stock_category (description, dflt_tax_type,
+                       dflt_units, dflt_mb_flag, dflt_sales_act, dflt_cogs_act, 
+                       dflt_inventory_act, dflt_adjustment_act, dflt_assembly_act, 
+                       dflt_dim1, dflt_dim2, dflt_no_sale)
+               VALUES ("
+               .db_escape($description).","
+               .db_escape($tax_type_id).","
+               .db_escape($units).","
+               .db_escape($mb_flag).","
+               .db_escape($sales_account).","
+               .db_escape($cogs_account).","
+               .db_escape($inventory_account).","
+               .db_escape($adjustment_account).","
+               .db_escape($assembly_account).","
+               .db_escape($dim1).","
+               .db_escape($dim2).","
+               .db_escape($no_sale).")";
 
        db_query($sql,"an item category could not be added");
 }
 
-function update_item_category($ItemCategory, $description)
+function update_item_category($id, $description, $tax_type_id, 
+       $sales_account, $cogs_account, $inventory_account, $adjustment_account, 
+       $assembly_account, $units, $mb_flag, $dim1, $dim2, $no_sale)
 
 {
-       $sql = "UPDATE ".TB_PREF."stock_category SET description = ".db_escape($description)."
-        WHERE category_id = ".db_escape($ItemCategory);
+       $sql = "UPDATE ".TB_PREF."stock_category SET "
+               ."description = ".db_escape($description).","
+               ."dflt_tax_type = ".db_escape($tax_type_id).","
+               ."dflt_units = ".db_escape($units).","
+               ."dflt_mb_flag = ".db_escape($mb_flag).","
+               ."dflt_sales_act = ".db_escape($sales_account).","
+               ."dflt_cogs_act = ".db_escape($cogs_account).","
+               ."dflt_inventory_act = ".db_escape($inventory_account).","
+               ."dflt_adjustment_act = ".db_escape($adjustment_account).","
+               ."dflt_assembly_act = ".db_escape($assembly_account).","
+               ."dflt_dim1 = ".db_escape($dim1).","
+               ."dflt_dim2 = ".db_escape($dim2).","
+               ."dflt_no_sale = ".db_escape($no_sale)
+        ."WHERE category_id = ".db_escape($id);
 
        db_query($sql,"an item category could not be updated");
 }
 
-function delete_item_category($ItemCategory)
+function delete_item_category($id)
 {
-       $sql="DELETE FROM ".TB_PREF."stock_category WHERE category_id=".db_escape($ItemCategory);
+       $sql="DELETE FROM ".TB_PREF."stock_category WHERE category_id=".db_escape($id);
 
        db_query($sql,"an item category could not be deleted");
 }
 
-function get_item_category($ItemCategory)
+function get_item_category($id)
 {
-       $sql="SELECT * FROM ".TB_PREF."stock_category WHERE category_id=".db_escape($ItemCategory);
+       $sql="SELECT * FROM ".TB_PREF."stock_category WHERE category_id=".db_escape($id);
 
        $result = db_query($sql,"an item category could not be retrieved");