| | |
| | | import com.java110.intf.community.IUnitInnerServiceSMO; |
| | | import com.java110.job.adapt.DatabusAdaptImpl; |
| | | import com.java110.job.adapt.hcGov.HcGovConstant; |
| | | import com.java110.job.adapt.hcGov.asyn.BaseHcGovSendAsyn; |
| | | import com.java110.po.floor.FloorPo; |
| | | import com.java110.utils.cache.MappingCache; |
| | | import com.java110.utils.kafka.KafkaFactory; |
| | |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import java.util.List; |
| | | import java.util.UUID; |
| | | |
| | | /** |
| | | * 新增楼栋同步HC政务接口 |
| | |
| | | |
| | | @Autowired |
| | | private IUnitInnerServiceSMO unitInnerServiceSMOImpl; |
| | | @Autowired |
| | | private BaseHcGovSendAsyn baseHcGovSendAsynImpl; |
| | | |
| | | |
| | | /** |
| | | * |
| | | * @param business 当前处理业务 |
| | | * @param businesses 所有业务信息 |
| | | */ |
| | |
| | | for (int bOwnerCarIndex = 0; bOwnerCarIndex < businessOwnerCars.size(); bOwnerCarIndex++) { |
| | | JSONObject businessOwnerCar = businessOwnerCars.getJSONObject(bOwnerCarIndex); |
| | | doAddFloor(business, businessOwnerCar); |
| | | |
| | | } |
| | | } |
| | | } |
| | |
| | | communityDto.setCommunityId(floorPo.getCommunityId()); |
| | | List<CommunityDto> communityDtos = communityInnerServiceSMOImpl.queryCommunitys(communityDto); |
| | | |
| | | Assert.listOnlyOne(communityDtos, "未包含小区信息"); |
| | | Assert.listNotNull(communityDtos, "未包含小区信息"); |
| | | CommunityDto tmpCommunityDto = communityDtos.get(0); |
| | | String extCommunityId = ""; |
| | | String communityId = tmpCommunityDto.getCommunityId(); |
| | | String floorId = floorPo.getFloorId(); |
| | | |
| | | for (CommunityAttrDto communityAttrDto : tmpCommunityDto.getCommunityAttrDtos()) { |
| | | if (HcGovConstant.EXT_COMMUNITY_ID.equals(communityAttrDto.getSpecCd())) { |
| | |
| | | unitDto.setFloorId(floorPo.getFloorId()); |
| | | unitDto.setCommunityId(floorPo.getCommunityId()); |
| | | List<UnitDto> unitDtos = unitInnerServiceSMOImpl.queryUnits(unitDto); |
| | | Assert.listOnlyOne(unitDtos, "未包含单元信息"); |
| | | String layerCount = "0"; |
| | | String floorUse = "0"; |
| | | if (unitDtos != null && unitDtos.size() > 0) { |
| | | layerCount = unitDtos.get(0).getLayerCount(); |
| | | floorUse = unitDtos.size() + ""; |
| | | } |
| | | |
| | | |
| | | JSONObject body = new JSONObject(); |
| | | body.put("floorNum", floorPo.getFloorNum()); |
| | | body.put("floorName", floorPo.getName()); |
| | | body.put("floorType", MappingCache.getValue(HcGovConstant.GOV_DOMAIN,HcGovConstant.FLOOR_TYPE)); |
| | | body.put("floorType", MappingCache.getValue(HcGovConstant.GOV_DOMAIN, HcGovConstant.FLOOR_TYPE)); |
| | | body.put("floorArea", floorPo.getFloorArea()); |
| | | body.put("layerCount", unitDtos.get(0).getLayerCount()); |
| | | body.put("unitCount", unitDtos.size()); |
| | | body.put("floorUse", tmpCommunityDto.getName()+"_住宅"); |
| | | body.put("personName", "HC小区管理系统"); |
| | | body.put("layerCount", layerCount); |
| | | body.put("unitCount", floorUse); |
| | | body.put("floorUse", tmpCommunityDto.getName() + "_住宅"); |
| | | body.put("personName", "小区管理系统"); |
| | | body.put("personLink", "18909711234"); |
| | | |
| | | JSONObject heard = new JSONObject(); |
| | | heard.put("serviceCode",HcGovConstant.ADD_FLOOR_ACTION); |
| | | heard.put("extCommunityId",extCommunityId); |
| | | heard.put("tranId", PayUtil.makeUUID(15)); |
| | | heard.put("reqTime",DateUtil.getNow(DateUtil.DATE_FORMATE_STRING_A)); |
| | | HcGovConstant.generatorProducerSign(heard,body,HcGovConstant.COMMUNITY_SECURE); |
| | | JSONObject kafkaData = new JSONObject(); |
| | | kafkaData.put("header",heard); |
| | | kafkaData.put("body",body); |
| | | try { |
| | | KafkaFactory.sendKafkaMessage(HcGovConstant.GOV_TOPIC,kafkaData.toJSONString()); |
| | | } catch (Exception e) { |
| | | e.printStackTrace(); |
| | | } |
| | | JSONObject kafkaData = baseHcGovSendAsynImpl.createHeadersOrBody(body, extCommunityId, HcGovConstant.ADD_FLOOR_ACTION, HcGovConstant.COMMUNITY_SECURE); |
| | | baseHcGovSendAsynImpl.sendKafka(HcGovConstant.GOV_TOPIC, kafkaData, communityId, floorId, HcGovConstant.COMMUNITY_SECURE); |
| | | } |
| | | |
| | | } |