Commit eb5a3da6 authored by hujun's avatar hujun

统计视图

parent db2a660b
...@@ -3768,7 +3768,7 @@ class Finance extends Basic ...@@ -3768,7 +3768,7 @@ class Finance extends Basic
*/ */
public function adjustment() { public function adjustment() {
if (!$this->request->isAjax()) { if (!$this->request->isAjax()) {
// return view("adjustment"); return view("adjustment");
} }
$pageNo = empty($this->params['pageNo']) ? 1 : $this->params['pageNo']; $pageNo = empty($this->params['pageNo']) ? 1 : $this->params['pageNo'];
...@@ -4196,6 +4196,10 @@ class Finance extends Basic ...@@ -4196,6 +4196,10 @@ class Finance extends Basic
* @return \think\Response * @return \think\Response
*/ */
public function getPayLogTotalPrice() { public function getPayLogTotalPrice() {
if (!$this->request->isAjax()) {
return view('daily_total');
}
$this->params['start_time'] = '2019-4-9'; $this->params['start_time'] = '2019-4-9';
$this->params['end_time'] = '2019-4-10'; $this->params['end_time'] = '2019-4-10';
if (empty($this->params['start_time']) || empty($this->params['end_time'])) { if (empty($this->params['start_time']) || empty($this->params['end_time'])) {
......
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