Skip to content

Commit

Permalink
Hid Batch Requisition Approval related markup
Browse files Browse the repository at this point in the history
  • Loading branch information
ngraczewski committed Apr 24, 2018
1 parent ce163fb commit eec9c8e
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions src/requisition-approval/requisition-approval-list.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<h2>{{'requisitionApproval.approveRequisitions' | message}}</h2>
<h4>{{ 'requisitionApproval.instruction' | message }}</h4>
<div class="openlmis-table-container">
<form class="openlmis-table-filters" ng-submit="vm.search()">
<label for=program>{{'requisitionApproval.program' | message}}</label>
Expand All @@ -9,20 +8,12 @@ <h4>{{ 'requisitionApproval.instruction' | message }}</h4>
</select>
<input class="btn btn-primary" type="submit" value="{{'requisitionApproval.search' | message}}"/>
</form>
<h4>{{ 'requisitionApproval.select' | message }}</h4>
<ul>
<li><a ng-click="vm.toggleSelectAll(true)">{{'requisitionApproval.all' | message}}</a></li>
<li><a ng-click="vm.toggleSelectAll(false)">{{'requisitionApproval.none' | message}}</a></li>
</ul>
<table>
<caption ng-if="!vm.requisitions.length">
{{'requisitionApproval.noRnrPendingForApproval' | message}}
</caption>
<thead>
<tr>
<th class="col-sticky">
{{ 'requisitionApproval.approve' | message }}
</th>
<th>{{'requisitionApproval.program' | message}}</th>
<th>{{'requisitionApproval.facility' | message}}</th>
<th>{{'requisitionApproval.period' | message}}</th>
Expand All @@ -36,9 +27,6 @@ <h4>{{ 'requisitionApproval.select' | message }}</h4>
</thead>
<tbody>
<tr ng-repeat="requisition in vm.requisitions">
<td>
<input type="checkbox" ng-model="requisition.$selected">
</td>
<td>{{requisition.program.name}}</td>
<td>{{requisition.facility.code}} - {{requisition.facility.name}}</td>
<td>{{requisition.processingPeriod.name}}</td>
Expand All @@ -61,6 +49,3 @@ <h4>{{ 'requisitionApproval.select' | message }}</h4>
</table>
<openlmis-pagination/>
</div>
<div class="openlmis-toolbar" ng-if="vm.requisitions.length">
<button class="primary" ng-click="vm.viewSelectedRequisitions()">{{'requisitionApproval.viewSelectedRequisitions' | message}}</button>
</div>

0 comments on commit eec9c8e

Please sign in to comment.