Commit 0d651dd5 by 朱继来

调整下载合同

parent 2ecf7389
Showing with 5 additions and 5 deletions
...@@ -527,11 +527,6 @@ Class OrderController extends Controller ...@@ -527,11 +527,6 @@ Class OrderController extends Controller
if ($request->isMethod('post')) { if ($request->isMethod('post')) {
$order_id = $request->input('order_id'); $order_id = $request->input('order_id');
if (!$actionLog){
errorLog(Error::E_ADD_FAILED, '添加操作记录失败');
return ['errcode'=>Error::E_ADD_FAILED, 'errmsg'=>'添加操作记录失败'];
}
$apiUrl = Config('website.api_domain'); $apiUrl = Config('website.api_domain');
$k1 = time(); $k1 = time();
$k2 = md5(md5($k1).'fh6y5t4rr351d2c3bryi'); $k2 = md5(md5($k1).'fh6y5t4rr351d2c3bryi');
...@@ -541,6 +536,11 @@ Class OrderController extends Controller ...@@ -541,6 +536,11 @@ Class OrderController extends Controller
$OrderActionLogModel = new OrderActionLogModel(); $OrderActionLogModel = new OrderActionLogModel();
$actionLog = $OrderActionLogModel->addLog($order_id, $request->user->userId, 2, '下载合同'); $actionLog = $OrderActionLogModel->addLog($order_id, $request->user->userId, 2, '下载合同');
if (!$actionLog){
errorLog(Error::E_ADD_FAILED, '添加操作记录失败');
return ['errcode'=>Error::E_ADD_FAILED, 'errmsg'=>'添加操作记录失败'];
}
return ['errcode'=>0, 'errmsg'=>'', 'data'=>$downLoadUrl]; return ['errcode'=>0, 'errmsg'=>'', 'data'=>$downLoadUrl];
} }
} }
......
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 sign in to comment