receive fee display

This commit is contained in:
venbatechnologies@gmail.com 2018-09-28 15:13:53 +05:30
parent 2c5c20701c
commit dd894daac6
2 changed files with 5 additions and 2 deletions

View File

@ -814,6 +814,9 @@ app.controller('feesStatusCtrl', ["$scope","$rootScope","toaster", "$filter", "n
"date":$filter('date')(new Date(), 'dd-MM-yyyy')
};
//console.log($scope.updateModel);
/* $scope.billCurrentDate=$filter('date')(new Date(), 'dd-MM-yyyy');
alert($scope.billCurrentDate);*/

View File

@ -189,7 +189,7 @@
<input type="text" placeholder="Enter Total Amount"
autofocus tabindex="15" class="form-control" name="total" id="total" ng-maxlength="9"
ng-model="updateModel.feesType.BalanceAmount" ng-pattern="/^[0-9]*$/" readonly/>
ng-model="updateModel.feesType.PayableFees" ng-pattern="/^[0-9]*$/" readonly/>
<span class="error text-small block"
ng-if="Form.total.$dirty && Form.total.$invalid"
ng-hide="Form.total.$error.maxlength || Form.total.$error.pattern">Total amount is required</span>
@ -283,7 +283,7 @@
<input type="text" placeholder="Enter Fees Amount"
autofocus tabindex="19" class="form-control" name="billAmount" id="billAmount" ng-maxlength="9"
ng-model="updateModel.billAmount" ng-pattern="/^[0-9]*$/" required/>
<b><span style="font-size: 11px;color:red;">Total Payable:</span><span style="font-size: 11px;color: black;">Rs.{{payableAmtInfo}}</span></b>
<b><span style="font-size: 11px;color:red;">Balance Payable Fee:</span><span style="font-size: 11px;color: black;">Rs.{{payableAmtInfo}}</span></b>
<span class="error text-small block"
ng-if="Form.billAmount.$dirty && Form.billAmount.$invalid"
ng-hide="Form.billAmount.$error.maxlength || Form.billAmount.$error.pattern">Bill amount is required</span>