Browse Source

fix

release_toaliyun_real
winter 1 year ago
parent
commit
b7d92340a9
1 changed files with 9 additions and 4 deletions
  1. +9
    -4
      mallinkService/src/main/java/com/iformall/service/impl/WxEnergyServiceImpl.java

+ 9
- 4
mallinkService/src/main/java/com/iformall/service/impl/WxEnergyServiceImpl.java View File

@@ -317,10 +317,15 @@ public class WxEnergyServiceImpl implements WxEnergyService {
}
Map<Long, String> buildingMap = wxMallBuildingService.getBuildingMap(record);
Map<Long, String> floorMap = wxMallFloorService.getFloorMap(record);
WxShop sq = new WxShop();
sq.updateTenantInfo(record);
sq.setIds(shopIdList);
Map<Long, WxShop> shopMap = wxShopService.findShopMap(sq);
Map<Long, WxShop> shopMap = null;
if (shopIdList.size() > 0 ) {
WxShop sq = new WxShop();
sq.updateTenantInfo(record);
sq.setIds(shopIdList);
wxShopService.findShopMap(sq);
}
Map<Long,String> meterAliasMap = new HashMap<Long,String>();
for (int i = 0 ; i < sflist.size(); i++) {
WxEnergyMeterShopFloor sf = sflist.get(i);


Loading…
Cancel
Save