fix transflow clientIds

master
luoyang 5 years ago
parent 14921df45a
commit fbcca3a69b

@ -9,7 +9,7 @@
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>manage</artifactId> <artifactId>manage</artifactId>
<version>1.3.41</version> <version>1.3.42</version>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jib-maven-plugin.version>1.4.0</jib-maven-plugin.version> <jib-maven-plugin.version>1.4.0</jib-maven-plugin.version>

@ -1689,7 +1689,7 @@ public class TradeLogServiceImpl implements TradeLogService {
String[] clientIds = query.getClient_ids(); String[] clientIds = query.getClient_ids();
List<String> clientIdList = new ArrayList<>(); List<String> clientIdList = new ArrayList<>();
clientIdList.add("ALL"); clientIdList.add("ALL");
if (clientIds.length >= 2) { if (clientIds!=null && clientIds.length >= 2) {
clientIdList.addAll(Arrays.asList(clientIds)); clientIdList.addAll(Arrays.asList(clientIds));
} }
HSSFSheet sheet = null; HSSFSheet sheet = null;

Loading…
Cancel
Save