X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Fmanage%2Fmovement_types.php;h=e7086f947432915989c1a32f1f68631f13750c3a;hb=e98dad8c105182b946fd58518710d86214f94c91;hp=5f75844fca8e536ddde2d7f5ce7aae2a6a8573ed;hpb=80dd97a37f674cc3691fa04af4c29607067566b2;p=fa-stable.git diff --git a/inventory/manage/movement_types.php b/inventory/manage/movement_types.php index 5f75844f..e7086f94 100644 --- a/inventory/manage/movement_types.php +++ b/inventory/manage/movement_types.php @@ -13,7 +13,7 @@ $page_security = 'SA_INVENTORYMOVETYPE'; $path_to_root = "../.."; include($path_to_root . "/includes/session.inc"); -page(_("Inventory Movement Types")); +page(_($help_context = "Inventory Movement Types")); include_once($path_to_root . "/inventory/includes/inventory_db.inc"); @@ -56,11 +56,7 @@ if ($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM') function can_delete($selected_id) { - $sql= "SELECT COUNT(*) FROM ".TB_PREF."stock_moves - WHERE type=" . ST_INVADJUST. " AND person_id=$selected_id"; - $result = db_query($sql, "could not query stock moves"); - $myrow = db_fetch_row($result); - if ($myrow[0] > 0) + if (movement_types_in_stock_moves($selected_id)) { display_error(_("Cannot delete this inventory movement type because item transactions have been created referring to it.")); return false; @@ -94,7 +90,7 @@ if ($Mode == 'RESET') $result = get_all_movement_type(check_value('show_inactive')); start_form(); -start_table("$table_style width=30%"); +start_table(TABLESTYLE, "width=30%"); $th = array(_("Description"), "", ""); inactive_control_column($th); @@ -116,7 +112,7 @@ end_table(1); //----------------------------------------------------------------------------------- -start_table($table_style2); +start_table(TABLESTYLE2); if ($selected_id != -1) {