Authored by gemingdan

update

... ... @@ -62,8 +62,8 @@ public class ProductAttributeService {
values.forEach(v->{
JSONObject vobj=(JSONObject)v;
for(int i=0;i<attributeValueIds.length;i++){
String id=(String)vobj.get("id");
if(id!=null&&id.endsWith(attributeValueIds[i])){
Integer id=(Integer)vobj.get("id");
if(id!=null&&attributeValueIds[i].endsWith(id.toString())){
attributeNameSet.add((String)vobj.get("name"));
}
}
... ...