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
c5a21c44
Commit
c5a21c44
authored
3 years ago
by
colemanw
Browse files
Options
Downloads
Patches
Plain Diff
SearchKit - Fix reloading a search with an OR group in the WHERE clause
Fixes
report#71
parent
3efec378
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ext/search_kit/ang/crmSearchAdmin/crmSearchClause.component.js
+7
-1
7 additions, 1 deletion
...earch_kit/ang/crmSearchAdmin/crmSearchClause.component.js
with
7 additions
and
1 deletion
ext/search_kit/ang/crmSearchAdmin/crmSearchClause.component.js
+
7
−
1
View file @
c5a21c44
...
...
@@ -34,6 +34,7 @@
_
.
each
(
ctrl
.
clauses
,
updateOperators
);
};
// Return a list of operators allowed for the field in a given clause
this
.
getOperators
=
function
(
clause
)
{
var
field
=
ctrl
.
getField
(
clause
[
0
]);
if
(
!
field
||
!
field
.
operators
)
{
...
...
@@ -48,8 +49,13 @@
return
ctrl
.
operators
[
opKey
];
};
// Ensures a clause is using an operator that is allowed for the field
function
updateOperators
(
clause
)
{
if
(
!
ctrl
.
skip
&&
(
!
clause
[
1
]
||
!
_
.
includes
(
_
.
pluck
(
ctrl
.
getOperators
(
clause
),
'
key
'
),
clause
[
1
])))
{
// Recurse into AND/OR/NOT groups
if
(
ctrl
.
conjunctions
[
clause
[
0
]])
{
_
.
each
(
clause
[
1
],
updateOperators
);
}
else
if
(
!
ctrl
.
skip
&&
(
!
clause
[
1
]
||
!
_
.
includes
(
_
.
pluck
(
ctrl
.
getOperators
(
clause
),
'
key
'
),
clause
[
1
])))
{
clause
[
1
]
=
ctrl
.
getOperators
(
clause
)[
0
].
key
;
ctrl
.
changeClauseOperator
(
clause
);
}
...
...
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