dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #02627
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 892: Temporarily fixed compilation error in importexport. A problem is that we now cannot uniquely ide...
------------------------------------------------------------
revno: 892
committer: Lars Helge Oeverland larshelge@xxxxxxxxx
branch nick: trunk
timestamp: Tue 2009-10-20 16:36:09 +0200
message:
Temporarily fixed compilation error in importexport. A problem is that we now cannot uniquely identify a category option by its name. We need to include the associated category in its DXF identifier.
modified:
dhis-2/dhis-services/dhis-service-importexport/src/main/java/org/hisp/dhis/importexport/converter/AbstractDataElementCategoryOptionConverter.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-importexport/src/main/java/org/hisp/dhis/importexport/converter/AbstractDataElementCategoryOptionConverter.java'
--- dhis-2/dhis-services/dhis-service-importexport/src/main/java/org/hisp/dhis/importexport/converter/AbstractDataElementCategoryOptionConverter.java 2009-10-18 22:44:41 +0000
+++ dhis-2/dhis-services/dhis-service-importexport/src/main/java/org/hisp/dhis/importexport/converter/AbstractDataElementCategoryOptionConverter.java 2009-10-20 14:36:09 +0000
@@ -55,7 +55,7 @@
protected DataElementCategoryOption getMatching( DataElementCategoryOption object )
{
- return categoryService.getDataElementCategoryOptionByName( object.getName() );
+ return null; //TODO Fix categoryService.getDataElementCategoryOptionByName( object.getName() );
}
protected boolean isIdentical( DataElementCategoryOption object, DataElementCategoryOption existing )
Follow ups