-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Use createdAt as secundary sorting param [DHIS2-18093]
- Loading branch information
1 parent
0ee87ec
commit 524b69a
Showing
11 changed files
with
286 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,7 @@ | |
import java.util.List; | ||
import java.util.Map; | ||
import java.util.Set; | ||
import org.hisp.dhis.constant.Constant; | ||
import org.hisp.dhis.program.Enrollment; | ||
import org.hisp.dhis.program.Event; | ||
import org.hisp.dhis.programrule.ProgramRule; | ||
|
@@ -43,7 +44,7 @@ | |
|
||
/** | ||
* RuleEngine has its own domain model. This service is responsible for converting DHIS domain | ||
* objects to RuleEngine domain objects and vice versa. | ||
* objects to RuleEngine domain objects. | ||
* | ||
* <p>Created by [email protected] on 19.10.17. | ||
*/ | ||
|
@@ -54,11 +55,6 @@ public interface ProgramRuleEntityMapperService { | |
*/ | ||
List<Rule> toMappedProgramRules(List<ProgramRule> programRules); | ||
|
||
/*** | ||
* @return A list of mapped RuleVariables for all programs. | ||
*/ | ||
List<RuleVariable> toMappedProgramRuleVariables(); | ||
|
||
/** | ||
* @param programRuleVariables The list of ProgramRuleVariable to be mapped. | ||
* @return A list of mapped RuleVariables for list of programs. | ||
|
@@ -88,5 +84,6 @@ RuleEnrollment toMappedRuleEnrollment( | |
* | ||
* @return map containing item description | ||
*/ | ||
Map<String, DataItem> getItemStore(List<ProgramRuleVariable> programRuleVariables); | ||
Map<String, DataItem> getItemStore( | ||
List<ProgramRuleVariable> programRuleVariables, List<Constant> constants); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.