Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yd-csf
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
xingmin
yd-csf
Commits
d5fc6aa4
Commit
d5fc6aa4
authored
Apr 20, 2026
by
jianan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增应付15
parent
57977c66
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
6 deletions
+3
-6
yd-csf-service/src/main/java/com/yd/csf/service/dto/FortuneAddRequest.java
+2
-1
yd-csf-service/src/main/java/com/yd/csf/service/service/impl/FortuneAccountServiceImpl.java
+1
-1
yd-csf-service/src/main/java/com/yd/csf/service/service/impl/FortuneServiceImpl.java
+0
-4
No files found.
yd-csf-service/src/main/java/com/yd/csf/service/dto/FortuneAddRequest.java
View file @
d5fc6aa4
...
@@ -5,6 +5,7 @@ import lombok.Data;
...
@@ -5,6 +5,7 @@ import lombok.Data;
import
java.io.Serializable
;
import
java.io.Serializable
;
import
java.math.BigDecimal
;
import
java.math.BigDecimal
;
import
java.time.LocalDate
;
import
java.util.Date
;
import
java.util.Date
;
@Data
@Data
...
@@ -97,7 +98,7 @@ public class FortuneAddRequest implements Serializable {
...
@@ -97,7 +98,7 @@ public class FortuneAddRequest implements Serializable {
* 出账日期
* 出账日期
*/
*/
@Schema
(
description
=
"出账日期"
,
requiredMode
=
Schema
.
RequiredMode
.
REQUIRED
)
@Schema
(
description
=
"出账日期"
,
requiredMode
=
Schema
.
RequiredMode
.
REQUIRED
)
private
Date
payoutDate
;
private
Local
Date
payoutDate
;
/**
/**
* 出账备注
* 出账备注
...
...
yd-csf-service/src/main/java/com/yd/csf/service/service/impl/FortuneAccountServiceImpl.java
View file @
d5fc6aa4
...
@@ -306,7 +306,7 @@ public class FortuneAccountServiceImpl extends ServiceImpl<FortuneAccountMapper,
...
@@ -306,7 +306,7 @@ public class FortuneAccountServiceImpl extends ServiceImpl<FortuneAccountMapper,
f
.
setCurrentPaymentRatio
(
BigDecimal
.
valueOf
(
100
));
f
.
setCurrentPaymentRatio
(
BigDecimal
.
valueOf
(
100
));
}
}
f
.
setStatus
(
FortuneStatusEnum
.
SENT
.
getItemValue
());
f
.
setStatus
(
FortuneStatusEnum
.
SENT
.
getItemValue
());
f
.
setActualPayoutDate
(
new
Date
());
//
f.setActualPayoutDate(new Date());
f
.
setUpdaterId
(
loginUserId
.
toString
());
f
.
setUpdaterId
(
loginUserId
.
toString
());
f
.
setUpdateTime
(
new
Date
());
f
.
setUpdateTime
(
new
Date
());
});
});
...
...
yd-csf-service/src/main/java/com/yd/csf/service/service/impl/FortuneServiceImpl.java
View file @
d5fc6aa4
...
@@ -226,10 +226,6 @@ public class FortuneServiceImpl extends ServiceImpl<FortuneMapper, Fortune>
...
@@ -226,10 +226,6 @@ public class FortuneServiceImpl extends ServiceImpl<FortuneMapper, Fortune>
fortune
.
setUpdaterId
(
loginUserId
);
fortune
.
setUpdaterId
(
loginUserId
);
fortune
.
setUpdateTime
(
new
Date
());
fortune
.
setUpdateTime
(
new
Date
());
// 更新实际出账日期
Date
actualPayoutDate
=
new
Date
();
fortune
.
setActualPayoutDate
(
actualPayoutDate
);
this
.
updateById
(
fortune
);
this
.
updateById
(
fortune
);
}
}
...
...
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