|
@@ -144,6 +144,8 @@ public class EasyExcelUtils {
|
|
|
head6.add("支出金额");
|
|
head6.add("支出金额");
|
|
|
List<String> head7 = ListUtils.newArrayList();
|
|
List<String> head7 = ListUtils.newArrayList();
|
|
|
head7.add("转账类型");
|
|
head7.add("转账类型");
|
|
|
|
|
+ List<String> head8 = ListUtils.newArrayList();
|
|
|
|
|
+ head8.add("备注");
|
|
|
|
|
|
|
|
list.add(0, head);
|
|
list.add(0, head);
|
|
|
list.add(1, head1);
|
|
list.add(1, head1);
|
|
@@ -153,6 +155,7 @@ public class EasyExcelUtils {
|
|
|
list.add(5, head5);
|
|
list.add(5, head5);
|
|
|
list.add(6, head6);
|
|
list.add(6, head6);
|
|
|
list.add(7, head7);
|
|
list.add(7, head7);
|
|
|
|
|
+ list.add(8, head8);
|
|
|
invAccountProfitList.forEach(invAccountProfit -> {
|
|
invAccountProfitList.forEach(invAccountProfit -> {
|
|
|
List<String> head0 = ListUtils.newArrayList();
|
|
List<String> head0 = ListUtils.newArrayList();
|
|
|
head0.add(invAccountProfit.getProfitName());
|
|
head0.add(invAccountProfit.getProfitName());
|
|
@@ -175,6 +178,7 @@ public class EasyExcelUtils {
|
|
|
data.add(invAccountOperate.getFundFen());
|
|
data.add(invAccountOperate.getFundFen());
|
|
|
data.add(invAccountOperate.getApplyAmount());
|
|
data.add(invAccountOperate.getApplyAmount());
|
|
|
data.add(invAccountOperate.getRevenueOutlay().equals("0") ? "收入" : "支出");
|
|
data.add(invAccountOperate.getRevenueOutlay().equals("0") ? "收入" : "支出");
|
|
|
|
|
+ data.add(invAccountOperate.getRemark());
|
|
|
invAccountProfitList.forEach(invAccountProfit -> {
|
|
invAccountProfitList.forEach(invAccountProfit -> {
|
|
|
if (invAccountOperate.getOutProfit() != null) {
|
|
if (invAccountOperate.getOutProfit() != null) {
|
|
|
for (Map.Entry<String, Object> entry : invAccountOperate.getOutProfit().entrySet()) {
|
|
for (Map.Entry<String, Object> entry : invAccountOperate.getOutProfit().entrySet()) {
|