Commit 52f138dc by 朱继来

设置账期订单

parent 061650ab
Showing with 7 additions and 3 deletions
...@@ -992,7 +992,12 @@ Class OrderController extends Controller ...@@ -992,7 +992,12 @@ Class OrderController extends Controller
{ {
$info = $this->orderDetail($request, $id); $info = $this->orderDetail($request, $id);
//待审核才可以 // 账期订单跳转到详情页
if ($info['order_info']['status'] == 4) {
return redirect('/details/'.$id);
}
// 待审核才可以
if(!in_array($info['order_info']['status'], [-1, 1, 2])){ if(!in_array($info['order_info']['status'], [-1, 1, 2])){
return redirect('/prompt')->with(['message'=>"该订单不符合人工审单条件~【status:{$info['order_info']['status']}】",'url' =>$_SERVER['HTTP_REFERER'], 'jumpTime'=>3,'status'=>false]); return redirect('/prompt')->with(['message'=>"该订单不符合人工审单条件~【status:{$info['order_info']['status']}】",'url' =>$_SERVER['HTTP_REFERER'], 'jumpTime'=>3,'status'=>false]);
} }
...@@ -1083,8 +1088,7 @@ Class OrderController extends Controller ...@@ -1083,8 +1088,7 @@ Class OrderController extends Controller
"k2" => $check['k2'], "k2" => $check['k2'],
"client_source" => $client_source, "client_source" => $client_source,
]; ];
echo '<pre>';
print_r(curlApi($url, $resData, "POST"));die;
$temp = json_decode(curlApi($url, $resData, "POST"), true); $temp = json_decode(curlApi($url, $resData, "POST"), true);
return array('errcode'=>$temp['err_code'],'errmsg'=>$temp['err_msg']); return array('errcode'=>$temp['err_code'],'errmsg'=>$temp['err_msg']);
......
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