Commit 48b034b5 by jianshuqin

批量打印增加关联借支单

parent b32cf75d
......@@ -3,6 +3,7 @@ package com.bailuntec.cost.api.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
@Data
......@@ -28,6 +29,8 @@ public class CostListPrintDto {
private String dic; // 币种
private String amount; // 金额
private String txtAmount; // 金额(大写)
private String supCostNo; // 关联借支单
private BigDecimal payCounteract; // 冲销金额
private BigDecimal payLendBalance; // 借还余额
}
......@@ -437,6 +437,9 @@ public class CostDomain implements Serializable {
print.setBankCardStr("付款账户");
print.setCostReasonStr("收款理由");
print.setCostAmountStr("收款金额");
print.setSupCostNo(cost.getSupCostNo());
print.setPayCounteract(cost.getPayCounteract());
print.setPayLendBalance(cost.getPayLendBalance());
print.setDic(cost.getPayDicDto());
print.setAmount(cost.getPayPlanAmountDto());
print.setTxtAmount(MoneyUtil.getCnNum(cost.getPayPlanAmount()));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment