Browse Source

[积分][修改]:积分计算规则类型问题

release_toaliyun_real
hanxueda 7 years ago
parent
commit
aa6dcb34e8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mallinkService/src/main/java/com/iformall/service/impl/WxCreditHistoryServiceImpl.java

+ 1
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxCreditHistoryServiceImpl.java View File

@@ -361,7 +361,7 @@ public class WxCreditHistoryServiceImpl implements WxCreditHistoryService {
for (int i = 0; i < busRules.size(); i++) { for (int i = 0; i < busRules.size(); i++) {
JSONObject bus = (JSONObject) busRules.get(i); JSONObject bus = (JSONObject) busRules.get(i);
Integer businessId1 = bus.getInteger("businessId"); Integer businessId1 = bus.getInteger("businessId");
if (record.getBusinessId().equals(businessId1)) {
if (record.getBusinessId().equals(Long.valueOf(businessId1))) {
busRule = bus; busRule = bus;
} }
if (businessId1.equals(EnumBusiness.BUSINESS_ID6.getCode())) { if (businessId1.equals(EnumBusiness.BUSINESS_ID6.getCode())) {


Loading…
Cancel
Save