Skip to content

Commit

Permalink
Merge pull request palladiumkenya#1840 from uonafya/705a-dissag-fixes
Browse files Browse the repository at this point in the history
705 dissag fixes
  • Loading branch information
makombe authored Mar 20, 2024
2 parents 0d8827d + 7e9c3fb commit 526cec6
Show file tree
Hide file tree
Showing 24 changed files with 18,392 additions and 398 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
/**
* Utility methods for reporting
*/
public class EmrReportingUtils {
public class
EmrReportingUtils {

/**
* Creates a new cohort indicator
Expand Down Expand Up @@ -115,4 +116,4 @@ public static Date todaysDate(){

return today;
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/**
* This Source Code Form is subject to the terms of the Mozilla Public License,
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
* obtain one at http://mozilla.org/MPL/2.0/. OpenMRS is also distributed under
* the terms of the Healthcare Disclaimer located at http://openmrs.org/license.
*
* Copyright (C) OpenMRS Inc. OpenMRS is a registered trademark and the OpenMRS
* graphic logo is a trademark of OpenMRS Inc.
*/
package org.openmrs.module.kenyaemr.reporting.Moh705ReportUtils;

public class AutismDiagnosisConstants {

public static final Integer AUTISM_1 = 121303;

public static final Integer AUTISM_2 = 127653;

public static final Integer AUTISM_3 = 137557;

public static final Integer AUTISM_4 = 149941;

public static final Integer AUTISM_5 = 152042;

public static final Integer AUTISM_6 = 155013;

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
/**
* This Source Code Form is subject to the terms of the Mozilla Public License,
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
* obtain one at http://mozilla.org/MPL/2.0/. OpenMRS is also distributed under
* the terms of the Healthcare Disclaimer located at http://openmrs.org/license.
*
* Copyright (C) OpenMRS Inc. OpenMRS is a registered trademark and the OpenMRS
* graphic logo is a trademark of OpenMRS Inc.
*/
package org.openmrs.module.kenyaemr.reporting.Moh705ReportUtils;

/**
* Describes a column in a CohortIndicatorDataSetDefinition
*/
public class ColumnParameters {

private String name;

private String label;

private String dimensions;

private String column;

/**
* Default constructor
*
* @param name the name
* @param label the label
* @param dimensions the dimension parameters
*/
public ColumnParameters(String name, String label, String dimensions, String column) {
this.name = name;
this.label = label;
this.dimensions = dimensions;
this.column = column;
}

/**
* Gets the name
*
* @return the name
*/
public String getName() {
return name;
}

/**
* Gets the label
*
* @return the label
*/
public String getLabel() {
return label;
}

/**
* Gets the dimension parameters
*
* @return the dimension parameters
*/
public String getDimensions() {
return dimensions;
}

/**
* Gets the column
*
* @return the column
*/
public String getColumn() {
return column;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
/**
* This Source Code Form is subject to the terms of the Mozilla Public License,
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
* obtain one at http://mozilla.org/MPL/2.0/. OpenMRS is also distributed under
* the terms of the Healthcare Disclaimer located at http://openmrs.org/license.
*
* Copyright (C) OpenMRS Inc. OpenMRS is a registered trademark and the OpenMRS
* graphic logo is a trademark of OpenMRS Inc.
*/
package org.openmrs.module.kenyaemr.reporting.Moh705ReportUtils;

public class ConvulsiveDiagnosisConstants {

public static final Integer CONVULSIVE1 = 206;

public static final Integer CONVULSIVE2 = 110191;

public static final Integer CONVULSIVE3 = 110664;

public static final Integer CONVULSIVE4 = 110815;

public static final Integer CONVULSIVE5 = 110818;

public static final Integer CONVULSIVE6 = 112353;

public static final Integer CONVULSIVE7 = 113054;

public static final Integer CONVULSIVE8 = 114180;

public static final Integer CONVULSIVE9 = 117849;

public static final Integer CONVULSIVE10 = 117858;

public static final Integer CONVULSIVE11 = 118580;

public static final Integer CONVULSIVE12 = 123550;

public static final Integer CONVULSIVE13 = 124958;

public static final Integer CONVULSIVE14 = 126474;

public static final Integer CONVULSIVE15 = 129948;

public static final Integer CONVULSIVE16 = 138960;

public static final Integer CONVULSIVE17 = 140339;

public static final Integer CONVULSIVE18 = 140485;

public static final Integer CONVULSIVE19 = 143388;

public static final Integer CONVULSIVE20 = 144471;

public static final Integer CONVULSIVE21 = 147874;

public static final Integer CONVULSIVE22 = 148590;

public static final Integer CONVULSIVE23 = 150308;

public static final Integer CONVULSIVE24 = 151678;

public static final Integer CONVULSIVE25 = 155756;

public static final Integer CONVULSIVE26 = 156027;

public static final Integer CONVULSIVE27 = 156119;

public static final Integer CONVULSIVE28 = 161101;
}
Loading

0 comments on commit 526cec6

Please sign in to comment.