course details changes done

This commit is contained in:
gandhimathi 2017-12-19 19:10:28 +05:30
parent 03798bd8c2
commit 06e22a5969

View File

@ -259,7 +259,7 @@
</div>
<div class="row">
<div class="row" ng-controller="ModalDemoCtrl">
<div class="col-md-12">
<div class="table-responsive">
@ -273,6 +273,7 @@
<th>Others</th>
<th>Waiver</th>
<th>Paid</th>
<th></th>
</tr>
</thead>
@ -285,8 +286,102 @@
<td>{{p.Others}}</td>
<td>{{p.Waiver}}</td>
<td>{{p.PaidBillAmount}}</td>
<td><span class="text-extra-large margin-bottom-10 block">
<a tooltip="{{dynamicTooltip}}">
<i class="fa fa-print" ng-click="open(p)"></i>
</a> </span>
</td>
</tr>
<script type="text/ng-template" id="myModalContent.html" style="width: 154%;margin-left: -24%;">
<div class="modal-header">
<h3 class="modal-title">Fees Details of {{items.FeesName}} </h3>
</div>
<div class="modal-body">
<table style="border:1px;width:100%">
<thead>
<tr><th>Bill NO</th>
<th>Bill Date</th>
<th>Bill Amount</th>
<th>Print</th></tr>
</thead>
<tbody>
<tr ng-repeat="v in items.paidDetails">
<td>{{v.BillNO}}</td>
<td>{{v.BillDate}}</td>
<td>{{v.BillAmount}}</td>
<td>
<a ng-mouseover="ShowHide(v)" ng-mouseleave="mouseLeave()" ng-click="ShowHide(v)" pdf-save-button="{{v.BillNO}}" pdf-name="Billno-{{v.BillNO}}.pdf" class="btn"><i class="fa fa-print"></i></a>
</td>
</tr>
</table>
<div pdf-save-content="{{BillNo}}" visible='showButton'>
<table style="border-collapse: collapse;color:black; !important" width="100%" border="1">
<tbody>
<tr style="height: 23px;">
<td style="width: 136px; height: 82px;" rowspan="3">LOGO</td>
<td style="width: 136px; height: 23px; text-align: center;" colspan="3"><strong>APOLLO DISTANCE EDUCATION COLLEGE</strong></td>
</tr>
<tr style="height: 23px;">
<td style="width: 136px; height: 23px; text-align: center;" colspan="3">(A Group of SVE Trust)</td>
</tr>
<tr style="height: 36px;">
<td style="width: 136px; height: 36px; text-align: center;" colspan="3">10/1, Frist Floor, Old Airport Road, Domlur, Bangalore - 560071. karnataka Land Mark - Opp to Domlur Bus Stop Ph:9620214554</td>
</tr>
<tr style="height: 24px;">
<td style="width: 136px; height: 24px; text-align: center;" colspan="3"><strong>FEES RECEIPT</strong></td>
<td style="width: 137px; height: 24px;">DOM: {{BillNo}}</td>
</tr>
<tr style="height: 24px;">
<td style="width: 136px; height: 24px;" colspan="3">Received From</td>
<td style="width: 137px; height: 24px;">Date:&nbsp;</td>
</tr>
<tr style="height: 24px;">
<td style="width: 136px; height: 24px;" colspan="2">Mr. /Mrs. /Miss:{{items.Firstname}}</td>
<td style="width: 137px; height: 24px;" colspan="2">Enrl.No:&nbsp;</td>
</tr>
<tr style="height: 24px;">
<td style="width: 136px; height: 24px;" colspan="2">S/o. /D/o. W/o. Mr. /Mrs:</td>
<td style="width: 137px; height: 24px;" colspan="2">Ph. No:</td>
</tr>
<tr style="height: 24px;">
<td style="width: 136px; height: 24px;">Course:{{items.CourseName}}</td>
<td style="width: 136px; height: 24px;">Sem: {{items.FeesName}}</td>
<td style="width: 137px; height: 24px;">Exam Cycle:&nbsp;</td>
<td style="width: 137px; height: 24px;">Univ:</td>
</tr>
<tr style="height: 24px;">
<td style="width: 136px; height: 24px;" colspan="4">Rupees In Words:&nbsp;</td>
</tr>
<tr style="height: 110px;">
<td style="width: 136px; height: 110px;"><strong>RS</strong>:</td>
<td style="width: 136px; height: 110px;" colspan="2">
<p>Cash / DD / Cheque&nbsp;No:</p>
<p>Payable At/base&nbsp;Branch:</p>
<p>Date: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Place:</p>
</td>
<td style="width: 137px; height: 110px;">For&nbsp;APOLLO DISTANCE EDUCATION COLLEGE&nbsp;</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="modal-footer">
<button class="btn btn-primary btn-o" ng-click="cancel()">Cancel</button>
</div>
</script>
</tbody>
</table>