← Back to team overview

dhis2-devs team mailing list archive

[Branch ~dhis2-devs-core/dhis2/trunk] Rev 14258: [mobile]option for data set completeness in sms reporting (WIP)

 

------------------------------------------------------------
revno: 14258
committer: Long <long.hispvietnam@xxxxxxxxx>
branch nick: trunk
timestamp: Mon 2014-03-17 21:29:24 +0700
message:
  [mobile]option for data set completeness in sms reporting (WIP)
modified:
  dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-mobile/src/main/resources/org/hisp/dhis/mobile/i18n_module.properties
  dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-mobile/src/main/webapp/dhis-web-maintenance-mobile/smscommand/edit-sms-command.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-maintenance/dhis-web-maintenance-mobile/src/main/resources/org/hisp/dhis/mobile/i18n_module.properties'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-mobile/src/main/resources/org/hisp/dhis/mobile/i18n_module.properties	2014-03-11 08:23:00 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-mobile/src/main/resources/org/hisp/dhis/mobile/i18n_module.properties	2014-03-17 14:29:24 +0000
@@ -139,3 +139,7 @@
 wrong_format_message=Wrong format message
 no_user_message=No user message
 more_than_one_orgunit_message=User belong to more than one OrgUnit message
+completeness_method=Completeness method
+receive_at_least_one_datavalue=Receive at least one data value
+receive_all_compulsory_datavalue=Receive all compulsory data value
+receive_all_datavalue=Receive all data value
\ No newline at end of file

=== modified file 'dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-mobile/src/main/webapp/dhis-web-maintenance-mobile/smscommand/edit-sms-command.vm'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-mobile/src/main/webapp/dhis-web-maintenance-mobile/smscommand/edit-sms-command.vm	2014-03-11 08:23:00 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-mobile/src/main/webapp/dhis-web-maintenance-mobile/smscommand/edit-sms-command.vm	2014-03-17 14:29:24 +0000
@@ -132,7 +132,16 @@
 			<td>$i18n.getString( "dataset" )</td>
 			<td>#if($smsCommand.dataset.name) $smsCommand.dataset.name #end</td>
 		</tr>
-		
+		<tr>
+		<td>$i18n.getString( "completeness_method" )</td>
+			<td>
+				<select>
+					<option>$i18n.getString( "receive_at_least_one_datavalue" )</option>
+					<option>$i18n.getString( "receive_all_compulsory_datavalue" )</option>
+					<option>$i18n.getString( "receive_all_datavalue" )</option>
+				</select>
+			</td>
+		</tr>
 		<tr>
 	       <td>Use current period for reporting</td>
 		   <td><input type="checkbox" name="currentPeriodUsedForReporting" #if($smsCommand.currentPeriodUsedForReporting) checked #end /></td>