dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #02882
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 945: Import data from Excel file - work in processing
------------------------------------------------------------
revno: 945
committer: Tran Chau <tran.hispvietnam@xxxxxxxxx>
branch nick: trunk
timestamp: Sat 2009-10-31 11:21:12 +0700
message:
Import data from Excel file - work in processing
modified:
dhis-2/dhis-api/src/main/java/org/hisp/dhis/reportexcel/excelitem/ExcelItemGroup.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-api/src/main/java/org/hisp/dhis/reportexcel/excelitem/ExcelItemGroup.java'
--- dhis-2/dhis-api/src/main/java/org/hisp/dhis/reportexcel/excelitem/ExcelItemGroup.java 2009-10-30 13:04:40 +0000
+++ dhis-2/dhis-api/src/main/java/org/hisp/dhis/reportexcel/excelitem/ExcelItemGroup.java 2009-10-31 04:21:12 +0000
@@ -39,6 +39,7 @@
* @author Chau Thu Tran
* @version $Id$
*/
+
public class ExcelItemGroup
{
private int id;
@@ -195,16 +196,6 @@
this.organisationAssocitions = organisationAssocitions;
}
- public PeriodType getPeriodType()
- {
- return periodType;
- }
-
- public void setPeriodType( PeriodType periodType )
- {
- this.periodType = periodType;
- }
-
// ----------------------------------------------------------------------
// getType
// ----------------------------------------------------------------------
@@ -228,4 +219,13 @@
{
return this.getType().equalsIgnoreCase( TYPE.NORMAL );
}
+
+ public PeriodType getPeriodType() {
+ return periodType;
+ }
+
+ public void setPeriodType(PeriodType periodType) {
+ this.periodType = periodType;
+ }
+
}