dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #38794
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 19701: PT program attr bug fixed.
------------------------------------------------------------
revno: 19701
committer: Jan Henrik Overland <janhenrik.overland@xxxxxxxxx>
branch nick: dhis2
timestamp: Mon 2015-08-03 12:54:58 +0200
message:
PT program attr bug fixed.
modified:
dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-pivot/scripts/app.js
--
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-apps/src/main/webapp/dhis-web-pivot/scripts/app.js'
--- dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-pivot/scripts/app.js 2015-07-15 16:23:18 +0000
+++ dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-pivot/scripts/app.js 2015-08-03 10:54:58 +0000
@@ -4395,7 +4395,7 @@
}
Ext.Ajax.request({
- url: ns.core.init.contextPath + '/api/programs.json?paging=false&fields=programTrackedEntityAttributes[trackedEntityAttribute[id,name]],programStages[programStageDataElements[dataElement[id,name,type]]]&filter=id:eq:' + programId,
+ url: ns.core.init.contextPath + '/api/programs.json?paging=false&fields=programTrackedEntityAttributes[trackedEntityAttribute[id,name,valueType]],programStages[programStageDataElements[dataElement[id,name,type]]]&filter=id:eq:' + programId,
success: function(r) {
r = Ext.decode(r.responseText);
@@ -4406,7 +4406,7 @@
teas = isO(program) && isA(program.programTrackedEntityAttributes) ? Ext.Array.pluck(program.programTrackedEntityAttributes, 'trackedEntityAttribute') : [],
dataElements = [],
attributes = [],
- types = ['int', 'number', 'string', 'bool', 'trueonly'],
+ types = ['int', 'string', 'bool', 'trueonly', 'number', 'optionSet'],
data;
// data elements
@@ -4426,7 +4426,7 @@
// attributes
for (i = 0; i < teas.length; i++) {
- if (Ext.Array.contains(types, (teas[i].type || '').toLowerCase())) {
+ if (Ext.Array.contains(types, (teas[i].valueType || '').toLowerCase())) {
attributes.push(teas[i]);
}
}