Given a project builds reference to values...
(session: 'Session', project: Project)
| 288 | |
| 289 | |
| 290 | def build_attribute_groups_reference(session: 'Session', project: Project): |
| 291 | """ |
| 292 | Given a project builds reference to values... |
| 293 | """ |
| 294 | group_list = Attribute_Template_Group.list( |
| 295 | session = session, |
| 296 | group_id = None, |
| 297 | project_id = project.id, |
| 298 | return_kind = "objects" |
| 299 | ) |
| 300 | |
| 301 | group_list_serialized = [] |
| 302 | |
| 303 | for group in group_list: |
| 304 | group_list_serialized.append(group.serialize_with_attributes_and_labels(session)) |
| 305 | |
| 306 | return group_list_serialized |
| 307 | |
| 308 | |
| 309 | def build_packet(file, |
no test coverage detected