201 lines
7.7 KiB
HTML
201 lines
7.7 KiB
HTML
<form name="Form" id="form" novalidate>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="col-md-12">
|
|
<fieldset>
|
|
<legend>
|
|
Course Fee Details
|
|
</legend>
|
|
|
|
|
|
<div class="col-md-3 form-group">
|
|
<label>Fee Transfering from</label>
|
|
<select class="form-control" tabindex="3" class="cs-select cs-skin-elastic" name="university" ng-model="myModel.deActivecourse"
|
|
ng-click="getpaidFeeDetails(myModel,p)">
|
|
|
|
<option value="" selected>Select</option>
|
|
<option ng-repeat="item in feeInfo" value="{{item.CourseID}}">{{item.CourseName}}-{{item.CourseCode}}({{item.UniversityName}})</option>
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
|
<!-- <div ng-if="feedetstatus==false">
|
|
<h4>{{FeeDetailsText}}</h4>
|
|
|
|
</div> -->
|
|
|
|
<!-- <div ng-if="feedetstatus==true"> -->
|
|
<table id="datatable" class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th style="font-size: 12px;">BillNO</th>
|
|
<th style="font-size: 12px;">BillDate</th>
|
|
<th style="font-size: 12px;">Sem/Year</th>
|
|
<th style="font-size: 12px">ModeOfPayment</th>
|
|
<th style="font-size: 12px;">BillAmount</th>
|
|
<!-- <th style="font-size: 12px;">Action</th> -->
|
|
</tr>
|
|
</thead>
|
|
<tbody dir-paginate="p in FeePaidDetails|filter:search:strict|itemsPerPage:10">
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<input type="checkbox" ng-checked="" id="{{p.ID}}" name="{{p.ID}}" class="form-control" ng-click="isClick($event)"/>
|
|
</td>
|
|
|
|
<td>{{p.BillNO}}</td>
|
|
<td>{{p.BillDate}}</td>
|
|
<td>{{p.Sem_Year}}</td>
|
|
<td>{{p.ModeOfPayment}}</td>
|
|
<td>{{p.BillAmount}}</td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
<!-- </div> -->
|
|
<!-- {{feeInfo}} -->
|
|
|
|
<div class="row">
|
|
<div class="col-md-3 form-group">
|
|
<label>Fee Transfering to</label>
|
|
<select class="form-control" tabindex="3" class="cs-select cs-skin-elastic" name="university" ng-model="myModel.Activecourse"
|
|
ng-click="getTotalFeePaid(myModel,p)">
|
|
|
|
<option value="" selected>Select</option>
|
|
<option ng-repeat="item in feeInfo" ng-if="item.IsActive==1" value="{{item.CourseID}}">{{item.CourseName}}-{{item.CourseCode}}({{item.UniversityName}})</option>
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="col-md-3 form-group">
|
|
<label>Semester to fee transfer</label>
|
|
|
|
<!-- <input type="text" tabindex="2" class="form-control" name="totalamount"
|
|
ng-model="updateModel.totalpaidfee" value="Totalfeepaid" readonly="true" /> -->
|
|
|
|
<select class="form-control" tabindex="3" class="cs-select cs-skin-elastic" name="totalamount" ng-model="myModel.totalpaidfee"
|
|
n>
|
|
|
|
<option value="" selected>Select</option>
|
|
<option ng-repeat="fee in Totalfeepaid|unique:'FeesID'" value="{{fee.FeesID}}">{{fee.Sem_Year}}</option>
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
|
<div class="col-md-3 form-group">
|
|
<label>Transfering Amount</label>
|
|
|
|
<input type="text" tabindex="2" class="form-control" name="transferamount"
|
|
ng-model="updateModel.transferamount" value="TransferAmt" readonly="true" />
|
|
<span class="error text-small block" ng-if="Form.transferamount.$dirty && Form.transferamount.$error.pattern">Invalid Amount </span>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="col-md-2" style="padding-top: 2.3%;">
|
|
<div class="pull-right">
|
|
<button type="submit" ng-click="getTransferFee(myModel,p,updateModel);" class="btn btn-success btn-o" tabindex="8">Transfer Fee</button>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<table id="datatable" class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
|
|
<th style="font-size: 12px;">BillNO</th>
|
|
<th style="font-size: 12px;">BillDate</th>
|
|
<th style="font-size: 12px">ModeOfPayment</th>
|
|
<th style="font-size: 12px;">Total Amount</th>
|
|
<th style="font-size: 12px;">Amount Paid</th>
|
|
<th style="font-size: 12px;">Sem/Year<span ng-if="p.balpayable >=0"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody dir-paginate="p in Totalfeepaid|filter:search:strict|itemsPerPage:10">
|
|
<tr>
|
|
|
|
|
|
|
|
<td>
|
|
<span ng-if="p.BillNO !=null">{{p.BillNO}}</span>
|
|
<span ng-if="p.BillNO == null">No data</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
<span ng-if="p.BillDate !=null"> {{p.BillDate}}</span>
|
|
<span ng-if="p.BillDate ==null"> No Data</span>
|
|
</td>
|
|
|
|
<td>
|
|
<span ng-if="p.ModeOfPayment !=null">{{p.ModeOfPayment}}</span>
|
|
<span ng-if="p.ModeOfPayment ==null">No Data</span>
|
|
</td>
|
|
|
|
<td>
|
|
<span ng-if="p.CourseFees !=null">{{p.CourseFees}}</span>
|
|
<span ng-if="p.CourseFees ==null">No Data</span>
|
|
</td>
|
|
|
|
<td>
|
|
<span ng-if="p.BillAmount !=null">{{p.BillAmount}}</span>
|
|
<span ng-if="p.BillAmount ==null">No Data</span>
|
|
</td>
|
|
|
|
<td>
|
|
<span ng-if="p.Sem_Year !=null">{{p.Sem_Year}}</span>
|
|
<span ng-if="p.Sem_Year ==null">No Data</span>
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</form> |