dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #11961
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 3518: Patient module - Fixed bug NPE when editing a Beneficiary Aggregation Query Builder
------------------------------------------------------------
revno: 3518
committer: Hieu <hieu.hispvietnam@xxxxxxxxx>
branch nick: dhis2
timestamp: Fri 2011-05-06 14:58:47 +0700
message:
Patient module - Fixed bug NPE when editing a Beneficiary Aggregation Query Builder
modified:
dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/java/org/hisp/dhis/patient/action/caseaggregation/ShowCaseAggregationConditionFormAction.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-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/java/org/hisp/dhis/patient/action/caseaggregation/ShowCaseAggregationConditionFormAction.java'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/java/org/hisp/dhis/patient/action/caseaggregation/ShowCaseAggregationConditionFormAction.java 2011-03-20 17:57:30 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/java/org/hisp/dhis/patient/action/caseaggregation/ShowCaseAggregationConditionFormAction.java 2011-05-06 07:58:47 +0000
@@ -65,7 +65,9 @@
// -------------------------------------------------------------------------
// Output
// -------------------------------------------------------------------------
-
+
+ private Integer id;
+
private List<PatientAttribute> patientAttributes;
private List<DataElementGroup> dataElementGroups;
@@ -78,6 +80,16 @@
// Getters && Setters
// -------------------------------------------------------------------------
+ public Integer getId()
+ {
+ return id;
+ }
+
+ public void setId( Integer id )
+ {
+ this.id = id;
+ }
+
public List<DataElementGroup> getDataElementGroups()
{
return dataElementGroups;