Commit 3542f300 authored by hujun's avatar hujun

税费承担明细表-时间轴

parent f1ff281d
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
namespace app\index\controller; namespace app\index\controller;
use app\api_broker\service\OfficeOrderLogService;
use app\index\extend\Basic; use app\index\extend\Basic;
use app\index\untils\ExportExcelUntil; use app\index\untils\ExportExcelUntil;
use app\model\OfficeOPartialCommission; use app\model\OfficeOPartialCommission;
...@@ -192,4 +193,25 @@ class OfficeFinance extends Basic ...@@ -192,4 +193,25 @@ class OfficeFinance extends Basic
} }
} }
} }
/**
* 报备时间轴
*
* @return \think\Response
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function selectReportAll()
{
header('Access-Control-Allow-Origin:*');
$params = $this->params;
if (!isset($params["order_id"])) {
return $this->response("101", "请求参数错误");
}
$service_ = new OfficeOrderLogService();
$data = $service_->selectListByOrderNo($params["order_id"]);
return $this->response("200", "request success", $data);
}
} }
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