ERP:完成 payment 付款单的逻辑 100%

This commit is contained in:
YunaiV
2024-02-14 17:13:48 +08:00
parent 0d551a4408
commit 9e3858aea7
15 changed files with 163 additions and 21 deletions

View File

@ -311,4 +311,8 @@ public class CollectionUtils {
return obj == null ? Collections.emptyList() : Collections.singleton(obj);
}
public static <T> List<T> newArrayList(List<List<T>> list) {
return list.stream().flatMap(Collection::stream).collect(Collectors.toList());
}
}