=== modified file 'dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/components/dataentry/dataentry-notes.html' --- dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/components/dataentry/dataentry-notes.html 2016-02-04 10:43:43 +0000 +++ dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/components/dataentry/dataentry-notes.html 2016-03-08 15:39:09 +0000 @@ -1,7 +1,7 @@

- +
+
{{'not_yet_enrolled_note'| translate}}
- +
@@ -64,10 +65,44 @@
{{'no_notes_exist'| translate}}
-
-
-
{{'under_construction'| translate}}
-
-
+
+
+ + + +
+
+
+ + {{'required'| translate}} + + {{'required'| translate}} +
+ + +
+
+
+
+ +
=== modified file 'dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/i18n/i18n_app.properties' --- dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/i18n/i18n_app.properties 2016-03-08 13:58:39 +0000 +++ dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/i18n/i18n_app.properties 2016-03-08 15:39:09 +0000 @@ -92,7 +92,9 @@ add=Add add_note=Add note search_note=Search notes -add_new_note_here=Add new note here +your_note_here=Your note here +your_sms_message_here=Your SMS message here +sms_send_status=SMS sending status add_new_event=Add new event skip=Skip unskip=Schedule back === modified file 'dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/i18n/i18n_app_ar.properties' --- dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/i18n/i18n_app_ar.properties 2016-01-07 21:16:02 +0000 +++ dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/i18n/i18n_app_ar.properties 2016-03-08 15:39:09 +0000 @@ -67,7 +67,7 @@ add=\u0623\u0636\u0641 add_note=\u0623\u0636\u0641 \u0645\u0644\u0627\u062d\u0638\u0629 search_note=\u0627\u0628\u062d\u062b \u0639\u0646 \u0645\u0644\u0627\u062d\u0638\u0627\u062a -add_new_note_here=\u0627\u0636\u0641 \u0645\u0644\u0627\u062d\u0638\u0629 \u062c\u062f\u064a\u062f\u0629 \u0647\u0646\u0627 +your_note_here=\u0627\u0636\u0641 \u0645\u0644\u0627\u062d\u0638\u0629 \u062c\u062f\u064a\u062f\u0629 \u0647\u0646\u0627 skipped=\u0645\u062a\u062e\u0637\u0649 skip=\u062a\u062e\u0637\u0649 unskip=\u062c\u062f\u0648\u0644\u0629 \u0633\u0627\u0628\u0642\u0629 === modified file 'dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/i18n/i18n_app_in_ID.properties' --- dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/i18n/i18n_app_in_ID.properties 2016-02-22 09:05:13 +0000 +++ dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/i18n/i18n_app_in_ID.properties 2016-03-08 15:39:09 +0000 @@ -298,6 +298,6 @@ add=Tambah add_note=Tambah catatan search_note=Cari catatan -add_new_note_here=Tambah catatan baru disini +your_note_here=Tambah catatan baru disini unskip=Jadwal ulang complete=Lengkap === 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 2016-02-19 09:24:20 +0000 +++ dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/scripts/services.js 2016-03-08 15:39:09 +0000 @@ -1962,3 +1962,14 @@ this.eventCreationActions = { add: 'ADD', schedule: 'SCHEDULE', referral: 'REFERRAL'}; }) +.service('MessagingService', function($http){ + return { + sendSmsMessage: function(message){ + var promise = $http.post('../api/sms/outbound', message).then(function(response){ + return response.data; + }); + return promise; + } + }; +}); +