Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
bailuntec-cost
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
huluobin
bailuntec-cost
Commits
48b034b5
Commit
48b034b5
authored
Dec 22, 2023
by
jianshuqin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
批量打印增加关联借支单
parent
b32cf75d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
CostListPrintDto.java
...ain/java/com/bailuntec/cost/api/dto/CostListPrintDto.java
+4
-1
CostDomain.java
...main/java/com/blt/other/module/cost/model/CostDomain.java
+3
-0
No files found.
cost-interfaces/src/main/java/com/bailuntec/cost/api/dto/CostListPrintDto.java
View file @
48b034b5
...
@@ -3,6 +3,7 @@ package com.bailuntec.cost.api.dto;
...
@@ -3,6 +3,7 @@ package com.bailuntec.cost.api.dto;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
lombok.Data
;
import
lombok.Data
;
import
java.math.BigDecimal
;
import
java.util.Date
;
import
java.util.Date
;
@Data
@Data
...
@@ -28,6 +29,8 @@ public class CostListPrintDto {
...
@@ -28,6 +29,8 @@ public class CostListPrintDto {
private
String
dic
;
// 币种
private
String
dic
;
// 币种
private
String
amount
;
// 金额
private
String
amount
;
// 金额
private
String
txtAmount
;
// 金额(大写)
private
String
txtAmount
;
// 金额(大写)
private
String
supCostNo
;
// 关联借支单
private
BigDecimal
payCounteract
;
// 冲销金额
private
BigDecimal
payLendBalance
;
// 借还余额
}
}
cost-service/src/main/java/com/blt/other/module/cost/model/CostDomain.java
View file @
48b034b5
...
@@ -437,6 +437,9 @@ public class CostDomain implements Serializable {
...
@@ -437,6 +437,9 @@ public class CostDomain implements Serializable {
print
.
setBankCardStr
(
"付款账户"
);
print
.
setBankCardStr
(
"付款账户"
);
print
.
setCostReasonStr
(
"收款理由"
);
print
.
setCostReasonStr
(
"收款理由"
);
print
.
setCostAmountStr
(
"收款金额"
);
print
.
setCostAmountStr
(
"收款金额"
);
print
.
setSupCostNo
(
cost
.
getSupCostNo
());
print
.
setPayCounteract
(
cost
.
getPayCounteract
());
print
.
setPayLendBalance
(
cost
.
getPayLendBalance
());
print
.
setDic
(
cost
.
getPayDicDto
());
print
.
setDic
(
cost
.
getPayDicDto
());
print
.
setAmount
(
cost
.
getPayPlanAmountDto
());
print
.
setAmount
(
cost
.
getPayPlanAmountDto
());
print
.
setTxtAmount
(
MoneyUtil
.
getCnNum
(
cost
.
getPayPlanAmount
()));
print
.
setTxtAmount
(
MoneyUtil
.
getCnNum
(
cost
.
getPayPlanAmount
()));
...
...
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