Commit c1fb6271 authored by agping's avatar agping

核算表

parent 8f62d04d
...@@ -81,5 +81,12 @@ class RealTimePerformance extends Basic ...@@ -81,5 +81,12 @@ class RealTimePerformance extends Basic
return view('cost/publicCostDetails'); return view('cost/publicCostDetails');
} }
} }
//门店成本核算表
public function accountingTable()
{
if (!$this->request->isAjax()) {
return view('cost/accountingTable');
}
}
} }
\ No newline at end of file
This diff is collapsed.
...@@ -367,7 +367,7 @@ Route::group('index', [ ...@@ -367,7 +367,7 @@ Route::group('index', [
'attendanceList' => ['index/RealTimePerformance/attendanceList', ['method' => 'GET']],//门店考勤 liu 'attendanceList' => ['index/RealTimePerformance/attendanceList', ['method' => 'GET']],//门店考勤 liu
'costParameters' => ['index/RealTimePerformance/costParameters', ['method' => 'GET']],//成本参数 liu 'costParameters' => ['index/RealTimePerformance/costParameters', ['method' => 'GET']],//成本参数 liu
'publicCostDetails' => ['index/RealTimePerformance/publicCostDetails', ['method' => 'GET']],//费用报销详情 liu 'publicCostDetails' => ['index/RealTimePerformance/publicCostDetails', ['method' => 'GET']],//费用报销详情 liu
'accountingTable' => ['index/RealTimePerformance/accountingTable', ['method' => 'GET']],//成本核算表 liu
'shopinspectionLog' => ['index/ShopInspectionLog/shopinspectionLogList', ['method' => 'POST|GET']],//商铺查看日志liu 'shopinspectionLog' => ['index/ShopInspectionLog/shopinspectionLogList', ['method' => 'POST|GET']],//商铺查看日志liu
'opensquareLog' => ['index/OpenSquareLog/opensquarelogList', ['method' => 'POST|GET']],//开盘广场liu 'opensquareLog' => ['index/OpenSquareLog/opensquarelogList', ['method' => 'POST|GET']],//开盘广场liu
......
This diff is collapsed.
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