Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
朱继来
/
后台订单管理
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
52f138dc
authored
Sep 18, 2018
by
朱继来
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
设置账期订单
parent
061650ab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
app/Http/Controllers/OrderController.php
app/Http/Controllers/OrderController.php
View file @
52f138dc
...
@@ -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'
]);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment