...
|
...
|
@@ -156,7 +156,7 @@ public class ProductListHelper { |
|
|
Map<String, List<Map<String, Object>>> results = new HashMap<>();
|
|
|
for (Map.Entry<String, List<Map<String, Object>>> entry : productEsSourceListMap.entrySet()) {
|
|
|
List<Map<String, Object>> tempList = entry.getValue();
|
|
|
List<Map<String, Object>> sknReturnInfoList = entry.getValue();
|
|
|
List<Map<String, Object>> sknReturnInfoList = new ArrayList<>();
|
|
|
for (Map<String, Object> productEsSource : tempList) {
|
|
|
String productSkn = MapUtils.getString(productEsSource, ProductIndexEsField.productSkn, "0");
|
|
|
if (productReturnInfoMap.containsKey(productSkn)) {
|
...
|
...
|
|