Commit f674a123 authored by agping's avatar agping

1

parent eb59d8bb
......@@ -25,4 +25,54 @@ class RealTimePerformance extends Basic
return view('realtime/realtimePerformanceOffice');
}
}
//费用报销审核列表
public function costCheckList()
{
if (!$this->request->isAjax()) {
return view('cost/costCheck');
}
}
//门店成本明细
public function costDetails()
{
if (!$this->request->isAjax()) {
return view('cost/costDetails');
}
}
//门店成本核算表
public function storeCost()
{
if (!$this->request->isAjax()) {
return view('cost/storeCost');
}
}
//一键生成
public function quicklyGenerate()
{
if (!$this->request->isAjax()) {
return view('cost/quicklyGenerate');
}
}
//办公室列表
public function costOffice()
{
if (!$this->request->isAjax()) {
return view('cost/costOffice');
}
}
//门店考勤社保
public function attendanceList()
{
if (!$this->request->isAjax()) {
return view('cost/attendanceList');
}
}
//成本参数
public function costParameters()
{
if (!$this->request->isAjax()) {
return view('cost/costParameters');
}
}
}
\ No newline at end of file
门店考勤社保
\ No newline at end of file
成本参数
\ No newline at end of file
......@@ -359,6 +359,15 @@ Route::group('index', [
'inspectionRecordList' => ['index/InspectionRecord/inspectionRecordList', ['method' => 'GET']],//约带看记录liu
'realtimePerformance' => ['index/RealTimePerformance/realtimePerformanceList', ['method' => 'GET']],//实时业绩liu
'realtimePerformanceOffice' => ['index/RealTimePerformance/realtimePerformanceOfficeList', ['method' => 'GET']],//实时业绩liu办公楼
'costCheckList' => ['index/RealTimePerformance/costCheckList', ['method' => 'GET']],//费用报销审核列表 liu
'costDetails' => ['index/RealTimePerformance/costDetails', ['method' => 'GET']],//门店成本明细表 liu
'storeCost' => ['index/RealTimePerformance/storeCost', ['method' => 'GET']],//门店成本核算表 liu
'quicklyGenerate' => ['index/RealTimePerformance/quicklyGenerate', ['method' => 'GET']],//一键生成 liu
'costOffice' => ['index/RealTimePerformance/costOffice', ['method' => 'GET']],//办公室列表 liu
'attendanceList' => ['index/RealTimePerformance/attendanceList', ['method' => 'GET']],//门店考勤 liu
'costParameters' => ['index/RealTimePerformance/costParameters', ['method' => 'GET']],//成本参数 liu
'shopinspectionLog' => ['index/ShopInspectionLog/shopinspectionLogList', ['method' => 'POST|GET']],//商铺查看日志liu
'opensquareLog' => ['index/OpenSquareLog/opensquarelogList', ['method' => 'POST|GET']],//开盘广场liu
'redEnvelope' => ['index/RedEnvelope/redEnvelopeList', ['method' => 'POST|GET']],//活动列表liu
......
......@@ -4,20 +4,8 @@
<tr class="text-center">
<td>[%= it[item]['create_time'] %]</td>
<td>[%= it[item]['id'] %]</td>
[% if(it[item]['status'] == 0) { %]
<td>审核中</td>
[% }else if (it[item]['status'] == 1) { %]
<td>审核中</td>
[% }else if (it[item]['status'] == 2) { %]
<td>退款成功</td>
[% }else if (it[item]['status'] == 3) { %]
<td>已审核</td>
[% }else if (it[item]['status'] == 4) { %]
<td>驳回</td>
[% } else { %]
<td>--</td>
[% } %]
<td>[%= it[item]['order_id'] %]</td>
<td>[%= it[item]['office_name'] %]</td>
<td>[%= it[item]['office_address'] %]</td>
<td>[%= it[item]['pay_log_id'] %]</td>
[% if(it[item]['type'] == 1) { %]
<td>意向金转定</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