记得上下班打卡 | git大法好,push需谨慎

Commit ac628f4d authored by zhengfuxin's avatar zhengfuxin

修改购物车bug

parent 59f17b39
...@@ -963,7 +963,7 @@ public class GoblinFrontServiceImpl implements GoblinFrontService { ...@@ -963,7 +963,7 @@ public class GoblinFrontServiceImpl implements GoblinFrontService {
goblinShoppingCartVoo1.setShopList(list); goblinShoppingCartVoo1.setShopList(list);
goblinShoppingCartVoo1.setGoblinShoppingCartId(IDGenerator.nextSnowId()); goblinShoppingCartVoo1.setGoblinShoppingCartId(IDGenerator.nextSnowId());
saveRedisMongodbMysqlShop(goblinShoppingCartVoo1,userId,type); saveRedisMongodbMysqlShop(goblinShoppingCartVoo1,userId,type);
insertShopCartMysql(goblinShoppingCartVoDetail.getCarId(),spuId,storeId,skuId,1,userId,type); insertShopCartMysql(goblinShoppingCartVoDetail.getCarId(),spuId,storeId,skuId,number,userId,type);
}else{ }else{
//查看是否有该商铺 //查看是否有该商铺
List<GoblinShoppingCartVo> list=goblinShoppingCartVoo.getShopList(); List<GoblinShoppingCartVo> list=goblinShoppingCartVoo.getShopList();
...@@ -1264,7 +1264,7 @@ public class GoblinFrontServiceImpl implements GoblinFrontService { ...@@ -1264,7 +1264,7 @@ public class GoblinFrontServiceImpl implements GoblinFrontService {
LinkedList<Object[]> sqlData = CollectionUtil.linkedListObjectArr(); LinkedList<Object[]> sqlData = CollectionUtil.linkedListObjectArr();
sqlData.add(new Object[]{ sqlData.add(new Object[]{
//car_id, user_id, store_id,spu_id, sku_id, `number`,marketing_id, del_tag, `comment` //car_id, user_id, store_id,spu_id, sku_id, `number`,marketing_id, del_tag, `comment`
carId,userId,storeId,spuId,skuId,1,"",0,"",type carId,userId,storeId,spuId,skuId,number,"",0,"",type
}); });
String sqlDatas = SqlMapping.gets(sqls, sqlData); String sqlDatas = SqlMapping.gets(sqls, sqlData);
queueUtils.sendMsgByRedis(MQConst.GoblinQueue.GOBLIN_SHOP_CART.getKey(), sqlDatas); queueUtils.sendMsgByRedis(MQConst.GoblinQueue.GOBLIN_SHOP_CART.getKey(), sqlDatas);
......
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