Skip to content
Snippets Groups Projects
Commit cd2c9605 authored by alicefrumin's avatar alicefrumin Committed by Alice Frumin
Browse files

#530 CiviCase: using label instead of name to be consistent and commenting why

parent b79ff943
No related branches found
No related tags found
No related merge requests found
......@@ -297,16 +297,18 @@
});
}
}
// TODO The ids below really should use names not labels see
// https://lab.civicrm.org/dev/core/issues/774
else {
result.push({
text: relType.label_b_a,
id: relType.name_a_b
id: relType.label_a_b
});
if (!isBidirectionalRelationship) {
result.push({
text: relType.label_a_b,
id: relType.name_b_a
id: relType.label_b_a
});
}
}
......@@ -455,6 +457,10 @@
activity.default_assignee_contact = null;
};
// TODO roleName passed to addRole is a misnomer, its passed as the
// label HOWEVER it should be saved to xml as the name see
// https://lab.civicrm.org/dev/core/issues/774
/// Add a new role
$scope.addRole = function(roles, roleName) {
var names = _.pluck($scope.caseType.definition.caseRoles, 'name');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment