瀏覽代碼

适配postgresql

jxing 5 年之前
父節點
當前提交
0f9fde3817
共有 1 個文件被更改,包括 2 次插入1 次删除
  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