Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
order-group
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
order-group-application
order-group
Commits
fa493b42
Commit
fa493b42
authored
Oct 11, 2021
by
ping.wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
老优惠状态值转换错误修改
parent
8e946b27
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
ordercenter-sdk/readme.md
+3
-2
ordercenter-sdk/src/main/java/com/freemud/application/sdk/api/ordercenter/enums/orderv1/OrderAccountTypeV1.java
+4
-4
No files found.
ordercenter-sdk/readme.md
View file @
fa493b42
...
...
@@ -100,4 +100,5 @@
| 1.3.66.RELEASE | 基础订单sdk版本升级 | 伍平 | 2021-08-10 |
| 1.3.67.RELEASE | 新增爱马哥需求代码改动 | 周晓航 | 2021-08-23 |
| 1.3.68.RELEASE | 新增维护商品类型同步商品服务 | 周晓航 | 2021-09-03 |
| 1.3.69.RELEASE | 升级sdk | 伍平 | 2021-09-16 |
\ No newline at end of file
| 1.3.69.RELEASE | 升级sdk | 伍平 | 2021-09-16 |
| 1.3.70.RELEASE | 升级sdk | 伍平 | 2021-10-11 |
\ No newline at end of file
ordercenter-sdk/src/main/java/com/freemud/application/sdk/api/ordercenter/enums/orderv1/OrderAccountTypeV1.java
View file @
fa493b42
...
...
@@ -53,14 +53,14 @@ public enum OrderAccountTypeV1 {
/**
* 获取V1 老
订单
状态值
* 获取V1 老
优惠
状态值
*/
public
static
Integer
getOldCode
(
Integer
v2Code
)
{
Integer
v1Code
=
v2Code
;
if
(
v2Code
==
null
)
return
v1Code
;
for
(
Order
StatusV1
value
:
OrderStatus
V1
.
values
())
{
if
(
value
.
getV2
C
ode
().
equals
(
v2Code
))
{
v1Code
=
value
.
getV1
C
ode
();
for
(
Order
AccountTypeV1
value
:
OrderAccountType
V1
.
values
())
{
if
(
value
.
getV2
c
ode
().
equals
(
v2Code
))
{
v1Code
=
value
.
getV1
c
ode
();
break
;
}
}
...
...
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