|
@@ -235,7 +235,9 @@ public class FdkkSceneEditService {
|
|
|
}
|
|
|
List<CdfProduct> cdfProductList = new ArrayList<>();
|
|
|
for (Object o : jsonArray) {
|
|
|
- cdfProductList.add(productMap.get(o));
|
|
|
+ if(productMap.get(o)!=null){
|
|
|
+ cdfProductList.add(productMap.get(o));
|
|
|
+ }
|
|
|
}
|
|
|
if(cdfProductList.size() >0){
|
|
|
tag.put("products",cdfProductList);
|