call track lead details new changes done

This commit is contained in:
gandhimathi 2018-01-24 16:12:07 +05:30
parent 4982e58293
commit b7a238dbcd

View File

@ -32,13 +32,13 @@
</section>
<!-- end: PAGE TITLE -->
<!-- start: LIST GROUP -->
<div class="container-fluid container-fullw bg-white" ng-controller="callTrackingLeadCtrl" data-ng-init="init(viewForm,myModel)">
<div class="container-fluid container-fullw bg-white" ng-controller="callTrackingLeadCtrl" data-ng-init="init(myModel)">
<div class="row">
<div class="row">
<div data-ng-controller="DatepickerDemoCtrl">
<div class="col-md-3 form-group">
<label>
Select Date
Select Date
</label>
<input type="text"
class="form-control "
@ -51,14 +51,14 @@
datepicker-options="dateOptions"
placeholder="Select Date"
max-date="maxDate"
close-text="Close" ng-change="init(viewForm,myModel)"/>
close-text="Close" ng-change="checkDate(myModel)"/>
<input class="form-control" type="text" ng-model="myModel.search" id="search" autofocus placeholder="Search Date" ng-hide="hideDateSearch==true" />
</div>
</div>
</div>
</div>
<div class="table-responsive">
@ -68,6 +68,7 @@
<table class="table table-hover">
<thead>
<tr >
<th></th>
<th ng-click="sort('TrackingID')">Tracking ID
<span class="glyphicon sort-icon" ng-show="sortKey=='TrackingID'" ng-class="{'glyphicon-chevron-up':reverse,'glyphicon-chevron-down':!reverse}"></span>
</th>
@ -93,8 +94,14 @@
</tr>
</thead>
<tbody dir-paginate="p in data|orderBy:sortKey:reverse|filter:search:strict|filter:search2:strict| filter:search3:strict| filter:search4:strict| filter:search5:strict|itemsPerPage:10">
<tr ng-click="setEditId(p,'','','','','');">
<td><a class="text-orange" ng-click="setEditId(p,'','','','','');">{{p.TrackingID}}</a></td>
<tr>
<td ng-if="p.Flag==false">
<a class="glyphicon ng-scope fa margin-right-5 fa-thumbs-o-up text-grey text-extra-large" tooltip="Important" ng-click="markAsImportant(p.TrackingID,true);"></a>
</td>
<td ng-if="p.Flag==true">
<a class="glyphicon ng-scope fa margin-right-5 fa-thumbs-o-up text-purple text-extra-large" tooltip="Important" ng-click="markAsImportant(p.TrackingID,false);"></a>
</td>
<td><a class="text-orange" ng-click="setEditId(p,'','','','','',myModel.search);">{{p.TrackingID}}</a></td>
<td>{{p.followupDetails }}</td>
<td>{{p.LeadName}}</td>
<td>{{p.MobileNumber}}</td>
@ -142,4 +149,3 @@