This commit is contained in:
venbatechnologies@gmail.com 2018-10-11 16:16:06 +05:30
parent 432f37582b
commit f3460b667f
3 changed files with 7 additions and 2 deletions

View File

@ -62,6 +62,9 @@ class Calltracking_model extends CI_Model {
$result_array['existLeadDetails'] = $leadDet;
}
}
// store lead,university and course details in comman array
//$result_array['universityDetails']=$this->getUniversityDetails($branchID);
$result_array['activityDetails']=$this->getActivityDetails($mobileNumber,$branchID);

View File

@ -356,6 +356,8 @@ app.controller('callTrackingCtrl', ["$scope","$rootScope","toaster", "$filter",
$scope.loading=false;
$scope.getLead = function (form,mobile) {
//call form success
if(form.mobilenumber.$valid){
$scope.loading=true;

View File

@ -185,7 +185,7 @@
<input type="text" placeholder="Enter STF/WR Amount"
autofocus tabindex="12" class="form-control" name="STF" id="STF" ng-maxlength="9"
ng-model="setModel.feesType.STFOrWR" ng-pattern="/^[0-9]*$/" ng-change="setFeesTotalAmount(setModel.feesType,'2',{{setModel.feesType}},'2');" ng-disabled="setModel.feesType.ExistValue=='1' && userType=='R002'" ng-readonly="readonlycheck"/>
ng-model="setModel.feesType.STFOrWR" ng-pattern="/^[0-9]*$/" ng-change="setFeesTotalAmount(setModel.feesType,'2',{{setModel.feesType}},'2');" ng-disabled="setModel.feesType.ExistValue=='1' && userType=='R002'"/>
<span class="error text-small block"
ng-if="Form.STF.$dirty && Form.STF.$invalid"
@ -202,7 +202,7 @@
<input type="text" placeholder="Enter Other Amount"
autofocus tabindex="13" class="form-control" name="others" id="others" ng-maxlength="9"
ng-model="setModel.feesType.Others" ng-pattern="/^[0-9]*$/" ng-change="setFeesTotalAmount(setModel.feesType,'2',{{setModel.feesType}},'2');" ng-disabled="setModel.feesType.ExistValue=='1' && userType=='R002'" ng-readonly="readonlycheck"/>
ng-model="setModel.feesType.Others" ng-pattern="/^[0-9]*$/" ng-change="setFeesTotalAmount(setModel.feesType,'2',{{setModel.feesType}},'2');" ng-disabled="setModel.feesType.ExistValue=='1' && userType=='R002'"/>
<span class="error text-small block"
ng-if="Form.others.$dirty && Form.others.$invalid"
ng-hide="Form.others.$error.maxlength || Form.others.$error.pattern">Others amount is required</span>