110
110
for group in grp_obj.browse(cr, uid, attribute_group_ids, context=context):
111
111
page = etree.SubElement(notebook, 'page', string=group.name.capitalize())
112
112
for attribute in group.attribute_ids:
114
self._build_attribute_field(cr, uid, page, attribute, context=context)
115
self._build_attribute_field(cr, uid, page, attribute, context=context)
115
116
return notebook, toupdate_fields
117
118
def fields_view_get(self, cr, uid, view_id=None, view_type='form', context=None, toolbar=False, submenu=False):