Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
I
ims
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
iuav
ims
Commits
00959e00
提交
00959e00
authored
8月 31, 2023
作者:
张小凤
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
RequirementsServiceImpl(update)
上级
803bacf9
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
11 行增加
和
12 行删除
+11
-12
RequirementsServiceImpl.java
...mmc/csf/release/service/impl/RequirementsServiceImpl.java
+11
-12
没有找到文件。
release-service/src/main/java/com/mmc/csf/release/service/impl/RequirementsServiceImpl.java
浏览文件 @
00959e00
...
@@ -1387,6 +1387,16 @@ public class RequirementsServiceImpl implements RequirementsService {
...
@@ -1387,6 +1387,16 @@ public class RequirementsServiceImpl implements RequirementsService {
if
(
serviceFlowId
!=
1
)
{
if
(
serviceFlowId
!=
1
)
{
return
ResultBody
.
error
(
"只有未抢单的信息才能被修改"
);
return
ResultBody
.
error
(
"只有未抢单的信息才能被修改"
);
}
}
//用户钱包信息接口
ResultBody
resultBody
=
getCurrentUserPayWalletInfo
(
request
);
GetOrderNumberDTO
orderNumberDTO
=
new
GetOrderNumberDTO
();
orderNumberDTO
.
setUserAccountId
(
requirementsEditVO
.
getUserAccountId
());
PayWalletDTO
payWalletDTO
=
(
PayWalletDTO
)
resultBody
.
getResult
();
//剩余后台云享金
BigDecimal
cashAmt
=
payWalletDTO
.
getCashAmt
();
//剩余佣金
BigDecimal
salaryAmt
=
payWalletDTO
.
getSalaryAmt
();
BigDecimal
orderAmount
=
requirementsEditVO
.
getOrderAmount
();
//先退款
//先退款
if
(
requirementsInfoDO
.
getCashAmount
().
compareTo
(
BigDecimal
.
ZERO
)
!=
0
||
if
(
requirementsInfoDO
.
getCashAmount
().
compareTo
(
BigDecimal
.
ZERO
)
!=
0
||
requirementsInfoDO
.
getSalaryAmount
().
compareTo
(
BigDecimal
.
ZERO
)
!=
0
)
{
requirementsInfoDO
.
getSalaryAmount
().
compareTo
(
BigDecimal
.
ZERO
)
!=
0
)
{
...
@@ -1410,21 +1420,10 @@ public class RequirementsServiceImpl implements RequirementsService {
...
@@ -1410,21 +1420,10 @@ public class RequirementsServiceImpl implements RequirementsService {
applyRefund
(
applyRefundVO
,
request
.
getHeader
(
"token"
));
applyRefund
(
applyRefundVO
,
request
.
getHeader
(
"token"
));
}
}
WalletFlowVO
wo
=
new
WalletFlowVO
();
WalletFlowVO
wo
=
new
WalletFlowVO
();
PublisherWalletFlowVO
pwf
=
new
PublisherWalletFlowVO
();
PublisherWalletFlowVO
pwf
=
new
PublisherWalletFlowVO
();
IsNullConvertZeroUtil
.
checkIsNull
(
pwf
);
IsNullConvertZeroUtil
.
checkIsNull
(
pwf
);
//用户钱包信息接口
ResultBody
resultBody
=
getCurrentUserPayWalletInfo
(
request
);
GetOrderNumberDTO
orderNumberDTO
=
new
GetOrderNumberDTO
();
orderNumberDTO
.
setUserAccountId
(
requirementsEditVO
.
getUserAccountId
());
PayWalletDTO
payWalletDTO
=
(
PayWalletDTO
)
resultBody
.
getResult
();
//剩余后台云享金
BigDecimal
cashAmt
=
payWalletDTO
.
getCashAmt
();
//剩余佣金
BigDecimal
salaryAmt
=
payWalletDTO
.
getSalaryAmt
();
BigDecimal
orderAmount
=
requirementsEditVO
.
getOrderAmount
();
String
paymentType
=
requirementsEditVO
.
getPaymentType
();
String
paymentType
=
requirementsEditVO
.
getPaymentType
();
String
[]
split
=
paymentType
.
split
(
","
);
String
[]
split
=
paymentType
.
split
(
","
);
Set
<
String
>
collect
=
Arrays
.
asList
(
split
).
stream
().
collect
(
Collectors
.
toSet
());
Set
<
String
>
collect
=
Arrays
.
asList
(
split
).
stream
().
collect
(
Collectors
.
toSet
());
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论