修改日报
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
<div class="am-form-group fl">
|
||||
<div class="am-para-inline">
|
||||
<select class="selectpicker" name="biz_id" data-live-search="true">
|
||||
<option value="0">所有品牌</option>
|
||||
<option value="0">所有门店</option>
|
||||
<? foreach ($biz_lists as $item) { ?>
|
||||
<option value="<?= $item['id'] ?>" <?= $item['id'] == $params['biz_id'] ? 'selected' : '' ?>><?= $item['biz_name'] ?></option>
|
||||
<? } ?>
|
||||
@@ -46,37 +46,28 @@
|
||||
<th width="10%"><span>车卖场</span></th>
|
||||
<th><span>日期</span></th>
|
||||
<th><span>顾问数(含店长)</span></th>
|
||||
<th><span>今日开工率</span></th>
|
||||
<th><span>今日新增线索数</span></th>
|
||||
<th><span>今日未及时分配数</span></th>
|
||||
<th><span>今日新增跟进数</span></th>
|
||||
<th><span>今日线索逾期数</span></th>
|
||||
<th><span>今日战败申请未处理数</span></th>
|
||||
<th><span>今日订单新增数</span></th>
|
||||
<th><span>今日订单未达T+1</span></th>
|
||||
<th><span>今日开票早与订单时间数</span></th>
|
||||
<th><span>今日运营分</span></th>
|
||||
<!--
|
||||
// 'cust_month' => '本月线索总数',
|
||||
// "cust_push_month" => "本月未及时分配总数",
|
||||
// 'cust_visit_month' => '本月跟进客户数',
|
||||
// "cust_delay_month" => "本月线索逾期数",
|
||||
// "cust_defeat_month" => "本月战败申请未处理数",
|
||||
// 'order_month' => '本月订单总数',
|
||||
// "order_wrong_month" => "本月订单未达T+1",
|
||||
// 'order_over' => "本月交付总数",
|
||||
// "order_finish" => "本月订单信息完整数",
|
||||
// 'score_month' => '本月运营分',-->
|
||||
<th><span>开工率</span></th>
|
||||
<th><span>新增线索数</span></th>
|
||||
<th><span>未及时分配数</span></th>
|
||||
<th><span>新增跟进数</span></th>
|
||||
<th><span>线索逾期数</span></th>
|
||||
<th><span>战败申请未处理数</span></th>
|
||||
<th><span>订单新增数</span></th>
|
||||
<th><span>订单未达T+1</span></th>
|
||||
<th><span>开票早与订单时间数</span></th>
|
||||
<th><span>交付总数</span></th>
|
||||
<th><span>运营分</span></th>
|
||||
<th><span></span></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php if ($lists) {
|
||||
foreach ($lists as $v) { ?>
|
||||
<tr>
|
||||
<td><?= $v['biz_name'] ?></td>
|
||||
<td><?= $v['day'] ?></td>
|
||||
<td><?= $v['sales'] ?></td>
|
||||
<td><?= intval($v['work_per']) ?>%</td>
|
||||
<td rowspan="2" style="vertical-align: middle;"><?= $v['biz_name'] ?></td>
|
||||
<td rowspan="2" style="vertical-align: middle;"><?= $v['day'] ?></td>
|
||||
<td rowspan="2" style="vertical-align: middle;"><?= $v['sales'] ?></td>
|
||||
<td rowspan="2" style="vertical-align: middle;"><?= intval($v['work_per']) ?>%</td>
|
||||
<td><?= $v['cust_new'] ?></td>
|
||||
<td><?= $v['cust_push'] ?></td>
|
||||
<td><?= $v['cust_visit'] ?></td>
|
||||
@@ -85,7 +76,22 @@
|
||||
<td><?= $v['order_new'] ?></td>
|
||||
<td><?= $v['order_wrong'] ?></td>
|
||||
<td><?= $v['order_early'] ?></td>
|
||||
<td></td>
|
||||
<td><?= $v['score'] ?></td>
|
||||
<td>今日</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><?= $v['cust_month'] ?></td>
|
||||
<td><?= $v['cust_push_month'] ?></td>
|
||||
<td><?= $v['cust_visit_month'] ?></td>
|
||||
<td><?= $v['cust_delay_month'] ?></td>
|
||||
<td><?= $v['cust_defeat_month'] ?></td>
|
||||
<td><?= $v['order_month'] ?></td>
|
||||
<td><?= $v['order_wrong_month'] ?></td>
|
||||
<td><?= $v['order_finish'] ?></td>
|
||||
<td><?= $v['order_over'] ?></td>
|
||||
<td><?= $v['score_month'] ?></td>
|
||||
<td>本月</td>
|
||||
</tr>
|
||||
<?php }
|
||||
} ?>
|
||||
|
||||
Reference in New Issue
Block a user