Commit 0d651dd5 by 朱继来

调整下载合同

parent 2ecf7389
Showing with 6 additions and 6 deletions
......@@ -525,12 +525,7 @@ Class OrderController extends Controller
public function ajaxDownloadContract(Request $request)
{
if ($request->isMethod('post')) {
$order_id = $request->input('order_id');
if (!$actionLog){
errorLog(Error::E_ADD_FAILED, '添加操作记录失败');
return ['errcode'=>Error::E_ADD_FAILED, 'errmsg'=>'添加操作记录失败'];
}
$order_id = $request->input('order_id');
$apiUrl = Config('website.api_domain');
$k1 = time();
......@@ -541,6 +536,11 @@ Class OrderController extends Controller
$OrderActionLogModel = new OrderActionLogModel();
$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];
}
}
......
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