|
|
|
<?php
|
|
|
|
use \common\libs\MyLib;
|
|
|
|
?>
|
|
|
|
<?php $this->beginBlock('header_css'); ?>
|
|
|
|
<link href="/assets/css/plugins/bootstrap-table/bootstrap-table.min.css" rel="stylesheet">
|
|
|
|
<?php $this->endBlock(); ?>
|
|
|
|
|
|
|
|
<div class="wrapper wrapper-content animated fadeInRight">
|
|
|
|
<div class="ibox float-e-margins">
|
|
|
|
<div class="ibox-title">
|
|
|
|
<h5>回单匹配</h5>
|
|
|
|
<div class="ibox-tools">
|
|
|
|
<a class="btn btn-primary btn-xs edit-btn" data-id="0" href="javascript:void(0);" onclick="importDlg()">
|
|
|
|
<i class="fa fa-plus"></i> 补点导入
|
|
|
|
</a>
|
|
|
|
<a class="btn btn-primary btn-xs edit-btn" data-id="0" href="javascript:void(0);" onclick="$('#listTable').bootstrapTable('refresh');">
|
|
|
|
<i class="fa fa-refresh"></i> 刷新
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="ibox-content">
|
|
|
|
<form role="form" id="searchFrm" class="form-inline" onsubmit="return search();">
|
|
|
|
<div class="form-group" style="margin-bottom: 8px;">
|
|
|
|
<label for="name">匹配程度</label>
|
|
|
|
<select name="status" id="status" class="form-control">
|
|
|
|
<option value=0>全部</option>
|
|
|
|
<option value=1>未匹配</option>
|
|
|
|
<option value=2>已完成</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="form-group" style="margin-bottom: 8px;">
|
|
|
|
<label for="name">保单号</label>
|
|
|
|
<input type="text" id="insurer_no" name="insurer_no" class="form-control">
|
|
|
|
</div>
|
|
|
|
<div class="form-group" style="margin-bottom: 8px;">
|
|
|
|
<label for="name">车牌</label>
|
|
|
|
<input type="text" id="car_no" name="car_no" class="form-control">
|
|
|
|
</div>
|
|
|
|
<div class="form-group" style="margin-bottom: 8px;">
|
|
|
|
<label for="name">出单日期</label>
|
|
|
|
<div class="input-group input-daterange">
|
|
|
|
<input type="text" id="begin_date" name="begin_date" class="form-control" autocomplete="off">
|
|
|
|
<div class="input-group-addon">-</div>
|
|
|
|
<input type="text" id="end_date" name="end_date" class="form-control" autocomplete="off">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group" style="margin-bottom: 8px;">
|
|
|
|
<label for="name">回单日期</label>
|
|
|
|
<div class="input-group input-daterange">
|
|
|
|
<input type="text" id="r_begin_date" name="r_begin_date" class="form-control" autocomplete="off">
|
|
|
|
<div class="input-group-addon">-</div>
|
|
|
|
<input type="text" id="r_end_date" name="r_end_date" class="form-control" autocomplete="off">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group" style="margin-bottom: 8px;">
|
|
|
|
<label for="name">保险公司</label>
|
|
|
|
<select name="company_id" id="company_id" class="form-control">
|
|
|
|
<option value="0">---请选择---</option>
|
|
|
|
<?php
|
|
|
|
foreach($insurer_company_items as $item) {
|
|
|
|
echo '<option value="'.$item->id.'">'.$item->name.'</option>';
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="form-group" style="margin-bottom: 8px;">
|
|
|
|
<label for="name">级别</label>
|
|
|
|
<input type="text" id="name" name="name" class="form-control">
|
|
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-primary mb-8">搜索</button>
|
|
|
|
</form>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<table id="listTable">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th data-field="id">ID</th>
|
|
|
|
<th data-field="car_no">车牌号</th>
|
|
|
|
<th data-field="company_name">保险公司</th>
|
|
|
|
<th data-field="insurer_no">保单号</th>
|
|
|
|
<th data-field="print_date">出单日期</th>
|
|
|
|
<th data-field="total_clear">商业净保费</th>
|
|
|
|
<th data-field="budian_rate">补点比例</th>
|
|
|
|
<th data-field="budian_money">应得金额</th>
|
|
|
|
<th data-field="b1_total">补点1回款</th>
|
|
|
|
<th data-field="b1_date">补点1日期</th>
|
|
|
|
<th data-field="b2_total">补点2回款</th>
|
|
|
|
<th data-field="b2_date">补点2日期</th>
|
|
|
|
<th data-field="b3_total">补点3回款</th>
|
|
|
|
<th data-field="b3_date">补点3日期</th>
|
|
|
|
<th data-field="b_total">已回金额</th>
|
|
|
|
<th data-field="un_b_total">未回金额</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<?php $this->beginBlock('footer_js'); ?>
|
|
|
|
<script src="/assets/js/plugins/bootstrap-table/bootstrap-table.min.js"></script>
|
|
|
|
<script src="/assets/js/plugins/bootstrap-table/bootstrap-table-mobile.min.js"></script>
|
|
|
|
<script src="/assets/js/plugins/bootstrap-table/locale/bootstrap-table-zh-CN.min.js"></script>
|
|
|
|
<script>
|
|
|
|
var o = {};
|
|
|
|
function importDlg(id) {
|
|
|
|
var title = '手续费导入';
|
|
|
|
layer_show(title, '/finance/receipt2-import');
|
|
|
|
}
|
|
|
|
function refreshList() {
|
|
|
|
$('#listTable').bootstrapTable('refresh');
|
|
|
|
}
|
|
|
|
|
|
|
|
function search() {
|
|
|
|
o = {};
|
|
|
|
var params = $("#searchFrm").serializeArray();
|
|
|
|
$.each(params, function(index) {
|
|
|
|
o[this['name']] = this['value'];
|
|
|
|
});
|
|
|
|
$('#listTable').bootstrapTable('destroy');
|
|
|
|
$('#listTable').bootstrapTable({
|
|
|
|
url: "/finance/receipt2-json",
|
|
|
|
pagination: true,
|
|
|
|
sidePagination: 'server',
|
|
|
|
queryParams: function(params) {
|
|
|
|
o['offset'] = params['offset'];
|
|
|
|
o['limit'] = params['limit'];
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$(function() {
|
|
|
|
search();
|
|
|
|
|
|
|
|
$('.input-daterange').datepicker({
|
|
|
|
keyboardNavigation: false,
|
|
|
|
forceParse: false,
|
|
|
|
autoclose: true
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<?php $this->endBlock(); ?>
|