Skip to content

Commit

Permalink
fix: Bump rule-engine version [DHIS2-15891] (#19580)
Browse files Browse the repository at this point in the history
  • Loading branch information
enricocolasante authored Jan 1, 2025
1 parent 827aa78 commit 9ca4f4a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -996,7 +996,7 @@
"name": "TA tracker program rule - showerror on stage",
"displayName": "TA tracker program rule - showerror",
"externalAccess": false,
"condition": "V{enrollment_date} > V{current_date}",
"condition": "d2:daysBetween(V{enrollment_date},V{current_date}) < 0",
"favorite": false,
"program": {
"id": "U5HE4IRrZ7S"
Expand Down Expand Up @@ -1036,7 +1036,7 @@
"users": {},
"userGroups": {}
},
"condition": "V{event_date} < V{current_date}",
"condition": "d2:daysBetween(V{event_date},V{current_date}) > 0",
"program": {
"id": "U5HE4IRrZ7S"
},
Expand Down Expand Up @@ -1067,7 +1067,7 @@
"users": {},
"userGroups": {}
},
"condition": "V{event_date} < V{current_date}",
"condition": "d2:daysBetween(V{event_date},V{current_date}) > 0",
"program": {
"id": "U5HE4IRrZ7S"
},
Expand Down Expand Up @@ -1118,7 +1118,7 @@
"name": "TA tracker program rule - warnings",
"displayName": "TA tracker program rule - warnings",
"externalAccess": false,
"condition": "V{enrollment_date} < V{current_date}",
"condition": "d2:daysBetween(V{enrollment_date},V{current_date}) > 0",
"favorite": false,
"program": {
"id": "U5HE4IRrZ7S"
Expand Down
2 changes: 1 addition & 1 deletion dhis-2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
<!-- *Dependencies* -->

<!-- DHIS2 Rule Engine -->
<dhis2-rule-engine.version>2.1.8.2</dhis2-rule-engine.version>
<dhis2-rule-engine.version>2.1.8.3</dhis2-rule-engine.version>

<!-- HISP Quick and Staxwax -->
<dhis-hisp-quick.version>1.4.4</dhis-hisp-quick.version>
Expand Down

0 comments on commit 9ca4f4a

Please sign in to comment.