X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Fmanage%2Fmovement_types.php;h=e7086f947432915989c1a32f1f68631f13750c3a;hb=8558b7ef375c62ea2c7bd057beb468ba4aeef376;hp=259f6dce5d0f6f5cc71fa9b9778e9545a3412e62;hpb=ebc600101ceab69c06eac4b1bd4d1782af45de05;p=fa-stable.git diff --git a/inventory/manage/movement_types.php b/inventory/manage/movement_types.php index 259f6dce..e7086f94 100644 --- a/inventory/manage/movement_types.php +++ b/inventory/manage/movement_types.php @@ -56,12 +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=".db_escape($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; @@ -95,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); @@ -117,7 +112,7 @@ end_table(1); //----------------------------------------------------------------------------------- -start_table($table_style2); +start_table(TABLESTYLE2); if ($selected_id != -1) {