Browse Source

fix

release_toaliyun_real
winter 2 years ago
parent
commit
138faf2a06
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      mallinkService/src/main/java/com/iformall/service/helper/WxBillAllHelper.java

+ 2
- 2
mallinkService/src/main/java/com/iformall/service/helper/WxBillAllHelper.java View File

@@ -106,10 +106,10 @@ public class WxBillAllHelper {
bill.setRentShopType(wxMerchant.getType());
Date nowBegin = DateUtils.getDayBegin(new Date());
if (null != wxMerchant.getOweBillBeforeDays()) {
bill.setOweBillLastTime(DateUtils.getSecondsTimeAfter(wxMerchant.getOweBillBeforeDays()*3600, nowBegin));
bill.setOweBillLastTime(DateUtils.getSecondsTimeAfter(wxMerchant.getOweBillBeforeDays()*3600*24, nowBegin));
}
if (null != wxMerchant.getNearBillBeforeDays()) {
bill.setNearBillLastTime(DateUtils.getSecondsTimeAfter(wxMerchant.getNearBillBeforeDays()*3600, nowBegin));
bill.setNearBillLastTime(DateUtils.getSecondsTimeAfter(wxMerchant.getNearBillBeforeDays()*3600*24, nowBegin));
}
}


Loading…
Cancel
Save