Commit 57746098 by Huang Linyu

修复多球场抵用券不同类型比较不相等的问题

parent 8b50d63c
......@@ -79,7 +79,7 @@ public class MultipleCourseConditionBean {
if (StringUtils.hasText(productIds)) {
String[] productIdArray = productIds.split(",");
for (String s : productIdArray) {
if (StringUtils.hasText(s) && s.equals(t.getProductId())) {
if (StringUtils.hasText(s) && s.equals(t.getProductId()+"")) {
return multiCondition.getMultiAmount();
}
}
......
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 sign in to comment