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
889030e9bbe9295378f66923dbc032da7a1d7993
1 parent
bf977b07
修改
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
17 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 @
889030e
...
...
@@ -232,10 +232,9 @@ class OrderModel
$detail
[
'operation'
]
=
self
::
getOrderDetailOp
(
$orderDetail
[
'order_code'
],
$orderDetail
[
'payment'
],
$orderDetail
[
'status'
],
$orderDetail
[
'is_cancel'
],
$orderDetail
[
'payment_status'
],
$orderDetail
[
'payment_type'
],
$orderDetail
[
'order_type'
],
$orderDetail
[
'attribute'
],
$orderDetail
[
'refund_status'
]);
//,$orderDetail['order_type_value']
$detail
[
'packages'
]
=
CartModel
::
getPackageInfo
(
$orderDetail
);
//判断是否可以修改地址
// if($orderDetail['can_update_delivery_address'] == 'Y'){
// $detail['changeable'] = 'true';
// }
$detail
[
'changeable'
]
=
'true'
;
if
(
$orderDetail
[
'can_update_delivery_address'
]
==
'Y'
){
$detail
[
'changeable'
]
=
'true'
;
}
}
return
$detail
;
}
...
...
yohobuy/www.yohobuy.com/application/modules/Home/controllers/Orders.php
View file @
889030e
...
...
@@ -245,22 +245,16 @@ class OrdersController extends WebAction
break
;
}
// 获取相关参数
$order_code
=
$this
->
get
(
'orderCode'
,
''
);
//订单号
$user_name
=
$this
->
get
(
'userName'
,
''
);
//收货人
$area_code
=
$this
->
get
(
'areaCode'
,
''
);
//区号
$address
=
$this
->
get
(
'address'
,
''
);
//地址
$mobile
=
$this
->
get
(
'mobile'
,
''
);
//手机号码
$phoneNum
=
$this
->
get
(
'phoneNum'
,
''
);
//固定电话
$phoneCode
=
$this
->
get
(
'phoneCode'
,
''
);
//电话编号
$order_code
=
$this
->
post
(
'orderCode'
,
''
);
//订单号
$user_name
=
$this
->
post
(
'userName'
,
''
);
//收货人
$area_code
=
$this
->
post
(
'areaCode'
,
''
);
//区号
$address
=
$this
->
post
(
'address'
,
''
);
//地址
$mobile
=
$this
->
post
(
'mobile'
,
''
);
//手机号码
$phoneNum
=
$this
->
post
(
'phoneNum'
,
''
);
//固定电话
$phoneCode
=
$this
->
post
(
'phoneCode'
,
''
);
//电话编号
if
(
!
empty
(
$phoneNum
)){
$phone
=
$phoneCode
.
'-'
.
$phoneNum
;
}
// $order_code = 1606640307; //订单号
// $user_name = '接口测试'; //收货人
// $area_code = 320102; //区号
// $address = '测试地址'; //地址
// $mobile = 18021408798; //手机号码
// $phone = 05128897456;
if
(
!
$order_code
||
!
$user_name
||
!
$area_code
||
!
$address
)
{
$result
=
array
(
'code'
=>
400
,
'message'
=>
'缺失必填项'
,
'data'
=>
''
);
break
;
...
...
Please
register
or
login
to post a comment