Commit 7a502a9e by 朱继来

Merge branch 'zjl_account_20180911' into development

parents ef362635 52f138dc
...@@ -1003,7 +1003,12 @@ Class OrderController extends Controller ...@@ -1003,7 +1003,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]);
} }
......
...@@ -992,10 +992,10 @@ ...@@ -992,10 +992,10 @@
$('input[name=order_pay_type]').click(function(){ $('input[name=order_pay_type]').click(function(){
var val = $(this).val(); var val = $(this).val();
if (val == 1) { if (val == 2) {
$('.show-advance-pay').hide();
} else {
$('.show-advance-pay').show(); $('.show-advance-pay').show();
} else {
$('.show-advance-pay').hide();
} }
}) })
......
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