fees changes in student enrolment
This commit is contained in:
parent
919425facf
commit
431a8c6eeb
@ -117,8 +117,16 @@
|
|||||||
</td>
|
</td>
|
||||||
<td>{{app.comments}}</td>
|
<td>{{app.comments}}</td>
|
||||||
<td>
|
<td>
|
||||||
<i class="fa fa-edit line-height-table" tooltip="Edit" (click)="editDocuments()"></i> |
|
<div *ngIf="app.feesStatus==1;else pending_content">
|
||||||
<i class="fa fa-money line-height-table" tooltip="Fees" (click)="feesModal.show();getFeesModelWindowDetails(app)"></i>
|
<i class="fa fa-edit line-height-table" tooltip="Edit" (click)="editDocuments()"></i> |
|
||||||
|
<i class="fa fa-money line-height-table text-success" tooltip="Fees" (click)="feesModal.show();getFeesModelWindowDetails(app)"></i>
|
||||||
|
</div>
|
||||||
|
<ng-template #pending_content>
|
||||||
|
<i class="fa fa-edit line-height-table" tooltip="Edit" (click)="editDocuments()"></i> |
|
||||||
|
<i class="fa fa-money line-height-table text-danger" tooltip="Fees" (click)="feesModal.show();getFeesModelWindowDetails(app)"></i>
|
||||||
|
</ng-template>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!--<i class="fa fa-eye" tooltip="View More" data-toggle="modal" (click)="myModal.show(); getModelWindowDetails(app)"></i>-->
|
<!--<i class="fa fa-eye" tooltip="View More" data-toggle="modal" (click)="myModal.show(); getModelWindowDetails(app)"></i>-->
|
||||||
</td>
|
</td>
|
||||||
@ -676,6 +684,7 @@
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="form-group col-sm-4">
|
<div class="form-group col-sm-4">
|
||||||
<label for="feesName">Fees Name <span class="danger">*</span></label>
|
<label for="feesName">Fees Name <span class="danger">*</span></label>
|
||||||
@ -717,6 +726,17 @@
|
|||||||
</div>
|
</div>
|
||||||
<!--/.col-->
|
<!--/.col-->
|
||||||
</div>
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<label class="text-info">Payable Amount : </label><span>25800</span>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-3">
|
||||||
|
<label class="text-success">Paid Amount : </label><span>25000</span>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-3">
|
||||||
|
<label class="text-danger">Balance Amount : </label><span>800</span>
|
||||||
|
</div>
|
||||||
|
</div><!--/.row-->
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button type="button" class="btn btn-secondary" (click)="feesModal.hide()">Close</button>
|
<button type="button" class="btn btn-secondary" (click)="feesModal.hide()">Close</button>
|
||||||
|
|||||||
@ -29,6 +29,7 @@ export class StudentComponent implements OnInit {
|
|||||||
batch: 'Jan 2018',
|
batch: 'Jan 2018',
|
||||||
status: 'Send To Univ',
|
status: 'Send To Univ',
|
||||||
comments: 'approved by Univ',
|
comments: 'approved by Univ',
|
||||||
|
feesStatus: 0,
|
||||||
feesDetails:[
|
feesDetails:[
|
||||||
{
|
{
|
||||||
feesName:"Tution Fees",
|
feesName:"Tution Fees",
|
||||||
@ -54,6 +55,7 @@ export class StudentComponent implements OnInit {
|
|||||||
batch: 'Jan 2018',
|
batch: 'Jan 2018',
|
||||||
status: 'Approved by Univ',
|
status: 'Approved by Univ',
|
||||||
comments: 'approved by Univ',
|
comments: 'approved by Univ',
|
||||||
|
feesStatus: 1,
|
||||||
feesDetails:[
|
feesDetails:[
|
||||||
{
|
{
|
||||||
feesName:"Tution Fees",
|
feesName:"Tution Fees",
|
||||||
@ -79,6 +81,7 @@ export class StudentComponent implements OnInit {
|
|||||||
batch: 'Jan 2018',
|
batch: 'Jan 2018',
|
||||||
status: 'rejected by Univ',
|
status: 'rejected by Univ',
|
||||||
comments: 'rejected by Univ',
|
comments: 'rejected by Univ',
|
||||||
|
feesStatus: 1,
|
||||||
feesDetails:[
|
feesDetails:[
|
||||||
{
|
{
|
||||||
feesName:"Tution Fees",
|
feesName:"Tution Fees",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user