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
e6bc4142
Commit
e6bc4142
authored
Nov 10, 2020
by
xiaoer.li@freemud.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
0173133c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
assortment-ordercenter-sdk/src/main/java/com/freemud/sdk/api/assortment/order/request/payment/PayPlatformVO.java
+1
-1
order-application-service/src/main/java/cn/freemud/adapter/OrderAdapter.java
+3
-3
No files found.
assortment-ordercenter-sdk/src/main/java/com/freemud/sdk/api/assortment/order/request/payment/PayPlatformVO.java
View file @
e6bc4142
...
...
@@ -6,6 +6,6 @@ import lombok.Data;
public
class
PayPlatformVO
{
private
String
ebcode
;
private
Long
amount
;
private
String
orderClient
;
private
String
clientCode
;
}
order-application-service/src/main/java/cn/freemud/adapter/OrderAdapter.java
View file @
e6bc4142
...
...
@@ -3561,13 +3561,13 @@ public class OrderAdapter {
payPlatformVO
.
setAmount
(
orderPayItemCreateReq
.
getPayAmount
().
longValue
());
payPlatformVO
.
setEbcode
(
orderPayItemCreateReq
.
getPayEbCode
());
if
(
orderPayItemCreateReq
.
getPayEbCode
().
equals
(
PayChannelType
.
SVC
.
getEbcode
()))
{
payPlatformVO
.
set
OrderClient
(
orderPayItemCreateReq
.
getPayEbCode
());
payPlatformVO
.
set
ClientCode
(
orderPayItemCreateReq
.
getPayEbCode
());
}
else
if
(
orderPayItemCreateReq
.
getPayEbCode
().
equals
(
PayChannelType
.
WECHAT
.
getEbcode
()))
{
payPlatformVO
.
set
OrderClient
(
orderClient
);
payPlatformVO
.
set
ClientCode
(
orderClient
);
}
else
if
(
orderPayItemCreateReq
.
getPayEbCode
().
equals
(
PayChannelType
.
ALIPAY
.
getEbcode
()))
{
payPlatformVO
.
set
OrderClient
(
orderClient
);
payPlatformVO
.
set
ClientCode
(
orderClient
);
}
platforms
.
add
(
payPlatformVO
);
}
...
...
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