|
@@ -40,25 +40,33 @@ class EmField(EmComponent):
|
40
|
40
|
#
|
41
|
41
|
# @static
|
42
|
42
|
#
|
|
43
|
+ # @param name str: Name of the field
|
|
44
|
+ # @param fieldgroup EmFieldGroup: Field group in which the field is
|
|
45
|
+ # @param fieldtype EmFieldType: Type of the field
|
|
46
|
+ # @param optional int: is the field optional ? (default=0)
|
|
47
|
+ # @param internal int: is the field internal ? (default=0)
|
|
48
|
+ # @param rel_to_type_id int: default=0
|
|
49
|
+ # @param rel_field_id int: default=0
|
|
50
|
+ # @param icon int: default=0
|
43
|
51
|
# @param kwargs dict: Dictionary of the values to insert in the field record
|
44
|
52
|
#
|
45
|
53
|
# @throw TypeError
|
46
|
54
|
# @see EmComponent::__init__()
|
47
|
55
|
# @staticmethod
|
48
|
56
|
@classmethod
|
49
|
|
- def create(c, **kwargs):
|
|
57
|
+ def create(c, name, fieldgroup, fieldtype, optional=0, internal=0, rel_to_type_id=0, rel_field_id=0, icon=0):
|
50
|
58
|
try:
|
51
|
|
- exists = EmField(kwargs['name'])
|
|
59
|
+ exists = EmField(name)
|
52
|
60
|
except EmComponentNotExistError:
|
53
|
61
|
values = {
|
54
|
|
- 'name' : kwargs['name'],
|
55
|
|
- 'fieldgroup_id' : kwargs['fieldgroup_id'],
|
56
|
|
- 'fieldtype' : kwargs['fieldtype'].name,
|
57
|
|
- 'optional' : 1 if 'optional' in kwargs else 0,
|
58
|
|
- 'internal' : 1 if 'internal' in kwargs else 0,
|
59
|
|
- 'rel_to_type_id': 0 if 'rel_to_type_id' not in kwargs else kwargs['rel_to_type_id'],
|
60
|
|
- 'rel_field_id': 0 if 'rel_field_id' not in kwargs else kwargs['rel_field_id'],
|
61
|
|
- 'icon': 0 if 'icon' not in kwargs else kwargs['icon']
|
|
62
|
+ 'name' : name,
|
|
63
|
+ 'fieldgroup_id' : fieldgroup.uid,
|
|
64
|
+ 'fieldtype' : fieldtype.name,
|
|
65
|
+ 'optional' : optional,
|
|
66
|
+ 'internal' : internal,
|
|
67
|
+ 'rel_to_type_id': rel_to_type_id,
|
|
68
|
+ 'rel_field_id': rel_field_id,
|
|
69
|
+ 'icon': icon
|
62
|
70
|
}
|
63
|
71
|
|
64
|
72
|
createdField = super(EmField,c).create(**values)
|