dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #16128
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 6047: (patient) Don't run aggregate formula with age condition.
------------------------------------------------------------
revno: 6047
committer: Tran Chau <tran.hispvietnam@xxxxxxxxx>
branch nick: dhis2
timestamp: Mon 2012-02-20 16:12:19 +0700
message:
(patient) Don't run aggregate formula with age condition.
modified:
dhis-2/dhis-services/dhis-service-patient/src/main/java/org/hisp/dhis/caseaggregation/DefaultCaseAggregationConditionService.java
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-services/dhis-service-patient/src/main/java/org/hisp/dhis/caseaggregation/DefaultCaseAggregationConditionService.java'
--- dhis-2/dhis-services/dhis-service-patient/src/main/java/org/hisp/dhis/caseaggregation/DefaultCaseAggregationConditionService.java 2012-02-14 08:31:39 +0000
+++ dhis-2/dhis-services/dhis-service-patient/src/main/java/org/hisp/dhis/caseaggregation/DefaultCaseAggregationConditionService.java 2012-02-20 09:12:19 +0000
@@ -768,16 +768,16 @@
sql = "SELECT pi.patientid ";
}
- sql += "FROM patient as pi ";
+ sql += "FROM patient as pi WHERE ";
if ( propertyName.equals( PROPERTY_AGE ) )
{
- sql += "' AND (( 12 * ( EXTRACT(YEAR FROM '" + startDate + "' ) - EXTRACT(YEAR FROM birthdate ) ) ) + "
+ sql += "(( 12 * ( EXTRACT(YEAR FROM '" + startDate + "' ) - EXTRACT(YEAR FROM birthdate ) ) ) + "
+ "EXTRACT( MONTH FROM '" + startDate + "' ) - EXTRACT( MONTH FROM birthdate ) )" + " ";
}
else
{
- sql += "' AND pi." + propertyName + " ";
+ sql += " pi." + propertyName + " ";
}
return sql;