dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #41587
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 21196: document attributes
------------------------------------------------------------
revno: 21196
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Thu 2015-11-26 11:29:05 +0700
message:
document attributes
modified:
dhis-2/dhis-web/dhis-web-reporting/src/main/java/org/hisp/dhis/reporting/document/action/GetDocumentAction.java
dhis-2/dhis-web/dhis-web-reporting/src/main/java/org/hisp/dhis/reporting/document/action/SaveDocumentAction.java
dhis-2/dhis-web/dhis-web-reporting/src/main/webapp/dhis-web-reporting/addDocumentForm.vm
--
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-reporting/src/main/java/org/hisp/dhis/reporting/document/action/GetDocumentAction.java'
--- dhis-2/dhis-web/dhis-web-reporting/src/main/java/org/hisp/dhis/reporting/document/action/GetDocumentAction.java 2015-01-17 07:41:26 +0000
+++ dhis-2/dhis-web/dhis-web-reporting/src/main/java/org/hisp/dhis/reporting/document/action/GetDocumentAction.java 2015-11-26 04:29:05 +0000
@@ -28,10 +28,18 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+import com.opensymphony.xwork2.Action;
+import org.hisp.dhis.attribute.Attribute;
+import org.hisp.dhis.attribute.AttributeService;
import org.hisp.dhis.document.Document;
import org.hisp.dhis.document.DocumentService;
+import org.hisp.dhis.system.util.AttributeUtils;
+import org.springframework.beans.factory.annotation.Autowired;
-import com.opensymphony.xwork2.Action;
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
/**
* @author Lars Helge Overland
@@ -50,6 +58,9 @@
this.documentService = documentService;
}
+ @Autowired
+ private AttributeService attributeService;
+
// -------------------------------------------------------------------------
// Input
// -------------------------------------------------------------------------
@@ -72,6 +83,20 @@
return document;
}
+ private List<Attribute> attributes;
+
+ public List<Attribute> getAttributes()
+ {
+ return attributes;
+ }
+
+ private Map<Integer, String> attributeValues = new HashMap<>();
+
+ public Map<Integer, String> getAttributeValues()
+ {
+ return attributeValues;
+ }
+
// -------------------------------------------------------------------------
// Action implementation
// -------------------------------------------------------------------------
@@ -79,10 +104,15 @@
@Override
public String execute()
{
+ attributes = new ArrayList<>( attributeService.getAttributes( Document.class ) );
+
if ( id != null )
{
document = documentService.getDocument( id );
+
+ attributeValues = AttributeUtils.getAttributeValueMap( document.getAttributeValues() );
}
+
return SUCCESS;
}
}
=== modified file 'dhis-2/dhis-web/dhis-web-reporting/src/main/java/org/hisp/dhis/reporting/document/action/SaveDocumentAction.java'
--- dhis-2/dhis-web/dhis-web-reporting/src/main/java/org/hisp/dhis/reporting/document/action/SaveDocumentAction.java 2015-10-08 13:50:01 +0000
+++ dhis-2/dhis-web/dhis-web-reporting/src/main/java/org/hisp/dhis/reporting/document/action/SaveDocumentAction.java 2015-11-26 04:29:05 +0000
@@ -1,12 +1,16 @@
package org.hisp.dhis.reporting.document.action;
-import java.io.File;
-
+import com.opensymphony.xwork2.Action;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
+import org.hisp.dhis.attribute.AttributeService;
import org.hisp.dhis.document.Document;
import org.hisp.dhis.document.DocumentService;
import org.hisp.dhis.external.location.LocationManager;
+import org.springframework.beans.factory.annotation.Autowired;
+
+import java.io.File;
+import java.util.List;
/*
* Copyright (c) 2004-2015, University of Oslo
@@ -36,8 +40,6 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-import com.opensymphony.xwork2.Action;
-
/**
* @author Lars Helge Overland
*/
@@ -68,6 +70,9 @@
this.documentService = documentService;
}
+ @Autowired
+ private AttributeService attributeService;
+
// -------------------------------------------------------------------------
// Input
// -------------------------------------------------------------------------
@@ -128,6 +133,13 @@
this.contentType = contentType;
}
+ private List<String> jsonAttributeValues;
+
+ public void setJsonAttributeValues( List<String> jsonAttributeValues )
+ {
+ this.jsonAttributeValues = jsonAttributeValues;
+ }
+
// -------------------------------------------------------------------------
// Action implementation
// -------------------------------------------------------------------------
@@ -165,7 +177,7 @@
else if ( external )
{
- if ( !( url.startsWith( HTTP_PREFIX ) || url.startsWith( HTTPS_PREFIX ) ) )
+ if ( !(url.startsWith( HTTP_PREFIX ) || url.startsWith( HTTPS_PREFIX )) )
{
url = HTTP_PREFIX + url;
}
@@ -183,6 +195,13 @@
documentService.saveDocument( document );
+ if ( jsonAttributeValues != null )
+ {
+ attributeService.updateAttributeValues( document, jsonAttributeValues );
+ }
+
+ documentService.saveDocument( document );
+
return SUCCESS;
}
}
=== modified file 'dhis-2/dhis-web/dhis-web-reporting/src/main/webapp/dhis-web-reporting/addDocumentForm.vm'
--- dhis-2/dhis-web/dhis-web-reporting/src/main/webapp/dhis-web-reporting/addDocumentForm.vm 2013-11-21 10:14:59 +0000
+++ dhis-2/dhis-web/dhis-web-reporting/src/main/webapp/dhis-web-reporting/addDocumentForm.vm 2015-11-26 04:29:05 +0000
@@ -3,7 +3,8 @@
validation( 'documentForm', function( form ){
form.submit();
},function(){
- });
+ #tblDynamicAttributesJavascript()
+ });
toggleExternal();
});
@@ -66,6 +67,8 @@
</table>
</div>
+#tblDynamicAttributes( { "attributes": $attributes, "attributeValues": $attributeValues } )
+
<table>
<tr>
<td colspan="2" height="7px"></td>