Commit 4c05c59d authored by unset's avatar unset

Merge remote-tracking branch 'origin/dev' into dev

parents 7c8548ae cda41e2a
...@@ -20,4 +20,8 @@ public class ItemInfoVo { ...@@ -20,4 +20,8 @@ public class ItemInfoVo {
private String img; private String img;
private String name; private String name;
public void setName(String name) {
this.name = name;
}
} }
...@@ -121,7 +121,7 @@ public class ConfirmOrderService { ...@@ -121,7 +121,7 @@ public class ConfirmOrderService {
itemInfoVo.setNumber(itemInfoDto.getNumber()); itemInfoVo.setNumber(itemInfoDto.getNumber());
itemInfoVo.setImg(imageImgStorage.getCoverImg()); itemInfoVo.setImg(imageImgStorage.getCoverImg());
itemInfoVo.setDetailJson(JSONObject.toJSONString(imageImgStorage)); itemInfoVo.setDetailJson(JSONObject.toJSONString(imageImgStorage));
itemInfoVo.setName(imageImgStorage.getName()); itemInfoVo.setName(imageImgStorage.getName() + " (" + imageInfoRelation.getFileWidth()+ ")");
itemInfoVoList.add(itemInfoVo); itemInfoVoList.add(itemInfoVo);
//总数量 //总数量
number.updateAndGet(v -> v + itemInfoDto.getNumber()); number.updateAndGet(v -> v + itemInfoDto.getNumber());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment