Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cms-ci-test
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
test-ci
cms-ci-test
Commits
98d29ce4
提交
98d29ce4
authored
8月 30, 2023
作者:
xiaowang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改bug
上级
4c2e46d2
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
28 行增加
和
17 行删除
+28
-17
PayWalletServiceImpl.java
...c/iuav/user/service/wallet/impl/PayWalletServiceImpl.java
+25
-17
XzServiceImpl.java
...va/com/mmc/iuav/user/service/xzsz/impl/XzServiceImpl.java
+3
-0
没有找到文件。
csm-service/cms-service-user/src/main/java/com/mmc/iuav/user/service/wallet/impl/PayWalletServiceImpl.java
浏览文件 @
98d29ce4
...
@@ -236,9 +236,9 @@ public class PayWalletServiceImpl implements PayWalletService {
...
@@ -236,9 +236,9 @@ public class PayWalletServiceImpl implements PayWalletService {
PayWalletDO
publishPayWalletDO
=
new
PayWalletDO
();
PayWalletDO
publishPayWalletDO
=
new
PayWalletDO
();
publishPayWalletDO
.
setUserAccountId
(
publisherWalletFlowVO
.
getUserAccountId
());
publishPayWalletDO
.
setUserAccountId
(
publisherWalletFlowVO
.
getUserAccountId
());
publishPayWalletDO
.
setPid
(
publishWallet
.
getPid
());
publishPayWalletDO
.
setPid
(
publishWallet
.
getPid
());
publishPayWalletDO
.
setCashFreeze
(
publishWallet
.
getCashFreeze
().
subtract
(
publisherWalletFlowVO
.
getCashAmount
())
publishPayWalletDO
.
setCashFreeze
(
publishWallet
.
getCashFreeze
().
add
(
publisherWalletFlowVO
.
getCashAmount
())
.
add
(
publisherWalletFlowVO
.
getUrgentYxjAmount
()).
add
(
publisherWalletFlowVO
.
getTopYxjAmount
()));
.
add
(
publisherWalletFlowVO
.
getUrgentYxjAmount
()).
add
(
publisherWalletFlowVO
.
getTopYxjAmount
()));
publishPayWalletDO
.
setSalaryFreeze
(
publishWallet
.
getSalaryFreeze
().
subtract
(
publisherWalletFlowVO
.
getSalaryAmount
())
publishPayWalletDO
.
setSalaryFreeze
(
publishWallet
.
getSalaryFreeze
().
add
(
publisherWalletFlowVO
.
getSalaryAmount
())
.
add
(
publisherWalletFlowVO
.
getTopSalaryAmount
()).
add
(
publisherWalletFlowVO
.
getUrgentSalaryAmount
()));
.
add
(
publisherWalletFlowVO
.
getTopSalaryAmount
()).
add
(
publisherWalletFlowVO
.
getUrgentSalaryAmount
()));
int
publishUpdateCount
=
payWalletDao
.
updatePayWallet
(
publishPayWalletDO
);
int
publishUpdateCount
=
payWalletDao
.
updatePayWallet
(
publishPayWalletDO
);
if
(
publishUpdateCount
<=
0
)
{
if
(
publishUpdateCount
<=
0
)
{
...
@@ -248,14 +248,12 @@ public class PayWalletServiceImpl implements PayWalletService {
...
@@ -248,14 +248,12 @@ public class PayWalletServiceImpl implements PayWalletService {
assert
flyerWalletFlowVO
!=
null
;
assert
flyerWalletFlowVO
!=
null
;
int
flyerUpdateCount
=
addFlyerSalary
(
publisherWalletFlowVO
,
flyerWalletFlowVO
,
flyerWallet
);
int
flyerUpdateCount
=
addFlyerSalary
(
publisherWalletFlowVO
,
flyerWalletFlowVO
,
flyerWallet
);
if
(
flyerUpdateCount
>
0
)
{
if
(
flyerUpdateCount
>
0
)
{
// 记录订单保证金退回记录
sendBackPledge
(
flyerWalletFlowVO
);
// 记录订单结算流水记录
// 记录订单结算流水记录
PayLogDO
flyerPayLogDO
=
buildPayLogDO
(
null
,
flyerWalletFlowVO
);
PayLogDO
flyerPayLogDO
=
buildFlyerLog
(
publisherWalletFlowVO
,
flyerWalletFlowVO
.
getUserAccountId
());
flyerPayLogDO
.
setSalaryAmtPaid
(
publisherWalletFlowVO
.
getFlyerSalaryAmount
());
flyerPayLogDO
.
setOperateUser
(
publisherWalletFlowVO
.
getUserAccountId
());
// 插入接单者流水记录表
// 插入接单者流水记录表
payWalletDao
.
insertPayLogDO
(
flyerPayLogDO
);
payWalletDao
.
insertPayLogDO
(
flyerPayLogDO
);
// 记录订单保证金退回记录
sendBackPledge
(
flyerWalletFlowVO
);
return
ResultBody
.
success
();
return
ResultBody
.
success
();
}
else
{
}
else
{
log
.
error
(
"正常结算时,接单方用户钱包更新失败,接单者id是:{},发布者传参是:{}"
,
flyerWalletFlowVO
.
getUserAccountId
(),
publisherWalletFlowVO
);
log
.
error
(
"正常结算时,接单方用户钱包更新失败,接单者id是:{},发布者传参是:{}"
,
flyerWalletFlowVO
.
getUserAccountId
(),
publisherWalletFlowVO
);
...
@@ -292,13 +290,12 @@ public class PayWalletServiceImpl implements PayWalletService {
...
@@ -292,13 +290,12 @@ public class PayWalletServiceImpl implements PayWalletService {
assert
flyerWalletFlowVO
!=
null
;
assert
flyerWalletFlowVO
!=
null
;
int
flyerUpdateCount
=
addFlyerSalary
(
publisherWalletFlowVO
,
flyerWalletFlowVO
,
flyerWallet
);
int
flyerUpdateCount
=
addFlyerSalary
(
publisherWalletFlowVO
,
flyerWalletFlowVO
,
flyerWallet
);
if
(
flyerUpdateCount
>
0
)
{
if
(
flyerUpdateCount
>
0
)
{
// 记录
流水
记录
// 记录
订单保证金退回
记录
PayLogDO
flyerPayLogDO
=
buildPayLogDO
(
null
,
flyerWalletFlowVO
);
sendBackPledge
(
flyerWalletFlowVO
);
flyerPayLogDO
.
setSalaryAmtPaid
(
publisherWalletFlowVO
.
getFlyerSalaryAmount
());
// 记录订单结算流水记录
flyerPayLogDO
.
setOperateUser
(
publish
erWalletFlowVO
.
getUserAccountId
());
PayLogDO
flyerPayLogDO
=
buildFlyerLog
(
publisherWalletFlowVO
,
fly
erWalletFlowVO
.
getUserAccountId
());
// 插入接单者流水记录表
// 插入接单者流水记录表
payWalletDao
.
insertPayLogDO
(
flyerPayLogDO
);
payWalletDao
.
insertPayLogDO
(
flyerPayLogDO
);
sendBackPledge
(
flyerWalletFlowVO
);
return
ResultBody
.
success
();
return
ResultBody
.
success
();
}
else
{
}
else
{
log
.
error
(
"飞手未确认修改金额大于原订单状态时,接单方用户钱包更新失败,接单者id是:{},发布者传参是:{}"
,
flyerWalletFlowVO
.
getUserAccountId
(),
publisherWalletFlowVO
);
log
.
error
(
"飞手未确认修改金额大于原订单状态时,接单方用户钱包更新失败,接单者id是:{},发布者传参是:{}"
,
flyerWalletFlowVO
.
getUserAccountId
(),
publisherWalletFlowVO
);
...
@@ -325,13 +322,12 @@ public class PayWalletServiceImpl implements PayWalletService {
...
@@ -325,13 +322,12 @@ public class PayWalletServiceImpl implements PayWalletService {
assert
flyerWalletFlowVO
!=
null
;
assert
flyerWalletFlowVO
!=
null
;
int
flyerUpdateCount
=
addFlyerSalary
(
publisherWalletFlowVO
,
flyerWalletFlowVO
,
flyerWallet
);
int
flyerUpdateCount
=
addFlyerSalary
(
publisherWalletFlowVO
,
flyerWalletFlowVO
,
flyerWallet
);
if
(
flyerUpdateCount
>
0
)
{
if
(
flyerUpdateCount
>
0
)
{
// 记录
流水
记录
// 记录
订单保证金退回
记录
PayLogDO
flyerPayLogDO
=
buildPayLogDO
(
null
,
flyerWalletFlowVO
);
sendBackPledge
(
flyerWalletFlowVO
);
flyerPayLogDO
.
setSalaryAmtPaid
(
publisherWalletFlowVO
.
getFlyerSalaryAmount
());
// 记录订单结算流水记录
flyerPayLogDO
.
setOperateUser
(
publish
erWalletFlowVO
.
getUserAccountId
());
PayLogDO
flyerPayLogDO
=
buildFlyerLog
(
publisherWalletFlowVO
,
fly
erWalletFlowVO
.
getUserAccountId
());
// 插入接单者流水记录表
// 插入接单者流水记录表
payWalletDao
.
insertPayLogDO
(
flyerPayLogDO
);
payWalletDao
.
insertPayLogDO
(
flyerPayLogDO
);
sendBackPledge
(
flyerWalletFlowVO
);
return
ResultBody
.
success
();
return
ResultBody
.
success
();
}
else
{
}
else
{
log
.
error
(
"飞手确认修改金额小于原订单状态,接单方用户钱包更新失败,接单者id是:{},发布者传参是:{}"
,
flyerWalletFlowVO
.
getUserAccountId
(),
publisherWalletFlowVO
);
log
.
error
(
"飞手确认修改金额小于原订单状态,接单方用户钱包更新失败,接单者id是:{},发布者传参是:{}"
,
flyerWalletFlowVO
.
getUserAccountId
(),
publisherWalletFlowVO
);
...
@@ -340,6 +336,18 @@ public class PayWalletServiceImpl implements PayWalletService {
...
@@ -340,6 +336,18 @@ public class PayWalletServiceImpl implements PayWalletService {
return
ResultBody
.
error
(
"钱包操作错误"
);
return
ResultBody
.
error
(
"钱包操作错误"
);
}
}
private
PayLogDO
buildFlyerLog
(
PublisherWalletFlowVO
publisherWalletFlowVO
,
Integer
userAccountId
)
{
PayLogDO
payLogWalletDO
=
new
PayLogDO
();
// 生成支付流水号(规则"T" + 时间戳 + 用户id + 随机数4位)
String
flyerPayNo
=
"T"
+
TDateUtil
.
getDateStr
(
new
Date
(),
TDateUtil
.
TYPE
)
+
userAccountId
+
CodeUtil
.
getRandomNum
(
4
);
payLogWalletDO
.
setPayMethod
(
publisherWalletFlowVO
.
getModeOfPayment
());
payLogWalletDO
.
setPayNo
(
flyerPayNo
);
payLogWalletDO
.
setUserAccountId
(
userAccountId
);
payLogWalletDO
.
setSalaryAmtPaid
(
publisherWalletFlowVO
.
getFlyerSalaryAmount
());
payLogWalletDO
.
setOperateUser
(
publisherWalletFlowVO
.
getUserAccountId
());
return
payLogWalletDO
;
}
private
void
sendBackPledge
(
FlyerWalletFlowVO
flyerWalletFlowVO
)
{
private
void
sendBackPledge
(
FlyerWalletFlowVO
flyerWalletFlowVO
)
{
if
(
flyerWalletFlowVO
.
getCashAmount
().
compareTo
(
new
BigDecimal
(
0
))
>
0
||
flyerWalletFlowVO
.
getSalaryAmount
().
compareTo
(
new
BigDecimal
(
0
))
>
0
)
{
if
(
flyerWalletFlowVO
.
getCashAmount
().
compareTo
(
new
BigDecimal
(
0
))
>
0
||
flyerWalletFlowVO
.
getSalaryAmount
().
compareTo
(
new
BigDecimal
(
0
))
>
0
)
{
PayLogDO
flyerPledgeSendBack
=
buildPayLogDO
(
null
,
flyerWalletFlowVO
);
PayLogDO
flyerPledgeSendBack
=
buildPayLogDO
(
null
,
flyerWalletFlowVO
);
...
...
csm-service/cms-service-user/src/main/java/com/mmc/iuav/user/service/xzsz/impl/XzServiceImpl.java
浏览文件 @
98d29ce4
...
@@ -332,7 +332,10 @@ public class XzServiceImpl implements XzService {
...
@@ -332,7 +332,10 @@ public class XzServiceImpl implements XzService {
if
(
withdrawCashApplyDetails
.
getTradeStatus
()
!=
null
&&
withdrawCashApplyDetails
.
getTradeStatus
().
equals
(
XzEnums
.
success
.
getCode
()))
{
if
(
withdrawCashApplyDetails
.
getTradeStatus
()
!=
null
&&
withdrawCashApplyDetails
.
getTradeStatus
().
equals
(
XzEnums
.
success
.
getCode
()))
{
return
"success"
;
return
"success"
;
}
}
// 判断返回的是成功还是失败
if
(
XzEnums
.
success
.
getCode
().
equals
(
data
.
getTradeStatus
()))
{
}
}
}
}
else
{
}
else
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论