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
c90c2d9e
authored
Dec 15, 2020
by
朱继来
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
调整确认退款
parent
e54aa5b2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
app/Http/Controllers/ApiController.php
app/Http/Controllers/ApiController.php
View file @
c90c2d9e
...
...
@@ -468,7 +468,11 @@ class ApiController extends Controller
$OrderRefundModel
=
new
OrderRefundModel
;
$OrderRefundLogModel
=
new
OrderRefundLogModel
;
$res
=
$OrderServiceModel
->
where
(
'id'
,
$id
)
->
update
([
'refund_status'
=>
3
]);
$update_service
=
[];
$update_service
[
'refund_status'
]
=
3
;
$update_service
[
'update_time'
]
=
time
();
$res
=
$OrderServiceModel
->
where
(
'id'
,
$id
)
->
update
(
$update_service
);
if
(
$res
===
false
)
$this
->
Export
(
-
1
,
'更新售后退款状态失败'
);
$update
=
[];
...
...
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