Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CiviCRM Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Development
CiviCRM Core
Commits
bb8b702c
Commit
bb8b702c
authored
5 years ago
by
alicefrumin
Committed by
Alice Frumin
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
#530
CiviCase: save new case roles in correct direction for xml and ui
parent
d0878639
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ang/crmCaseType.js
+70
-22
70 additions, 22 deletions
ang/crmCaseType.js
ang/crmCaseType/rolesTable.html
+2
-1
2 additions, 1 deletion
ang/crmCaseType/rolesTable.html
with
72 additions
and
23 deletions
ang/crmCaseType.js
+
70
−
22
View file @
bb8b702c
...
...
@@ -74,22 +74,11 @@
limit
:
0
}
}];
reqs
.
relTypes
=
[
'
Relationship
'
,
'
get
options
'
,
{
reqs
.
relTypes
=
[
'
Relationship
Type
'
,
'
get
'
,
{
sequential
:
1
,
field
:
'
relationship_type_id
'
,
context
:
'
create
'
,
is_active
:
1
,
options
:
{
limit
:
0
}
}];
reqs
.
relTypesForm
=
[
'
Relationship
'
,
'
getoptions
'
,
{
sequential
:
1
,
field
:
'
relationship_type_id
'
,
context
:
'
create
'
,
isForm
:
1
,
is_active
:
1
,
options
:
{
sort
:
'
label_a_b
'
,
limit
:
0
}
}];
...
...
@@ -272,17 +261,58 @@
$scope
.
activityTypes
=
_
.
indexBy
(
apiCalls
.
actTypes
.
values
,
'
name
'
);
$scope
.
activityTypeOptions
=
_
.
map
(
apiCalls
.
actTypes
.
values
,
formatActivityTypeOption
);
$scope
.
defaultAssigneeTypes
=
apiCalls
.
defaultAssigneeTypes
.
values
;
$scope
.
relationshipTypeOptions
=
_
.
map
(
apiCalls
.
relTypes
.
values
,
function
(
type
)
{
return
{
id
:
type
.
key
,
text
:
type
.
value
};
});
$scope
.
defaultRelationshipTypeOptions
=
_
.
map
(
apiCalls
.
relTypesForm
.
values
,
function
(
type
)
{
return
{
value
:
type
.
key
,
label
:
type
.
value
};
});
$scope
.
relationshipTypeOptions
=
getRelationshipTypeOptions
(
false
);
$scope
.
defaultRelationshipTypeOptions
=
getRelationshipTypeOptions
(
true
);
// stores the default assignee values indexed by their option name:
$scope
.
defaultAssigneeTypeValues
=
_
.
chain
(
$scope
.
defaultAssigneeTypes
)
.
indexBy
(
'
name
'
).
mapValues
(
'
value
'
).
value
();
}
// Returns the relationship type options. If the relationship is
// bidirectional (Ex: Spouse of) it adds a single option otherwise it adds
// two options representing the relationship type directions (Ex: Employee
// of, Employer of).
//
// The default relationship field needs values that are IDs with direction,
// while the role field needs values that are names (with implicit
// direction).
//
// At any rate, the labels should follow the convention in the UI of
// describing case roles from the perspective of the client, while the
// values must follow the convention in the XML of describing case roles
// from the perspective of the non-client.
function
getRelationshipTypeOptions
(
$isDefault
)
{
return
_
.
transform
(
apiCalls
.
relTypes
.
values
,
function
(
result
,
relType
)
{
var
isBidirectionalRelationship
=
relType
.
label_a_b
===
relType
.
label_b_a
;
if
(
$isDefault
)
{
result
.
push
({
label
:
relType
.
label_b_a
,
value
:
relType
.
id
+
'
_a_b
'
});
if
(
!
isBidirectionalRelationship
)
{
result
.
push
({
label
:
relType
.
label_a_b
,
value
:
relType
.
id
+
'
_b_a
'
});
}
}
else
{
result
.
push
({
text
:
relType
.
label_b_a
,
id
:
relType
.
name_a_b
});
if
(
!
isBidirectionalRelationship
)
{
result
.
push
({
text
:
relType
.
label_a_b
,
id
:
relType
.
name_b_a
});
}
}
},
[]);
}
/// initializes the case type object
function
initCaseType
()
{
var
isNewCaseType
=
!
apiCalls
.
caseType
;
...
...
@@ -316,6 +346,15 @@
}
});
});
// go lookup and add client-perspective labels for $scope.caseType.definition.caseRoles
_
.
each
(
$scope
.
caseType
.
definition
.
caseRoles
,
function
(
set
)
{
_
.
each
(
$scope
.
relationshipTypeOptions
,
function
(
relTypes
)
{
if
(
relTypes
.
text
==
set
.
name
)
{
set
.
displaylabel
=
relTypes
.
id
;
}
});
});
}
/// initializes the selected statuses
...
...
@@ -420,13 +459,15 @@
$scope
.
addRole
=
function
(
roles
,
roleName
)
{
var
names
=
_
.
pluck
(
$scope
.
caseType
.
definition
.
caseRoles
,
'
name
'
);
if
(
!
_
.
contains
(
names
,
roleName
))
{
if
(
_
.
where
(
$scope
.
relationshipTypeOptions
,
{
id
:
roleName
}).
length
)
{
roles
.
push
({
name
:
roleName
});
var
matchingRoles
=
_
.
filter
(
$scope
.
relationshipTypeOptions
,
{
id
:
roleName
});
if
(
matchingRoles
.
length
)
{
var
matchingRole
=
matchingRoles
.
shift
();
roles
.
push
({
name
:
roleName
,
displaylabel
:
matchingRole
.
text
});
}
else
{
CRM
.
loadForm
(
CRM
.
url
(
'
civicrm/admin/reltype
'
,
{
action
:
'
add
'
,
reset
:
1
,
label_a_b
:
roleName
}))
.
on
(
'
crmFormSuccess
'
,
function
(
e
,
data
)
{
var
newType
=
_
.
values
(
data
.
relationshipType
)[
0
];
roles
.
push
({
name
:
newType
.
label_a_b
});
roles
.
push
({
name
:
newType
.
label_a_b
,
displaylabel
:
newType
.
label_b_a
});
// Assume that the case role should be A-B but add both directions as options.
$scope
.
relationshipTypeOptions
.
push
({
id
:
newType
.
label_a_b
,
text
:
newType
.
label_a_b
});
if
(
newType
.
label_a_b
!=
newType
.
label_b_a
)
{
...
...
@@ -527,6 +568,13 @@
$scope
.
caseType
.
definition
.
activityAsgmtGrps
=
$scope
.
caseType
.
definition
.
activityAsgmtGrps
.
toString
().
split
(
"
,
"
);
}
function
dropDisplaylabel
(
v
)
{
delete
v
.
displaylabel
;
}
// strip out labels from $scope.caseType.definition.caseRoles
_
.
map
(
$scope
.
caseType
.
definition
.
caseRoles
,
dropDisplaylabel
);
var
result
=
crmApi
(
'
CaseType
'
,
'
create
'
,
$scope
.
caseType
,
true
);
result
.
then
(
function
(
data
)
{
if
(
data
.
is_error
===
0
||
data
.
is_error
==
'
0
'
)
{
...
...
This diff is collapsed.
Click to expand it.
ang/crmCaseType/rolesTable.html
+
2
−
1
View file @
bb8b702c
...
...
@@ -13,7 +13,8 @@ Required vars: caseType
</thead>
<tbody>
<tr
ng-repeat=
"relType in caseType.definition.caseRoles | orderBy:'name'"
ng-class-even=
"'crm-entity even-row even'"
ng-class-odd=
"'crm-entity odd-row odd'"
>
<td>
{{relType.name}}
</td>
<!-- display label (client-perspective) -->
<td>
{{relType.displaylabel}}
</td>
<td><input
type=
"checkbox"
ng-model=
"relType.creator"
ng-true-value=
"'1'"
ng-false-value=
"'0'"
></td>
<td><input
type=
"radio"
ng-model=
"relType.manager"
value=
"1"
ng-change=
"onManagerChange(relType)"
></td>
<td>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment