Browse Source

fix[litemall-wx-api]: 订单商品评价设置不正确

Junling Bu 7 years ago
parent
commit
2d007e822b

+ 2 - 1
litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxOrderController.java

@@ -942,8 +942,9 @@ public class WxOrderController {
         // 1. 创建评价
         LitemallComment comment = new LitemallComment();
         comment.setUserId(userId);
+        comment.setType((byte)0);
         comment.setValueId(orderGoods.getGoodsId());
-        comment.setType((byte)1);
+        comment.setStar(star.shortValue());
         comment.setContent(content);
         comment.setHasPicture(hasPicture);
         comment.setPicUrls(picUrls.toArray(new String[]{}));