Commit 2f7abd75 by 周晓航

fix:修复套餐商品->多个数量的情况下,商品计算有问题

Signed-off-by: 周晓航 <xiaohang.zhou@freemud.com>
parent ac40254e
......@@ -190,7 +190,7 @@ public class CalculationCommonService {
}
choice.setAmount(mt.getRealAmount().longValue());
}
originPrice += choice.getFinalPrice() * choice.getQty()*cartGoods.getQty();
originPrice += choice.getFinalPrice() * choice.getQty();
}
cartGoods.setAmount(cartGoods.getAmount() + amount);
}
......
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