Skip to content

Commit

Permalink
"Sreelekha | MOBN-2437 | Update the ipd dashboard to be visible for A…
Browse files Browse the repository at this point in the history
…mman First type validation visit "
  • Loading branch information
SreelekhaDarsi committed Jul 24, 2024
1 parent 60bf812 commit c706765
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,7 @@ angular.module('bahmni.clinical')
var showRulesInMedication = function (medicationConfig) {
$scope.showRulesInMedication = false;
if (medicationConfig !== 'undefined' && medicationConfig.tabConfig !== 'undefined' && medicationConfig.tabConfig.medicationTabConfig
!== 'undefined' && medicationConfig.tabConfig.medicationTabConfig.orderSet !== 'undefined') {
!== 'undefined' && medicationConfig.tabConfig.medicationTabConfig.orderSet !== undefined) {
if (medicationConfig.tabConfig.medicationTabConfig.orderSet.showRulesInMedication) {
$scope.showRulesInMedication = true;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ angular.module('bahmni.clinical')
if ($scope.$parent.closeThisDialog) {
$scope.$parent.closeThisDialog("closing modal");
}
if (visit.visitType.display === "IPD" && enableIPDFeature) {
if (visit.visitType.display === "First Stage Validation" && enableIPDFeature) {

Check failure on line 15 in ui/app/clinical/displaycontrols/allvisits/directives/visitsTable.js

View workflow job for this annotation

GitHub Actions / Build & Publish Docker Image

Multiple spaces found before '&&'
$state.go('patient.dashboard.ipdVisit', {visitUuid: visit.uuid, source: 'clinical'});
} else {
$state.go('patient.dashboard.visit', {visitUuid: visit.uuid});
Expand Down

0 comments on commit c706765

Please sign in to comment.