Skip to content

Commit

Permalink
BAH-3507 | Add. configuration property to hide doctor name in patient…
Browse files Browse the repository at this point in the history
… info print. | [Deepti/Sweety/Mohan] (Bahmni#825)
  • Loading branch information
deeptirawat1510 authored Jan 26, 2024
1 parent 4f76b8a commit 233d56d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/app/clinical/common/views/patientInfoPrint.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
<tr ng-switch-when="true">
<td colspan="3">Visit Date: <span class="value">{{(visitDate | bahmniDate) || (visitSummary.startDateTime | bahmniDate)}}</span></td>
</tr>
<tr ng-switch-default>
<tr ng-switch-default ng-repeat="section in visitTabConfig.currentTab.sections" ng-if="section.type === 'patientInformation'">
<td colspan="2">Visit Date: <span class="value">{{(visitDate | bahmniDate) || (visitSummary.startDateTime | bahmniDate)}}</span></td>
<td>Doctor Name:
<td ng-if="!section.config.hideProviderName">Doctor Name:
<span ng-show="providerNames || drugOrders[drugOrders.length-1].provider.name" class="ng-binding">
{{providerNames ? providerNames : drugOrders[drugOrders.length-1].provider.name }}
</span>
Expand Down

0 comments on commit 233d56d

Please sign in to comment.