Browse Source

[EmFieldGroup] Changed in the deletion process. Raises a NotEmptyError in case fields are still attached to the fieldgroup

Roland Haroutiounian 9 years ago
parent
commit
10c516e404
2 changed files with 5 additions and 4 deletions
  1. 5
    3
      EditorialModel/fieldgroups.py
  2. 0
    1
      EditorialModel/model.py

+ 5
- 3
EditorialModel/fieldgroups.py View File

@@ -49,9 +49,8 @@ class EmFieldGroup(EmComponent):
49 49
     def delete(self):
50 50
         # all the EmField objects contained in this fieldgroup should be deleted first
51 51
         fieldgroup_fields = self.fields()
52
-        for fieldgroup_field in fieldgroup_fields:
53
-            fieldgroup_field.delete()
54
-
52
+        if len(fieldgroup_fields)>0:
53
+            raise NotEmptyError("This Fieldgroup still contains fields. It can't be deleted then")
55 54
         # then we delete this fieldgroup
56 55
         # TODO Process de suppression du fieldgroup dans le modèle éditorial
57 56
 
@@ -71,3 +70,6 @@ class EmFieldGroup(EmComponent):
71 70
         # rows = res.fetchall()
72 71
         # conn.close()
73 72
         # return [EditorialModel.fields.EmField(row['uid']) for row in rows]
73
+
74
+class NotEmptyError(Exception):
75
+    pass

+ 0
- 1
EditorialModel/model.py View File

@@ -9,7 +9,6 @@ from EditorialModel.fields import EmField
9 9
 from EditorialModel.types import EmType
10 10
 import EditorialModel
11 11
 
12
-
13 12
 ## Manages the Editorial Model
14 13
 class Model(object):
15 14
 

Loading…
Cancel
Save