apollodec/Apollo/assets/views/student/studentPaymentModal.html
2021-01-09 21:38:21 +05:30

66 lines
2.4 KiB
HTML
Executable File

<!-- start: UI BOOTSTRAP MODALS -->
<div class="container-fluid container-fullw bg-grey">
<!-- /// controller: 'ModalDemoCtrl' - localtion: assets/js/controllers/bootstrapCtrl.js /// -->
<div ng-controller="studentModalDemoCtrl">
<div class="row">
<div class="col-md-12">
<table class="table" class="table" ng-if="selectedtype=='1'">
<thead>
<tr>
<th>Installment</th>
<th>Amount</th>
<th>Due Date</th>
</tr>
</thead>
<tbody ng-repeat="l in items1.InstallmentDetails">
<tr>
<td>{{l.Name}}</td>
<td>{{l.Amount}}</td>
<td>{{l.DueDate}}</td>
</tr>
</tbody>
</table>
<table class="table" ng-if="selectedtype=='2'">
<thead>
<tr>
<th>Bill NO</th>
<th>Bill Amount</th>
<th>Bill Date</th>
<th>Receipt NO</th>
<th>Mode of Payment </th>
</tr>
</thead>
<tbody>
<tr ng-repeat="v in items1.paidDetails">
<td>{{v.BillNO}}</td>
<td>{{v.BillAmount}}</td>
<td>{{v.BillDate}}</td>
<td>{{v.ReceiptNo}}</td>
<td>{{v.ModeOfPayment}}</td>
</tr>
</table>
<ul ng-if="selectedtype=='3' && items1!=false" >
<li ng-repeat="bh in items1">
<div> <b>{{bh.UpdatedBy}}</b> &nbsp; Updated The Batch On &nbsp; {{bh.UpdatedOn}} &nbsp;&nbsp; <i>{{bh.ExistValue}}</i> &nbsp;&nbsp; into &nbsp;&nbsp; <i>{{bh.NewValue}}</i> </div>
</li>
</ul>
<center ng-if="selectedtype=='3' && items1==false" > Batch History Not Found </center>
</div>
</div>
</div>
</div>
</div>
<!-- end: UI BOOTSTRAP MODALS -->