course details changes done
This commit is contained in:
parent
f3b46277f6
commit
b0115cc3d2
@ -16,7 +16,7 @@
|
||||
<label>
|
||||
Fees Type <span class="symbol required"></span>
|
||||
</label>
|
||||
<select class="form-control" name="feesType" tabindex="3" id="feesType"
|
||||
<select class="form-control" name="feesType" tabindex="7" id="feesType"
|
||||
ng-model="updateModel.feesType"
|
||||
ng-options="fees.Sem_Year for fees in studentFeesInfo"
|
||||
required ng-change="changeTotalFees(updateModel,'0');">
|
||||
@ -32,7 +32,7 @@
|
||||
</label>
|
||||
|
||||
<input type="text" placeholder="Enter Session Name"
|
||||
tabindex="4" class="form-control" name="sessionname"
|
||||
tabindex="8" class="form-control" name="sessionname"
|
||||
ng-model="updateModel.sessionName" ng-pattern="/^[a-zA-Z0-9-./\s]*$/" required />
|
||||
<span class="error text-small block"
|
||||
ng-if="Form.sessionname.$dirty && Form.sessionname.$error.required">Session name is required</span>
|
||||
@ -49,7 +49,7 @@
|
||||
</label>
|
||||
|
||||
<input type="text" placeholder="Enter Fees Amount"
|
||||
autofocus tabindex="5" class="form-control" name="feesAmount" id="feesAmount" ng-maxlength="9"
|
||||
autofocus tabindex="9" class="form-control" name="feesAmount" id="feesAmount" ng-maxlength="9"
|
||||
ng-model="updateModel.feesType.PendingFees" ng-pattern="/^[0-9]*$/" required ng-change="changeTotalFees(updateModel,'1');"/>
|
||||
<span class="error text-small block"
|
||||
ng-if="Form.feesAmount.$dirty && Form.feesAmount.$invalid"
|
||||
@ -65,7 +65,7 @@
|
||||
</label>
|
||||
|
||||
<input type="text" placeholder="Enter STF/WR Amount"
|
||||
autofocus tabindex="6" class="form-control" name="STF" id="STF" ng-maxlength="9"
|
||||
autofocus tabindex="10" class="form-control" name="STF" id="STF" ng-maxlength="9"
|
||||
ng-model="updateModel.STF_WR" ng-pattern="/^[0-9]*$/" ng-change="changeTotalFees(updateModel,'1');" />
|
||||
<span class="error text-small block"
|
||||
ng-if="Form.STF.$dirty && Form.STF.$invalid"
|
||||
@ -81,7 +81,7 @@
|
||||
</label>
|
||||
|
||||
<input type="text" placeholder="Enter Other Amount"
|
||||
autofocus tabindex="7" class="form-control" name="others" id="others" ng-maxlength="9"
|
||||
autofocus tabindex="11" class="form-control" name="others" id="others" ng-maxlength="9"
|
||||
ng-model="updateModel.others" ng-pattern="/^[0-9]*$/" ng-change="changeTotalFees(updateModel,'1');"/>
|
||||
<span class="error text-small block"
|
||||
ng-if="Form.others.$dirty && Form.others.$invalid"
|
||||
@ -97,7 +97,7 @@
|
||||
</label>
|
||||
|
||||
<input type="text" placeholder="Enter Waiver Amount"
|
||||
autofocus tabindex="8" class="form-control" name="waiver" id="waiver" ng-maxlength="9"
|
||||
autofocus tabindex="12" class="form-control" name="waiver" id="waiver" ng-maxlength="9"
|
||||
ng-model="updateModel.waiver" ng-pattern="/^[0-9]*$/" ng-change="changeTotalFees(updateModel,'1');"/>
|
||||
<span class="error text-small block"
|
||||
ng-if="Form.waiver.$dirty && Form.waiver.$invalid"
|
||||
@ -113,7 +113,7 @@
|
||||
</label>
|
||||
|
||||
<input type="text" placeholder="Enter Total Amount"
|
||||
autofocus tabindex="9" class="form-control" name="total" id="total" ng-maxlength="9"
|
||||
autofocus tabindex="13" class="form-control" name="total" id="total" ng-maxlength="9"
|
||||
ng-model="updateModel.total" ng-pattern="/^[0-9]*$/"/>
|
||||
<span class="error text-small block"
|
||||
ng-if="Form.total.$dirty && Form.total.$invalid"
|
||||
@ -173,7 +173,7 @@
|
||||
</label>
|
||||
|
||||
<input type="text" placeholder="Enter Bill No"
|
||||
tabindex="10" class="form-control" name="billno"
|
||||
tabindex="14" class="form-control" name="billno"
|
||||
ng-model="updateModel.billNo" ng-pattern="/^[a-zA-Z0-9-./\s]*$/" required/>
|
||||
<span class="error text-small block"
|
||||
ng-if="Form.billno.$dirty && Form.billno.$error.required">Bill no is required</span>
|
||||
@ -187,7 +187,7 @@
|
||||
</label>
|
||||
|
||||
<input type="text" placeholder="Enter Fees Amount"
|
||||
autofocus tabindex="11" class="form-control" name="billAmount" id="billAmount" ng-maxlength="9"
|
||||
autofocus tabindex="15" class="form-control" name="billAmount" id="billAmount" ng-maxlength="9"
|
||||
ng-model="updateModel.billAmount" ng-pattern="/^[0-9]*$/" required/>
|
||||
<span class="error text-small block"
|
||||
ng-if="Form.billAmount.$dirty && Form.billAmount.$invalid"
|
||||
@ -202,7 +202,7 @@
|
||||
<label>
|
||||
Mode Of Payment <span class="symbol required"></span>
|
||||
</label>
|
||||
<select class="form-control" name="paymentOn" tabindex="12" id="paymentOn"
|
||||
<select class="form-control" name="paymentOn" tabindex="16" id="paymentOn"
|
||||
ng-model="updateModel.paymentOn"
|
||||
ng-options="payment.paymentOn for payment in paymentOptions"
|
||||
required>
|
||||
@ -217,7 +217,7 @@
|
||||
<label>
|
||||
Comments For Student
|
||||
</label>
|
||||
<textarea placeholder="Enter Comments" tabindex="13"
|
||||
<textarea placeholder="Enter Comments" tabindex="17"
|
||||
class="form-control textdsc" name="studcomments"
|
||||
ng-model="updateModel.studComments" required></textarea>
|
||||
<!--<span class="error text-small block"
|
||||
@ -230,7 +230,7 @@
|
||||
<label>
|
||||
Comments For Internal
|
||||
</label>
|
||||
<textarea placeholder="Enter Comments" tabindex="14"
|
||||
<textarea placeholder="Enter Comments" tabindex="18"
|
||||
class="form-control textdsc" name="internalcomments"
|
||||
ng-model="updateModel.internalComments" required></textarea>
|
||||
<!--<span class="error text-small block"
|
||||
@ -289,11 +289,11 @@
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="pull-right">
|
||||
<button type="submit" ladda="ldloading.zoom_in" tabindex="15" class="btn btn-wide btn-success" data-style="zoom-in" ng-click="saveFees(user,Form,updateModel,'zoom-in')">
|
||||
<button type="submit" ladda="ldloading.zoom_in" tabindex="19" class="btn btn-wide btn-success" data-style="zoom-in" ng-click="saveFees(user,Form,updateModel,'zoom-in')">
|
||||
Save
|
||||
</button>
|
||||
|
||||
<input type="button" class="btn btn-warning btn-wide" tabindex="16" value="Cancel"
|
||||
<input type="button" class="btn btn-warning btn-wide" tabindex="20" value="Cancel"
|
||||
ng-click="cancel();">
|
||||
|
||||
</input>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user