|
|
|
@ -3358,6 +3358,12 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
itemHandleProcessDto.setGridUnitid(formDto.getGridUnitid()); |
|
|
|
itemHandleProcessDto.setGridUnitname(formDto.getGridUnitname()); |
|
|
|
itemHandleProcessDto.setGridCantoncode(formDto.getCantoncode()); |
|
|
|
//根据网格化区域编码获取对应的市中心区域编码
|
|
|
|
if (StringUtils.isNotBlank(itemHandleProcessDto.getGridCantoncode())) { |
|
|
|
Result<String> result = adminFeignClient.getZoneCode(itemHandleProcessDto.getGridCantoncode()); |
|
|
|
String zoneCode = result.getData(); |
|
|
|
itemHandleProcessDto.setDisCenterZoningCode(zoneCode); |
|
|
|
} |
|
|
|
if("0".equals(formDto.getState())){ |
|
|
|
ItemEntity item = baseDao.selectById(itemPlat.getReferenceId()); |
|
|
|
log.info("根据id查询数据"); |
|
|
|
|