Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
2
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
cailing
9 years ago
Commit
13ac13f74865c15bd3fa68b27e22ae74e8dbd0c2
1 parent
b2f0792e
取消订单详情页优化
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
yohobuy/www.yohobuy.com/application/models/Home/Order.php
yohobuy/www.yohobuy.com/application/modules/Home/controllers/Orders.php
yohobuy/www.yohobuy.com/application/models/Home/Order.php
View file @
13ac13f
...
...
@@ -226,6 +226,10 @@ class OrderModel
$detail
[
'packages'
]
=
CartModel
::
getPackageInfo
(
$orderDetail
);
//判断是否可以修改地址
$result
[
'changeable'
]
=
$orderDetail
[
'can_update_delivery_address'
]
==
'Y'
?
'true'
:
'false'
;
//判断是否有关联订单
$result
[
'relation'
]
=
$orderDetail
[
'relate_order_code'
]
==
'Y'
?
'true'
:
'false'
;
//修改地址跳转链接
$result
[
'url'
]
=
Helpers
::
url
(
'/home/addressModify'
,
array
(
'orderCode'
=>
$orderCode
,
'relation'
=>
$result
[
'relation'
]));
}
return
$detail
;
}
...
...
yohobuy/www.yohobuy.com/application/modules/Home/controllers/Orders.php
View file @
13ac13f
...
...
@@ -92,6 +92,8 @@ class OrdersController extends WebAction
$orderCode
=
$this
->
get
(
'order_code'
,
''
);
}
$detail
=
OrderModel
::
getOrderDetail
(
$uid
,
$orderCode
);
//取消订单原因列表
$resons
=
OrderData
::
closeReasons
();
//非当前用户的订单,跳转个首
if
(
isset
(
$detail
[
'code'
])
&&
$detail
[
'code'
]
==
400
)
{
$this
->
go
(
Helpers
::
url
(
'/home'
));
...
...
@@ -115,6 +117,7 @@ class OrdersController extends WebAction
'orderBalance'
=>
isset
(
$detail
[
'orderBalance'
])
?
$detail
[
'orderBalance'
]
:
array
(),
'operation'
=>
$detail
[
'operation'
],
'totalYoho'
=>
$detail
[
'yoho_give_coin'
],
'cancelReason'
=>
isset
(
$resons
[
'data'
])
?
$resons
[
'data'
]
:
''
,
);
if
(
isset
(
$detail
[
'noramlPayMode'
]))
{
$data
[
'orderInfo'
]
=
$detail
[
'orderInfo'
];
...
...
Please
register
or
login
to post a comment