dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #39869
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 20206: adaptation of new type code
------------------------------------------------------------
revno: 20206
committer: Markus Bekken <markus.bekken@xxxxxxxxx>
branch nick: dhis2
timestamp: Thu 2015-09-17 13:18:51 +0200
message:
adaptation of new type code
modified:
dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/components/dataentry/dataentry-controller.js
dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/components/dataentry/dataentry.html
dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/components/dataentry/default-form.html
dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/index.html
--
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/components/dataentry/dataentry-controller.js'
--- dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/components/dataentry/dataentry-controller.js 2015-09-15 17:16:30 +0000
+++ dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/components/dataentry/dataentry-controller.js 2015-09-17 11:18:51 +0000
@@ -453,12 +453,12 @@
});
$scope.customForm = CustomFormService.getForProgramStage($scope.currentStage, $scope.prStDes);
- $scope.displayCustomForm = "default";
+ $scope.displayCustomForm = "DEFAULT";
if ($scope.customForm) {
- $scope.displayCustomForm = "custom";
+ $scope.displayCustomForm = "CUSTOM";
}
else if ($scope.currentStage.displayEventsInTable) {
- $scope.displayCustomForm = "table";
+ $scope.displayCustomForm = "TABLE";
}
$scope.currentEventOriginal = angular.copy($scope.currentEvent);
=== modified file 'dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/components/dataentry/dataentry.html'
--- dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/components/dataentry/dataentry.html 2015-09-17 05:52:20 +0000
+++ dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/components/dataentry/dataentry.html 2015-09-17 11:18:51 +0000
@@ -79,7 +79,7 @@
<div ng-if="currentEvent">
<!-- event dates/scheduling begin -->
- <div class="row" ng-if="(displayCustomForm !== 'table') && !currentStage.periodType">
+ <div class="row" ng-if="(displayCustomForm !== 'TABLE') && !currentStage.periodType">
<div class="col-md-6">
{{currentEvent.reportDateDescription}}
@@ -155,7 +155,7 @@
<div class="clear vertical-spacing" ng-if="displayCustomForm === 'DEFAULT'" ng-include="'components/dataentry/default-form.html'"></div>
</div>
<!-- the table form is insensitive to the event date being present. In this situation the eventdate is set inside the table form -->
- <div class="clear vertical-spacing" ng-if="displayCustomForm === 'table'" ng-include="'components/dataentry/table-entry-form.html'"></div>
+ <div class="clear vertical-spacing" ng-if="displayCustomForm === 'TABLE'" ng-include="'components/dataentry/table-entry-form.html'"></div>
<!-- data entry form ends -->
=== modified file 'dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/components/dataentry/default-form.html'
--- dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/components/dataentry/default-form.html 2015-09-17 09:03:52 +0000
+++ dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/components/dataentry/default-form.html 2015-09-17 11:18:51 +0000
@@ -1,5 +1,4 @@
<form name="outerForm" novalidate>
-
<table class="dhis2-list-table-striped" ng-if='currentEvent && !currentStage.programStageSections.length'>
<thead>
<tr>
=== modified file 'dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/index.html'
--- dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/index.html 2015-09-11 15:16:03 +0000
+++ dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/index.html 2015-09-17 11:18:51 +0000
@@ -92,7 +92,7 @@
<script type="text/javascript" src="../dhis-web-commons/javascripts/angular/plugins/angular-translate.min.js"></script>
<script type="text/javascript" src="../dhis-web-commons/javascripts/angular/plugins/ng-infinite-scroll.js"></script>
<script type="text/javascript" src="../dhis-web-commons/javascripts/dhis2/dhis2.angular.directives.js"></script>
- <script type="text/javascript" src="../dhis-web-commons/javascripts/dhis2/dhis2.angular.services.js"></script>
+ <script type="text/javascript" src="scripts/dhis2.angular.services.js"></script>
<script type="text/javascript" src="../dhis-web-commons/javascripts/dhis2/dhis2.angular.validations.js"></script>
<script type="text/javascript" src="../dhis-web-commons/javascripts/dhis2/dhis2.angular.filters.js"></script>
<script type="text/javascript" src="../dhis-web-commons/javascripts/dhis2/dhis2.angular.controllers.js"></script>