Commit e3fd11cd authored by hujun's avatar hujun

汇总修改

parent f6da0214
......@@ -147,6 +147,10 @@ class Finance extends Basic
$where['a.status'] = 20;
$where['a.audit_level'] = 3;
break;
case 10 :
//成交报告列表-待撤销-第三级审核
$where['a.status'] = ['IN','10,11,13'];
break;
default :
//成交报告列表-第一级审核
$order = 'a.id DESC';
......
......@@ -220,7 +220,7 @@ Route::group('index', [
'refundListManager/:check_status' => [ 'index/Finance/refundList', [ 'method' => 'get|post' ], [ 'check_status' => 1 ] ], //退款列表-财务经理
'refundListMajordomo/:check_status' => [ 'index/Finance/refundList', [ 'method' => 'get|post' ], [ 'check_status' => 2 ] ], //退款列表-总监审核
'refundListCashier/:check_status' => [ 'index/Finance/refundList', [ 'method' => 'get|post' ], [ 'check_status' => 3 ] ], //退款列表-出纳审核
'refundOrderList' => [ 'index/Finance/refundOrderList', [ 'method' => 'get' ] ], //财务 已退款
'refundOrderList/:check_status' => [ 'index/Finance/refundOrderList', [ 'method' => 'get' ], [ 'check_status' => 10 ] ], //财务 已退款
'checkReportAttache/:check_status' => [ 'index/Finance/checkReport', [ 'method' => 'post' ], [ 'check_status' => 1 ] ], //审核成交报告-第一级审核
'checkReportManager/:check_status' => [ 'index/Finance/checkReport', [ 'method' => 'post' ], [ 'check_status' => 2 ] ], //审核成交报告-第二级审核
'checkReportMajordomo/:check_status' => [ 'index/Finance/checkReport', [ 'method' => 'post' ], [ 'check_status' => 3 ] ], //审核成交报告-第三级审核
......
<script id="reportList_list_tpl" type="text/template">
[% if(it["list"] && it["list"].length && it["list"].length>0) { %]
[% var sw=function(s){switch(Number(s)){case 10:return"出租";case 20:return"增佣";case 30:return"代理";case 40:return"好处费";default:return s}}; %]
[% var sw2=function(s){switch(Number(s)){case 0:return"一级";case 1:return"二级";case 2:return"三级";case 3:return"已结单";default:return s}}; %]
[% var sw2=function(s){switch(Number(s)){case 0:return"开始审核";case 1:return"一级";case 2:return"二级";case 3:return"已结单";case 3:default:return s}}; %]
[% for(var item in it["list"]){ %]
<tr data-id="[%= it['list'][item]['id'] %]" data-orderid="[%= it['list'][item]['order_id'] %]">
<td class="text-center" >行号 </td>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment