course details changes done
This commit is contained in:
parent
95b257b369
commit
47c4292dfa
@ -253,12 +253,14 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Fees Name</th>
|
||||
<th>Session Name</th>
|
||||
<th ng-if="course.feesDetails[0].ProgramType=='P001' || course.feesDetails[0].ProgramType=='P002'">Session From/Session To</th>
|
||||
<th ng-if="course.feesDetails[0].ProgramType=='Y001'">Session</th>
|
||||
<th>Roll Number</th>
|
||||
<th>Total Payable Fees</th>
|
||||
<th>Paid Fees</th>
|
||||
<th>Balance Fees</th>
|
||||
<th></th>
|
||||
<th></th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
@ -266,8 +268,8 @@
|
||||
<tr ng-repeat="fees in course.feesDetails">
|
||||
<td>
|
||||
<span>{{fees.FeesName}}</span></td>
|
||||
<td>
|
||||
<span>{{fees.SessionName}}</span></td>
|
||||
<td ng-if="course.feesDetails[0].ProgramType=='P001' || course.feesDetails[0].ProgramType=='P002'">{{fees.SessionName}}/{{fees.ToSessionName}}</td>
|
||||
<td ng-if="course.feesDetails[0].ProgramType=='Y001'">{{fees.SessionName}}</td>
|
||||
<td>
|
||||
<span>{{fees.RollNo}}</span></td>
|
||||
<td>
|
||||
@ -276,9 +278,14 @@
|
||||
<span>{{fees.PaidBillAmount}}</span></td>
|
||||
<td>
|
||||
<span>{{fees.BalanceAmount}}</span></td>
|
||||
<td>
|
||||
<a tooltip="Installment Details" ng-click="open(fees,'1')">
|
||||
<i class="fa fa-eye text-blue text-large"></i>
|
||||
</a> </span>
|
||||
</td>
|
||||
<td><span>
|
||||
<a tooltip="{{dynamicTooltip}}">
|
||||
<i class="fa fa-eye" ng-click="open(fees)"></i>
|
||||
<a tooltip="{{dynamicTooltip}}" ng-click="open(fees,'2')">
|
||||
<i class="fa fa-eye text-green text-large"></i>
|
||||
</a> </span>
|
||||
</td>
|
||||
</tr>
|
||||
@ -288,7 +295,29 @@
|
||||
<h4 class="modal-title">{{items.FeesName}} Details</h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<table class="table">
|
||||
<table class="table" class="table" ng-if="selectedtype=='1'">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Installemnt</th>
|
||||
<th>Amount</th>
|
||||
<th>Due Date</th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody ng-repeat="l in items.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>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user