X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Fincludes%2Fdb%2Fitems_category_db.inc;h=fc474d5e88034c5d1d8e3149c0d86c30952f7fc1;hb=d5618f84e921515fa6ce6ec05180f0651119c297;hp=014b75208c48f3505ec03a75d94aa6a46608a449;hpb=d567a10b7925c8bb97c734e213d6651a979af29d;p=fa-stable.git diff --git a/inventory/includes/db/items_category_db.inc b/inventory/includes/db/items_category_db.inc index 014b7520..fc474d5e 100644 --- a/inventory/includes/db/items_category_db.inc +++ b/inventory/includes/db/items_category_db.inc @@ -9,34 +9,75 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License here . ***********************************************************************/ -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 = '$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='$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_categories($show_inactive) +{ + $sql = "SELECT c.*, t.name as tax_name FROM ".TB_PREF."stock_category c, " + .TB_PREF."item_tax_types t WHERE c.dflt_tax_type=t.id"; + if (!$show_inactive) + $sql .= " AND !c.inactive"; + $sql .= " ORDER by description"; + + return db_query($sql, "could not get stock categories"); +} + +function get_item_category($id) { - $sql="SELECT * FROM ".TB_PREF."stock_category WHERE category_id='$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"); @@ -45,7 +86,7 @@ function get_item_category($ItemCategory) function get_category_name($id) { - $sql = "SELECT description FROM ".TB_PREF."stock_category WHERE category_id=$id"; + $sql = "SELECT description FROM ".TB_PREF."stock_category WHERE category_id=".db_escape($id); $result = db_query($sql, "could not get sales type");