Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-api-boot-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-api-boot-master
Commits
93bae80a
Commit
93bae80a
authored
May 13, 2024
by
lanbaoming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2024-05-03修改BUG
parent
5643d79b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
OrderFeeApplicationServiceImpl.java
...er/service/order/impl/OrderFeeApplicationServiceImpl.java
+10
-0
No files found.
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/service/order/impl/OrderFeeApplicationServiceImpl.java
View file @
93bae80a
...
@@ -328,6 +328,13 @@ public class OrderFeeApplicationServiceImpl extends AbstractService<OrderFeeAppl
...
@@ -328,6 +328,13 @@ public class OrderFeeApplicationServiceImpl extends AbstractService<OrderFeeAppl
}
}
}
}
/* lanbm 2024-05-11 添加注释
//result
1, "处理中",
2, "通过",
3, "不通过",
4, "取消"
*/
@Override
@Override
@Transactional
(
rollbackFor
=
Exception
.
class
)
@Transactional
(
rollbackFor
=
Exception
.
class
)
public
void
updateFeeApproveBatchResult
(
String
id
,
int
result
)
{
public
void
updateFeeApproveBatchResult
(
String
id
,
int
result
)
{
...
@@ -347,6 +354,7 @@ public class OrderFeeApplicationServiceImpl extends AbstractService<OrderFeeAppl
...
@@ -347,6 +354,7 @@ public class OrderFeeApplicationServiceImpl extends AbstractService<OrderFeeAppl
DictDataRespDTO
dictDto
=
DictFrameworkUtils
.
getDictDataFromCache
(
"receivable_fee_type"
,
String
.
valueOf
(
feeApplicationDO
.
getFeeType
()));
DictDataRespDTO
dictDto
=
DictFrameworkUtils
.
getDictDataFromCache
(
"receivable_fee_type"
,
String
.
valueOf
(
feeApplicationDO
.
getFeeType
()));
if
(
feeApplicationDO
.
getReceivableId
()
!=
null
&&
feeApplicationDO
.
getReceivableId
()
>
0
)
{
if
(
feeApplicationDO
.
getReceivableId
()
!=
null
&&
feeApplicationDO
.
getReceivableId
()
>
0
)
{
ReceivableDO
receivableDO
=
new
ReceivableDO
();
ReceivableDO
receivableDO
=
new
ReceivableDO
();
//应收款ID lanbm 2024-05-11 添加注释
receivableDO
.
setId
(
Long
.
valueOf
(
feeApplicationDO
.
getReceivableId
()));
receivableDO
.
setId
(
Long
.
valueOf
(
feeApplicationDO
.
getReceivableId
()));
receivableDO
.
setTitleZh
(
dictDto
.
getLabel
());
receivableDO
.
setTitleZh
(
dictDto
.
getLabel
());
receivableDO
.
setTitleEn
(
dictDto
.
getLabelEn
());
receivableDO
.
setTitleEn
(
dictDto
.
getLabelEn
());
...
@@ -363,6 +371,8 @@ public class OrderFeeApplicationServiceImpl extends AbstractService<OrderFeeAppl
...
@@ -363,6 +371,8 @@ public class OrderFeeApplicationServiceImpl extends AbstractService<OrderFeeAppl
receivableDO
.
setFeeSource
(
2
);
receivableDO
.
setFeeSource
(
2
);
receivableDO
.
setAuthor
(
feeApplicationDO
.
getApplicationAuthor
());
receivableDO
.
setAuthor
(
feeApplicationDO
.
getApplicationAuthor
());
receivableDO
.
setRemark
(
feeApplicationDO
.
getRemarks
());
receivableDO
.
setRemark
(
feeApplicationDO
.
getRemarks
());
//lanbm 2024-05-11 添加注释,订单费用申请,是申请付给我们的费用,
// 所以要更新应收款信息
receivableService
.
updateReceivableById
(
receivableDO
);
receivableService
.
updateReceivableById
(
receivableDO
);
}
else
{
}
else
{
ReceivableCreateReqVO
receivableCreateReqVO
=
new
ReceivableCreateReqVO
();
ReceivableCreateReqVO
receivableCreateReqVO
=
new
ReceivableCreateReqVO
();
...
...
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