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
7a502a9e
authored
Sep 18, 2018
by
朱继来
Browse files
Options
_('Browse Files')
Download
Plain Diff
Merge branch 'zjl_account_20180911' into development
parents
ef362635
52f138dc
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
4 deletions
app/Http/Controllers/OrderController.php
public/js/order.js
app/Http/Controllers/OrderController.php
View file @
7a502a9e
...
...
@@ -1003,7 +1003,12 @@ Class OrderController extends Controller
{
$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
])){
return
redirect
(
'/prompt'
)
->
with
([
'message'
=>
"该订单不符合人工审单条件~【status:
{
$info
[
'order_info'
][
'status'
]
}
】"
,
'url'
=>
$_SERVER
[
'HTTP_REFERER'
],
'jumpTime'
=>
3
,
'status'
=>
false
]);
}
...
...
public/js/order.js
View file @
7a502a9e
...
...
@@ -992,10 +992,10 @@
$
(
'input[name=order_pay_type]'
).
click
(
function
(){
var
val
=
$
(
this
).
val
();
if
(
val
==
1
)
{
$
(
'.show-advance-pay'
).
hide
();
}
else
{
if
(
val
==
2
)
{
$
(
'.show-advance-pay'
).
show
();
}
else
{
$
(
'.show-advance-pay'
).
hide
();
}
})
...
...
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