121 lines
3.6 KiB
HTML
121 lines
3.6 KiB
HTML
<style>
|
|
b.fa {
|
|
display: inline-block;
|
|
border-radius: 60px;
|
|
box-shadow: 0px 0px 2px #FF6600;
|
|
padding: 0.5em 0.6em;
|
|
|
|
|
|
}
|
|
b.fa1 {
|
|
display: inline-block;
|
|
border-radius: 60px;
|
|
box-shadow: 0px 0px 2px green;
|
|
padding: 0.5em 0.6em;
|
|
|
|
|
|
}
|
|
.listCoutShow {
|
|
margin: 12px;
|
|
padding: 4px;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
border: 1px solid #46b8da;
|
|
border-radius: 7px;
|
|
color: #FFF;
|
|
background-color: #46b8da;
|
|
text-align: center;
|
|
}
|
|
|
|
</style>
|
|
<!-- start: PAGE TITLE -->
|
|
<section id="page-title">
|
|
<div class="row">
|
|
<div class="col-sm-8">
|
|
|
|
<h1 class="mainTitle" translate="Staff lead details">{{ mainTitle }}</h1>
|
|
|
|
<span class="mainDescription">Staffwise leads. </span>
|
|
|
|
</div>
|
|
<!-- <div ncy-breadcrumb></div>-->
|
|
</div>
|
|
</section>
|
|
<!-- end: PAGE TITLE -->
|
|
|
|
<div class="container-fluid container-fullw bg-white" ng-controller="staffleadCtrl" data-ng-init="init(myModel)">
|
|
|
|
<div class="row">
|
|
<tabset class="tabbable">
|
|
<tab heading="Staffwise Leads" id="viewdet">
|
|
<div class="container-fluid container-fullw">
|
|
<div class="row">
|
|
<div class="col-md-3" data-ng-controller="DatepickerDemoCtrl">
|
|
<label> Date </label>
|
|
<input type="text" tabindex="1" class="form-control " ng-click="startOpen = !startOpen" datepicker-popup="dd-MM-yyyy" ng-model="filters.to_date"
|
|
is-open="startOpen" ng-init="startOpen = false" name="addDate" datepicker-options="dateOptions" placeholder="Select Date" close-text="Close" required="required" ng-change="changeDate()" show-button-bar="true" />
|
|
|
|
</div>
|
|
|
|
<div class="col-md-3">
|
|
<label for="form-field-select-2">Search</label>
|
|
<input class="form-control" type="text" ng-model="search" id="searchIn" autofocus tabindex="2" placeholder="Search" /><br><br>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div></br></div>
|
|
|
|
<div class="col-md-12">
|
|
<div ng-if="calldata">
|
|
<center> <h1>No Records Found !!</h1> </center>
|
|
</div>
|
|
</div>
|
|
<!-- {{staffdet}} {{p.AssignedStaff}} -->
|
|
<div ng-if="callnodata">
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>S.No</th>
|
|
<th>Staff Name</th>
|
|
<th>Call Count</th>
|
|
<th>Details</th>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody dir-paginate="p in SatffCountDetails|filter:search:strict|itemsPerPage:10">
|
|
|
|
<tr >
|
|
<td>{{p.SL_NO}}</td>
|
|
<td>{{p.Firstname}} {{p.Lastname}}</td>
|
|
<td>{{p.count}}</td>
|
|
<td style="padding-left: 1px;">
|
|
<i class="fa fa-info-circle" tooltip="View Lead Details" ng-click="getLeadDetails(p);"></i>
|
|
</td>
|
|
|
|
|
|
</tr>
|
|
|
|
<tr ng-show="p.AssignedStaff == staffdet">
|
|
<td colspan="8" ng-include src="'assets/views/StaffLeadDetails.html'"></td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
|
|
</table>
|
|
<!-- <dir-pagination-controls direction-links="true" boundary-links="true">
|
|
</dir-pagination-controls> -->
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</tab>
|
|
</tabset>
|
|
</div>
|
|
|
|
</div> |