=== added file 'dhis-2/dhis-web/dhis-web-importexport/src/main/java/org/hisp/dhis/importexport/action/dxf2/ShowUpdateFilterExportFormAction.java' --- dhis-2/dhis-web/dhis-web-importexport/src/main/java/org/hisp/dhis/importexport/action/dxf2/ShowUpdateFilterExportFormAction.java 1970-01-01 00:00:00 +0000 +++ dhis-2/dhis-web/dhis-web-importexport/src/main/java/org/hisp/dhis/importexport/action/dxf2/ShowUpdateFilterExportFormAction.java 2015-01-04 14:43:37 +0000 @@ -0,0 +1,84 @@ +/* + * Copyright (c) 2004-2014, University of Oslo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * Neither the name of the HISP project nor the names of its contributors may + * be used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package org.hisp.dhis.importexport.action.dxf2; + +import org.hisp.dhis.filter.MetaDataFilter; +import org.hisp.dhis.filter.MetaDataFilterService; + +import com.opensymphony.xwork2.Action; + +/** + * @author Chau Thu Tran + * + * @version $ ShowUpdateFilterExportFormAction.java Jan 4, 2015 8:33:34 PM $ + */ +public class ShowUpdateFilterExportFormAction + implements Action +{ + // ------------------------------------------------------------------------- + // Dependencies + // ------------------------------------------------------------------------- + + private MetaDataFilterService metaDataFilterService; + + public void setMetaDataFilterService( MetaDataFilterService metaDataFilterService ) + { + this.metaDataFilterService = metaDataFilterService; + } + + // ------------------------------------------------------------------------- + // Input + // ------------------------------------------------------------------------- + + private Integer id; + + public void setId( Integer id ) + { + this.id = id; + } + + private MetaDataFilter filter; + + public MetaDataFilter getFilter() + { + return filter; + } + + // ------------------------------------------------------------------------- + // Action implementation + // ------------------------------------------------------------------------- + + @Override + public String execute() + { + filter = metaDataFilterService.getFilter( id ); + + return SUCCESS; + } + +} === modified file 'dhis-2/dhis-web/dhis-web-importexport/src/main/resources/META-INF/dhis/beans.xml' --- dhis-2/dhis-web/dhis-web-importexport/src/main/resources/META-INF/dhis/beans.xml 2014-12-09 07:39:09 +0000 +++ dhis-2/dhis-web/dhis-web-importexport/src/main/resources/META-INF/dhis/beans.xml 2015-01-04 14:43:37 +0000 @@ -230,5 +230,10 @@ - + + + + + === modified file 'dhis-2/dhis-web/dhis-web-importexport/src/main/resources/struts.xml' --- dhis-2/dhis-web/dhis-web-importexport/src/main/resources/struts.xml 2014-12-08 19:51:34 +0000 +++ dhis-2/dhis-web/dhis-web-importexport/src/main/resources/struts.xml 2015-01-04 14:43:37 +0000 @@ -378,6 +378,14 @@ F_METADATA_EXPORT + + /main.vm + /dhis-web-importexport/mainMenu.vm + /dhis-web-importexport/updateFilterExportForm.vm + javascript/filteredMetaDataExport.js,javascript/utils.js + F_METADATA_EXPORT + + === modified file 'dhis-2/dhis-web/dhis-web-importexport/src/main/webapp/dhis-web-importexport/filterExportForm.vm' --- dhis-2/dhis-web/dhis-web-importexport/src/main/webapp/dhis-web-importexport/filterExportForm.vm 2015-01-03 11:19:11 +0000 +++ dhis-2/dhis-web/dhis-web-importexport/src/main/webapp/dhis-web-importexport/filterExportForm.vm 2015-01-04 14:43:37 +0000 @@ -102,8 +102,6 @@ #if ($command == "addNew")

$i18n.getString( "create_new_filter" )

-#elseif($command == "update") -

$i18n.getString( "edit_filter" )

#elseif($command == "addAdHoc")

$i18n.getString( "ad_hoc_export" )

#end @@ -113,11 +111,9 @@ #if ($command == "addNew" || $command == "addAdHoc") - #elseif ($command == "update") - #end - #if ($command == "addNew" || $command == "update") + #if ($command == "addNew")
@@ -303,11 +299,6 @@ - #elseif ($command == "update") - #elseif($command == "addAdHoc")
- - - === modified file 'dhis-2/dhis-web/dhis-web-importexport/src/main/webapp/dhis-web-importexport/javascript/filter.js' --- dhis-2/dhis-web/dhis-web-importexport/src/main/webapp/dhis-web-importexport/javascript/filter.js 2015-01-03 10:52:35 +0000 +++ dhis-2/dhis-web/dhis-web-importexport/src/main/webapp/dhis-web-importexport/javascript/filter.js 2015-01-04 14:43:37 +0000 @@ -69,9 +69,7 @@ function editFilterButton( context ) { - //TODO this must be done properly - - $( "#formFilter" ).submit(); + window.location.href = 'updateFilterExportForm.action?id=' + context.id; } function removeFilterButton( context ) === added file 'dhis-2/dhis-web/dhis-web-importexport/src/main/webapp/dhis-web-importexport/updateFilterExportForm.vm' --- dhis-2/dhis-web/dhis-web-importexport/src/main/webapp/dhis-web-importexport/updateFilterExportForm.vm 1970-01-01 00:00:00 +0000 +++ dhis-2/dhis-web/dhis-web-importexport/src/main/webapp/dhis-web-importexport/updateFilterExportForm.vm 2015-01-04 14:43:37 +0000 @@ -0,0 +1,296 @@ + + +##@author Ovidiu Rosu + +

$i18n.getString( "edit_filter" )

+ + +
+ + + +
+ + + + + + + + + + + + +
$i18n.getString( "filter_details" )
+ +
+ +
+
+ +
+ + +
+ +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+
+ + +
+ + + + + + + +
+ + +
+ + +
+