|
@@ -45,6 +45,18 @@ class EmType(EmComponent):
|
45
|
45
|
|
46
|
46
|
return exists
|
47
|
47
|
|
|
48
|
+ ## @brief Delete an EmType
|
|
49
|
+ # The deletion is only possible if a type is not linked by any EmClass
|
|
50
|
+ # and if it has no subordinates
|
|
51
|
+ # @return True if delete False if not deleted
|
|
52
|
+ # @todo Check if the type is not linked by any EmClass
|
|
53
|
+ # @todo Check if there is no other ''non-deletion'' conditions
|
|
54
|
+ def delete(self):
|
|
55
|
+ if len(self.subordinates()) > 0:
|
|
56
|
+ return False
|
|
57
|
+ return super(EmType, self).delete()
|
|
58
|
+
|
|
59
|
+
|
48
|
60
|
## Get the list of associated fieldgroups
|
49
|
61
|
# @return A list of EmFieldGroup instance
|
50
|
62
|
def field_groups(self):
|
|
@@ -241,4 +253,4 @@ class EmType(EmComponent):
|
241
|
253
|
for row in rows:
|
242
|
254
|
result.append(EmType(row['subordinate_id'] if row['superior_id']==self.uid else row['superior_id']))
|
243
|
255
|
|
244
|
|
- return result
|
|
256
|
+ return result
|