...
|
...
|
@@ -117,7 +117,7 @@ public class ProductGoodsLogicService { |
|
|
jsonObj.put("images_url", g.getColorImage() == null ? "" : g.getColorImage());
|
|
|
jsonObj.put("product_skc", g.getProductSkc() == null ? "" : g.getProductSkc());
|
|
|
jsonObj.put("is_default", g.getIsDefault() == null ? "" : g.getIsDefault());
|
|
|
jsonObj.put("storage_num", storagesMap.get(g.getId()) == null ? 0 : g.getIsDefault());
|
|
|
jsonObj.put("storage_num", storagesMap.get(g.getId()) == null ? 0 : storagesMap.get(g.getId()));
|
|
|
productGoodBO.setGoodList(jsonObj);
|
|
|
productGoodBOs.add(productGoodBO);
|
|
|
}
|
...
|
...
|
|