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
26c4a61e
Commit
26c4a61e
authored
Dec 27, 2023
by
ping.wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
订单宝暂无appid,返回支付关联的appid用于储值校验记录支付退款用
parent
4fbdf910
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
7 deletions
+2
-7
order-application-service/src/main/java/cn/freemud/controller/ExposureOrderController.java
+1
-1
order-application-service/src/main/java/cn/freemud/service/ExposureOrderService.java
+1
-6
No files found.
order-application-service/src/main/java/cn/freemud/controller/ExposureOrderController.java
View file @
26c4a61e
...
@@ -129,7 +129,7 @@ public class ExposureOrderController {
...
@@ -129,7 +129,7 @@ public class ExposureOrderController {
@ApiAnnotation
(
logMessage
=
"查询支付虚拟门店配置"
)
@ApiAnnotation
(
logMessage
=
"查询支付虚拟门店配置"
)
@PostMapping
(
"/getVirtualStore"
)
@PostMapping
(
"/getVirtualStore"
)
public
BaseResponse
<
String
>
getVirtualStore
(
@Validated
@LogParams
@RequestBody
GetVirtualStoreRequest
req
)
{
public
BaseResponse
<
String
>
getVirtualStore
(
@Validated
@LogParams
@RequestBody
GetVirtualStoreRequest
req
)
{
return
ResponseUtil
.
success
(
exposureOrderService
.
getVirtualStore
(
req
.
get
PartnerId
(),
req
.
get
AppId
(),
req
.
getType
()));
return
ResponseUtil
.
success
(
exposureOrderService
.
getVirtualStore
(
req
.
getAppId
(),
req
.
getType
()));
}
}
@ApiAnnotation
(
logMessage
=
"查询订单宝购买储值卡配置的支付虚拟门店信息"
)
@ApiAnnotation
(
logMessage
=
"查询订单宝购买储值卡配置的支付虚拟门店信息"
)
...
...
order-application-service/src/main/java/cn/freemud/service/ExposureOrderService.java
View file @
26c4a61e
...
@@ -96,12 +96,7 @@ public class ExposureOrderService {
...
@@ -96,12 +96,7 @@ public class ExposureOrderService {
* @param type 虚拟门店类型 {@link AggregationTypeEnum}
* @param type 虚拟门店类型 {@link AggregationTypeEnum}
* @return 虚拟门店号
* @return 虚拟门店号
*/
*/
public
String
getVirtualStore
(
String
partnerId
,
String
appId
,
String
type
)
{
public
String
getVirtualStore
(
String
appId
,
String
type
)
{
//订单宝购买储值卡支付虚拟门店,订单宝暂无appid
if
(
type
.
equals
(
"12"
)
&&
appId
.
equals
(
"12"
)){
AssortmentOpenPlatformIappWxappStore
virtualStore
=
payService
.
getVirtualStore
(
partnerId
,
type
);
return
virtualStore
==
null
?
""
:
virtualStore
.
getStoreId
();
}
AssortmentOpenPlatformIappWxappStore
wxAppStore
=
payService
.
getIappWxappStoreInfo
(
appId
,
type
);
AssortmentOpenPlatformIappWxappStore
wxAppStore
=
payService
.
getIappWxappStoreInfo
(
appId
,
type
);
return
wxAppStore
==
null
?
""
:
wxAppStore
.
getStoreId
();
return
wxAppStore
==
null
?
""
:
wxAppStore
.
getStoreId
();
}
}
...
...
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