Skip to content

Commit

Permalink
fix: Bump rule-engine version [DHIS2-15891] (#19582)
Browse files Browse the repository at this point in the history
  • Loading branch information
enricocolasante authored Jan 1, 2025
1 parent e841f7d commit 7504477
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@
},
"favorites": [],
"translations": [],

"attributeValues": []
}],
"translations": [],
Expand Down Expand Up @@ -960,7 +960,8 @@
"created": "2020-12-08T09:10:20.341",
"name": "TA tracker program rule - showerror on stage",
"displayName": "TA tracker program rule - showerror",
"condition": "V{enrollment_date} > V{current_date}",
"externalAccess": false,
"condition": "d2:daysBetween(V{enrollment_date},V{current_date}) < 0",
"favorite": false,
"program": {
"id": "U5HE4IRrZ7S"
Expand Down Expand Up @@ -1002,7 +1003,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 @@ -1031,7 +1032,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 @@ -1082,7 +1083,8 @@
"created": "2020-12-08T09:10:20.341",
"name": "TA tracker program rule - warnings",
"displayName": "TA tracker program rule - warnings",
"condition": "V{enrollment_date} < V{current_date}",
"externalAccess": false,
"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 @@ -78,7 +78,7 @@
<!-- *Dependencies* -->

<!-- DHIS2 Rule Engine -->
<dhis2-rule-engine.version>3.2.1</dhis2-rule-engine.version>
<dhis2-rule-engine.version>3.2.2</dhis2-rule-engine.version>
<kotlinx-datetime.version>0.6.1</kotlinx-datetime.version>

<!-- HISP Quick and Staxwax -->
Expand Down

0 comments on commit 7504477

Please sign in to comment.