apollodec/Apollo/assets/views/edit_transferfee.html
venbatechnologies@gmail.com 4af8072068 feetransfer
2018-12-13 18:19:26 +05:30

123 lines
4.1 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>De-Active Courses</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" ng-if="item.IsActive==0" value="{{item.CourseID}}">{{item.CourseName}}-{{item.CourseCode}}</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 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;">BillAmount</th>
<!-- <th style="font-size: 12px;">Action</th> -->
</tr>
</thead>
<tbody dir-paginate="p in FeePaidDetails|filter:search:strict|itemsPerPage:10">
<tr>
<td>{{p.BillNO}}</td>
<td>{{p.BillDate}}</td>
<td>{{p.ModeOfPayment}}</td>
<td>{{p.BillAmount}}</td>
</tr>
</tbody>
</table>
<!-- </div> -->
<div class="row">
<div class="col-md-3 form-group">
<label>Active Courses</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}}</option>
</select>
</div>
<div class="col-md-3 form-group">
<label>Total Paid Fee</label>
<input type="text" tabindex="2" class="form-control" name="totalamount"
ng-model="updateModel.totalpaidfee" value="Totalfeepaid" readonly="true" />
</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>
</fieldset>
</div>
</div>
</div>
</form>