Commit b8a159e5 authored by duxinyuan's avatar duxinyuan

调整出账

parent 3255c240
...@@ -2235,6 +2235,14 @@ class Finance extends Basic ...@@ -2235,6 +2235,14 @@ class Finance extends Basic
public function receivables() { public function receivables() {
return view("receivables"); return view("receivables");
} }
/**
* 调整出账
* @return \think\Response
*/
public function adjustment() {
return view("adjustment");
}
public function dailyList() { public function dailyList() {
return view('daily_list'); return view('daily_list');
......
...@@ -288,6 +288,7 @@ Route::group('index', [ ...@@ -288,6 +288,7 @@ Route::group('index', [
'yindaoAndroid' => [ 'index/ShareShop/yindaoAndroid', [ 'method' => 'POST|GET' ] ], 'yindaoAndroid' => [ 'index/ShareShop/yindaoAndroid', [ 'method' => 'POST|GET' ] ],
'yindaoIos' => [ 'index/ShareShop/yindaoIos', [ 'method' => 'POST|GET' ] ], 'yindaoIos' => [ 'index/ShareShop/yindaoIos', [ 'method' => 'POST|GET' ] ],
'receivables' => ['index/Finance/receivables', ['method' => 'GET']], //获取实收日期 'receivables' => ['index/Finance/receivables', ['method' => 'GET']], //获取实收日期
'adjustment' => ['index/Finance/adjustment', ['method' => 'GET']], //获取实收日期
'evaluationList' => ['index/Evaluation/evaluationList', ['method' => 'POST|GET']], //评价列表 朱伟 2018-06-13 'evaluationList' => ['index/Evaluation/evaluationList', ['method' => 'POST|GET']], //评价列表 朱伟 2018-06-13
'marchInList' => ['index/MarchIn/marchInList', ['method' => 'POST|GET']], //进场记录列表 朱伟 2018-06-13 'marchInList' => ['index/MarchIn/marchInList', ['method' => 'POST|GET']], //进场记录列表 朱伟 2018-06-13
......
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