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
6b11ca79c676b5de5b4bcab4eab502a686ccf340
1 parent
a8f2066d
取消订单原因修改
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
library/LibModels/Web/Home/OrderData.php
yohobuy/www.yohobuy.com/application/modules/Home/controllers/Orders.php
library/LibModels/Web/Home/OrderData.php
View file @
6b11ca7
...
...
@@ -190,7 +190,7 @@ class OrderData
$param
[
'client_secret'
]
=
Sign
::
getSign
(
$param
);
// 调用接口获得数据
return
Yohobuy
::
ge
t
(
Yohobuy
::
API_URL
,
$param
);
return
Yohobuy
::
pos
t
(
Yohobuy
::
API_URL
,
$param
);
}
}
...
...
yohobuy/www.yohobuy.com/application/modules/Home/controllers/Orders.php
View file @
6b11ca7
...
...
@@ -194,8 +194,8 @@ class OrdersController extends WebAction
}
$uid
=
$this
->
auditJumpLogin
();
$orderCode
=
trim
(
$this
->
post
(
'orderCode'
,
''
));
//订单编号
$reason
=
$this
->
get
(
'reason'
,
''
);
//取消订单原因
$reasonid
=
$this
->
get
(
'reasonId'
,
''
);
//取消原因id
$reason
=
$this
->
post
(
'reason'
,
''
);
//取消订单原因
$reasonid
=
$this
->
post
(
'reasonId'
,
''
);
//取消原因id
$data
=
OrderData
::
cancelUserOrder
(
$uid
,
$orderCode
,
$reason
,
$reasonid
);
if
(
!
isset
(
$data
[
'code'
]))
{
break
;
...
...
@@ -267,7 +267,7 @@ class OrdersController extends WebAction
// $address = $this->get('address', ''); //地址
// $mobile = $this->get('mobile', ''); //手机号码
// $phone = $this->get('phone', ''); //固定电话
$order_code
=
161
5400071
;
//订单号
$order_code
=
161
6956289
;
//订单号
$user_name
=
'接口测试'
;
//收货人
$area_code
=
321023
;
//区号
$address
=
'测试地址'
;
//地址
...
...
@@ -277,9 +277,9 @@ class OrdersController extends WebAction
// break;
// }
$result
=
OrderData
::
updateDeliveryAddress
(
$order_code
,
$address_id
,
$user_name
,
$area_code
,
$address
,
$mobile
,
$phone
);
if
(
!
isset
(
$result
[
'code'
]))
{
break
;
}
// if (!isset($result['code'])) {
// break;
// }
}
while
(
false
);
...
...
Please
register
or
login
to post a comment