|
|
@ -413,6 +413,7 @@ public class CustomerGridServiceImpl extends BaseServiceImpl<CustomerGridDao, Cu |
|
|
|
CustomerGridEntity gridMsg = |
|
|
|
baseDao.selectById(gridId); |
|
|
|
//2.校验权限
|
|
|
|
/* |
|
|
|
if(null != gridMsg && StringUtils.isNotBlank(gridMsg.getId()) && StringUtils.equals(gridMsg.getDelFlag(),NumConstant.ZERO_STR)){ |
|
|
|
CommonUserFormDTO userParam = new CommonUserFormDTO(); |
|
|
|
userParam.setCustomerId(gridMsg.getCustomerId()); |
|
|
@ -436,6 +437,8 @@ public class CustomerGridServiceImpl extends BaseServiceImpl<CustomerGridDao, Cu |
|
|
|
log.error(ModuleConstant.GRID_INFO_NOT_FOUND); |
|
|
|
} |
|
|
|
return new Result<CustomerGridEntity>().error(); |
|
|
|
*/ |
|
|
|
return new Result<CustomerGridEntity>().ok(gridMsg); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|