记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
Project
Project
Details
Activity
Releases
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
董敬伟
liquidnet-bus-v1
Commits
2cc9dfdf
Commit
2cc9dfdf
authored
Apr 08, 2026
by
wangyifan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化注释
parent
b9e6db04
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
23 deletions
+0
-23
GoblinSqbServiceImpl.java
...net/service/goblin/service/impl/GoblinSqbServiceImpl.java
+0
-23
No files found.
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/src/main/java/com/liquidnet/service/goblin/service/impl/GoblinSqbServiceImpl.java
View file @
2cc9dfdf
...
@@ -71,10 +71,6 @@ public class GoblinSqbServiceImpl implements IGoblinSqbService {
...
@@ -71,10 +71,6 @@ public class GoblinSqbServiceImpl implements IGoblinSqbService {
}
}
// 调用收钱吧查询券码
// 调用收钱吧查询券码
CouponQueryRequest
req
=
new
CouponQueryRequest
();
req
.
setAppid
(
sqbBiz
.
getSqbConfig
().
getAppId
());
req
.
setSeller
(
buildSeller
());
CouponQueryData
couponData
=
sqbBiz
.
queryCoupon
(
orderVo
.
getSqbOrderSn
(),
orderVo
.
getSqbOrderSignature
());
CouponQueryData
couponData
=
sqbBiz
.
queryCoupon
(
orderVo
.
getSqbOrderSn
(),
orderVo
.
getSqbOrderSignature
());
if
(
couponData
==
null
)
return
ResponseDto
.
failure
(
"获取券码失败"
);
if
(
couponData
==
null
)
return
ResponseDto
.
failure
(
"获取券码失败"
);
...
@@ -325,14 +321,6 @@ public class GoblinSqbServiceImpl implements IGoblinSqbService {
...
@@ -325,14 +321,6 @@ public class GoblinSqbServiceImpl implements IGoblinSqbService {
// ================================ 私有辅助方法 ================================
// ================================ 私有辅助方法 ================================
private
CommonRequest
.
Seller
buildSeller
()
{
CommonRequest
.
Seller
seller
=
new
CommonRequest
.
Seller
();
seller
.
setMerchantId
(
sqbBiz
.
getSqbConfig
().
getMerchantId
());
seller
.
setMerchantUserId
(
sqbBiz
.
getSqbConfig
().
getMerchantUserId
());
seller
.
setRole
(
sqbBiz
.
getSqbConfig
().
getRole
());
return
seller
;
}
private
GoblinSqbOrderDetailVo
buildDetailVo
(
GoblinStoreOrderVo
storeOrderVo
,
private
GoblinSqbOrderDetailVo
buildDetailVo
(
GoblinStoreOrderVo
storeOrderVo
,
GoblinOrderSkuVo
skuVo
,
GoblinOrderSkuVo
skuVo
,
...
@@ -378,17 +366,6 @@ public class GoblinSqbServiceImpl implements IGoblinSqbService {
...
@@ -378,17 +366,6 @@ public class GoblinSqbServiceImpl implements IGoblinSqbService {
return
raw
.
length
()
>
40
?
raw
.
substring
(
0
,
40
)
:
raw
;
return
raw
.
length
()
>
40
?
raw
.
substring
(
0
,
40
)
:
raw
;
}
}
/**
* 构建收钱吧订单标题,不超过32位。
*
* @param name 商品名称
* @return 不超过32位的标题字符串
*/
private
String
buildTitle
(
String
name
)
{
if
(
name
==
null
||
name
.
isEmpty
())
return
"商品支付"
;
return
name
.
length
()
>
32
?
name
.
substring
(
0
,
32
)
:
name
;
}
/**
/**
* 同步正在商品订单状态
* 同步正在商品订单状态
...
...
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