Authored by caoyan

Merge branch 'test6.9.12' of http://git.yoho.cn/ufo/yohoufo-fore into test6.9.12

... ... @@ -219,7 +219,10 @@ public class ErpGWOrderController {
@IgnoreSession
@RequestMapping(value = "/findOrderGoods")
public ApiResponse findOrderGoods(@RequestParam(value = "orderCodes") String orderCodes) {
List<Long> orderCodeList = Splitter.on(",").trimResults().splitToList(orderCodes).stream()
List<Long> orderCodeList = Splitter.on(",")
.trimResults()
.omitEmptyStrings()
.splitToList(orderCodes).stream()
.map(Long::valueOf)
.collect(Collectors.toList());
... ...