|
|
@@ -82,8 +82,9 @@ public class EasyExcelUtils {
|
|
|
private static List<List<Object>> dataList(List<InvAccount> invAccounts, List<InvAccountOp> invAccountOpList, List<InvAccountProfit> invAccountProfitList) {
|
|
|
List<List<Object>> list = ListUtils.newArrayList();
|
|
|
invAccounts.forEach(invAccount -> {
|
|
|
- List<Object> data = ListUtils.newArrayList();
|
|
|
+
|
|
|
invAccount.getInvAccountCardList().forEach(invAccountCard -> {
|
|
|
+ List<Object> data = ListUtils.newArrayList();
|
|
|
if (invAccountCard.getBankCardNum() != null) {
|
|
|
data.add(invAccount.getOuterFlag().equals("0") ? "内部账户" : "外部账户");
|
|
|
data.add(invAccount.getAccountName());
|