dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #38785
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 19694: minor
------------------------------------------------------------
revno: 19694
committer: Markus Bekken <markus.bekken@xxxxxxxxx>
branch nick: dhis2
timestamp: Fri 2015-07-31 23:45:44 +0200
message:
minor
modified:
dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/scripts/services.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-tracker-capture/scripts/services.js'
--- dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/scripts/services.js 2015-07-13 07:37:11 +0000
+++ dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/scripts/services.js 2015-07-31 21:45:44 +0000
@@ -725,7 +725,11 @@
formattedTei.attributes = attributes;
var promise = $http.post( '../api/trackedEntityInstances' , formattedTei ).then(function(response){
return response.data;
- });
+ }, function(response) {
+ //Necessary now that import errors gives a 409 response from the server.
+ //The 409 response is treated as an error response.
+ return response.data;
+ });
return promise;
},
processAttributes: function(selectedTei, selectedProgram, selectedEnrollment){