Explorar el Código

适配postgresql

jxing hace 5 años
padre
commit
0f9fde3817
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      src/grid/check_grid.py

+ 2 - 1
src/grid/check_grid.py

@@ -7,6 +7,7 @@ def check_grid_upright(model_list, grid_data_dict):
     for model_id, all_grid in grid_data_dict.items():
         name_dict = dict()
         for data_row in all_grid:
+            # name_dict[data_row.get('name')] = str(data_row.get('location')).replace('\'', '"')
             name_dict[data_row.get('name')] = data_row.get('location')
         calc_dict[model_id] = name_dict
     for model_id, name_location_dict in calc_dict.items():
@@ -68,7 +69,7 @@ def has_conflict(base, compare):
             type2 = location2.get('Type')
             if type1 in type2:
                 if 'Line' in type1:
-                    if not is_same_line(location.get('Points'), compare.get(name).get('Points')):
+                    if not is_same_line(location.get('Points'), location2.get('Points')):
                         return True
             else:
                 return True