Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ufo
/
yohoufo-fore
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
chenchao
2019-04-15 17:48:54 +0800
Commit
0abefd33647c22d347b22b16fb1eb5d5a0bd9453
1 parent
4d4069ec
fix sync error
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
order/src/main/java/com/yohoufo/order/service/proxy/ProductProxyService.java
order/src/main/java/com/yohoufo/order/service/seller/changePrice/ChangePriceService.java
order/src/main/java/com/yohoufo/order/service/proxy/ProductProxyService.java
View file @
0abefd3
...
...
@@ -252,6 +252,9 @@ public class ProductProxyService extends AbsProxyService{
case
SELLER_CANCEL_SELL:
status
=
4
;
break
;
case
WAITING_AUDIT:
status
=
skupStatus
.
getCode
();
break
;
default
:
status
=
null
;
break
;
...
...
order/src/main/java/com/yohoufo/order/service/seller/changePrice/ChangePriceService.java
View file @
0abefd3
...
...
@@ -72,6 +72,8 @@ public class ChangePriceService {
case
SECOND_HAND:
spcb
=
singleGoodsChangePriceService
.
computeChangePrice
(
req
);
break
;
default
:
throw
new
UfoServiceException
(
400
,
"商品类型错误"
);
}
return
spcb
;
...
...
Please
register
or
login
to post a comment