异常封装之商品类型信息后台修改
This commit is contained in:
@@ -35,7 +35,7 @@ public class MaterialCategoryController {
|
|||||||
private MaterialCategoryService materialCategoryService;
|
private MaterialCategoryService materialCategoryService;
|
||||||
|
|
||||||
@GetMapping(value = "/getAllList")
|
@GetMapping(value = "/getAllList")
|
||||||
public BaseResponseInfo getAllList(@RequestParam("parentId") Long parentId, HttpServletRequest request) {
|
public BaseResponseInfo getAllList(@RequestParam("parentId") Long parentId, HttpServletRequest request) throws Exception{
|
||||||
BaseResponseInfo res = new BaseResponseInfo();
|
BaseResponseInfo res = new BaseResponseInfo();
|
||||||
try {
|
try {
|
||||||
List<MaterialCategory> materialCategoryList = materialCategoryService.getAllList(parentId);
|
List<MaterialCategory> materialCategoryList = materialCategoryService.getAllList(parentId);
|
||||||
@@ -56,7 +56,7 @@ public class MaterialCategoryController {
|
|||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
@RequestMapping(value = "/findById")
|
@RequestMapping(value = "/findById")
|
||||||
public BaseResponseInfo findById(@RequestParam("id") Long id, HttpServletRequest request) {
|
public BaseResponseInfo findById(@RequestParam("id") Long id, HttpServletRequest request)throws Exception {
|
||||||
BaseResponseInfo res = new BaseResponseInfo();
|
BaseResponseInfo res = new BaseResponseInfo();
|
||||||
try {
|
try {
|
||||||
List<MaterialCategory> dataList = materialCategoryService.findById(id);
|
List<MaterialCategory> dataList = materialCategoryService.findById(id);
|
||||||
|
|||||||
@@ -21,16 +21,16 @@ public class MaterialCategoryComponent implements ICommonQuery {
|
|||||||
private MaterialCategoryService materialCategoryService;
|
private MaterialCategoryService materialCategoryService;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Object selectOne(String condition) {
|
public Object selectOne(String condition)throws Exception {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<?> select(Map<String, String> map) {
|
public List<?> select(Map<String, String> map)throws Exception {
|
||||||
return getMaterialCategoryList(map);
|
return getMaterialCategoryList(map);
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<?> getMaterialCategoryList(Map<String, String> map) {
|
private List<?> getMaterialCategoryList(Map<String, String> map) throws Exception{
|
||||||
String search = map.get(Constants.SEARCH);
|
String search = map.get(Constants.SEARCH);
|
||||||
String name = StringUtil.getInfo(search, "name");
|
String name = StringUtil.getInfo(search, "name");
|
||||||
Integer parentId = StringUtil.parseInteger(StringUtil.getInfo(search, "parentId"));
|
Integer parentId = StringUtil.parseInteger(StringUtil.getInfo(search, "parentId"));
|
||||||
@@ -39,7 +39,7 @@ public class MaterialCategoryComponent implements ICommonQuery {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Long counts(Map<String, String> map) {
|
public Long counts(Map<String, String> map)throws Exception {
|
||||||
String search = map.get(Constants.SEARCH);
|
String search = map.get(Constants.SEARCH);
|
||||||
String name = StringUtil.getInfo(search, "name");
|
String name = StringUtil.getInfo(search, "name");
|
||||||
Integer parentId = StringUtil.parseInteger(StringUtil.getInfo(search, "parentId"));
|
Integer parentId = StringUtil.parseInteger(StringUtil.getInfo(search, "parentId"));
|
||||||
@@ -47,27 +47,27 @@ public class MaterialCategoryComponent implements ICommonQuery {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int insert(String beanJson, HttpServletRequest request) {
|
public int insert(String beanJson, HttpServletRequest request)throws Exception {
|
||||||
return materialCategoryService.insertMaterialCategory(beanJson, request);
|
return materialCategoryService.insertMaterialCategory(beanJson, request);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int update(String beanJson, Long id) {
|
public int update(String beanJson, Long id)throws Exception {
|
||||||
return materialCategoryService.updateMaterialCategory(beanJson, id);
|
return materialCategoryService.updateMaterialCategory(beanJson, id);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int delete(Long id) {
|
public int delete(Long id)throws Exception {
|
||||||
return materialCategoryService.deleteMaterialCategory(id);
|
return materialCategoryService.deleteMaterialCategory(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int batchDelete(String ids) {
|
public int batchDelete(String ids)throws Exception {
|
||||||
return materialCategoryService.batchDeleteMaterialCategory(ids);
|
return materialCategoryService.batchDeleteMaterialCategory(ids);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int checkIsNameExist(Long id, String name) {
|
public int checkIsNameExist(Long id, String name)throws Exception {
|
||||||
return materialCategoryService.checkIsNameExist(id, name);
|
return materialCategoryService.checkIsNameExist(id, name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -40,64 +40,154 @@ public class MaterialCategoryService {
|
|||||||
@Resource
|
@Resource
|
||||||
private MaterialMapperEx materialMapperEx;
|
private MaterialMapperEx materialMapperEx;
|
||||||
|
|
||||||
public MaterialCategory getMaterialCategory(long id) {
|
public MaterialCategory getMaterialCategory(long id)throws Exception {
|
||||||
return materialCategoryMapper.selectByPrimaryKey(id);
|
MaterialCategory result=null;
|
||||||
|
try{
|
||||||
|
result=materialCategoryMapper.selectByPrimaryKey(id);
|
||||||
|
}catch(Exception e){
|
||||||
|
logger.error("异常码[{}],异常提示[{}],异常[{}]",
|
||||||
|
ExceptionConstants.DATA_READ_FAIL_CODE,ExceptionConstants.DATA_READ_FAIL_MSG,e);
|
||||||
|
throw new BusinessRunTimeException(ExceptionConstants.DATA_READ_FAIL_CODE,
|
||||||
|
ExceptionConstants.DATA_READ_FAIL_MSG);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<MaterialCategory> getMaterialCategory() {
|
public List<MaterialCategory> getMaterialCategory()throws Exception {
|
||||||
MaterialCategoryExample example = new MaterialCategoryExample();
|
MaterialCategoryExample example = new MaterialCategoryExample();
|
||||||
return materialCategoryMapper.selectByExample(example);
|
List<MaterialCategory> list=null;
|
||||||
|
try{
|
||||||
|
list=materialCategoryMapper.selectByExample(example);
|
||||||
|
}catch(Exception e){
|
||||||
|
logger.error("异常码[{}],异常提示[{}],异常[{}]",
|
||||||
|
ExceptionConstants.DATA_READ_FAIL_CODE,ExceptionConstants.DATA_READ_FAIL_MSG,e);
|
||||||
|
throw new BusinessRunTimeException(ExceptionConstants.DATA_READ_FAIL_CODE,
|
||||||
|
ExceptionConstants.DATA_READ_FAIL_MSG);
|
||||||
|
}
|
||||||
|
return list;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<MaterialCategory> getAllList(Long parentId) {
|
public List<MaterialCategory> getAllList(Long parentId)throws Exception {
|
||||||
MaterialCategoryExample example = new MaterialCategoryExample();
|
MaterialCategoryExample example = new MaterialCategoryExample();
|
||||||
example.createCriteria().andParentidEqualTo(parentId).andIdNotEqualTo(1l);
|
example.createCriteria().andParentidEqualTo(parentId).andIdNotEqualTo(1l);
|
||||||
example.setOrderByClause("id");
|
example.setOrderByClause("id");
|
||||||
return materialCategoryMapper.selectByExample(example);
|
List<MaterialCategory> list=null;
|
||||||
|
try{
|
||||||
|
list=materialCategoryMapper.selectByExample(example);
|
||||||
|
}catch(Exception e){
|
||||||
|
logger.error("异常码[{}],异常提示[{}],异常[{}]",
|
||||||
|
ExceptionConstants.DATA_READ_FAIL_CODE,ExceptionConstants.DATA_READ_FAIL_MSG,e);
|
||||||
|
throw new BusinessRunTimeException(ExceptionConstants.DATA_READ_FAIL_CODE,
|
||||||
|
ExceptionConstants.DATA_READ_FAIL_MSG);
|
||||||
|
}
|
||||||
|
return list;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<MaterialCategory> select(String name, Integer parentId, int offset, int rows) {
|
public List<MaterialCategory> select(String name, Integer parentId, int offset, int rows) throws Exception{
|
||||||
return materialCategoryMapperEx.selectByConditionMaterialCategory(name, parentId, offset, rows);
|
List<MaterialCategory> list=null;
|
||||||
|
try{
|
||||||
|
list=materialCategoryMapperEx.selectByConditionMaterialCategory(name, parentId, offset, rows);
|
||||||
|
}catch(Exception e){
|
||||||
|
logger.error("异常码[{}],异常提示[{}],异常[{}]",
|
||||||
|
ExceptionConstants.DATA_READ_FAIL_CODE,ExceptionConstants.DATA_READ_FAIL_MSG,e);
|
||||||
|
throw new BusinessRunTimeException(ExceptionConstants.DATA_READ_FAIL_CODE,
|
||||||
|
ExceptionConstants.DATA_READ_FAIL_MSG);
|
||||||
|
}
|
||||||
|
return list;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Long countMaterialCategory(String name, Integer parentId) {
|
public Long countMaterialCategory(String name, Integer parentId) throws Exception{
|
||||||
return materialCategoryMapperEx.countsByMaterialCategory(name, parentId);
|
Long result=null;
|
||||||
|
try{
|
||||||
|
result=materialCategoryMapperEx.countsByMaterialCategory(name, parentId);
|
||||||
|
}catch(Exception e){
|
||||||
|
logger.error("异常码[{}],异常提示[{}],异常[{}]",
|
||||||
|
ExceptionConstants.DATA_READ_FAIL_CODE,ExceptionConstants.DATA_READ_FAIL_MSG,e);
|
||||||
|
throw new BusinessRunTimeException(ExceptionConstants.DATA_READ_FAIL_CODE,
|
||||||
|
ExceptionConstants.DATA_READ_FAIL_MSG);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Transactional(value = "transactionManager", rollbackFor = Exception.class)
|
@Transactional(value = "transactionManager", rollbackFor = Exception.class)
|
||||||
public int insertMaterialCategory(String beanJson, HttpServletRequest request) {
|
public int insertMaterialCategory(String beanJson, HttpServletRequest request)throws Exception {
|
||||||
MaterialCategory materialCategory = JSONObject.parseObject(beanJson, MaterialCategory.class);
|
MaterialCategory materialCategory = JSONObject.parseObject(beanJson, MaterialCategory.class);
|
||||||
return materialCategoryMapper.insertSelective(materialCategory);
|
int result=0;
|
||||||
|
try{
|
||||||
|
result=materialCategoryMapper.insertSelective(materialCategory);
|
||||||
|
}catch(Exception e){
|
||||||
|
logger.error("异常码[{}],异常提示[{}],异常[{}]",
|
||||||
|
ExceptionConstants.DATA_WRITE_FAIL_CODE,ExceptionConstants.DATA_WRITE_FAIL_MSG,e);
|
||||||
|
throw new BusinessRunTimeException(ExceptionConstants.DATA_WRITE_FAIL_CODE,
|
||||||
|
ExceptionConstants.DATA_WRITE_FAIL_MSG);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Transactional(value = "transactionManager", rollbackFor = Exception.class)
|
@Transactional(value = "transactionManager", rollbackFor = Exception.class)
|
||||||
public int updateMaterialCategory(String beanJson, Long id) {
|
public int updateMaterialCategory(String beanJson, Long id) throws Exception{
|
||||||
MaterialCategory materialCategory = JSONObject.parseObject(beanJson, MaterialCategory.class);
|
MaterialCategory materialCategory = JSONObject.parseObject(beanJson, MaterialCategory.class);
|
||||||
materialCategory.setId(id);
|
materialCategory.setId(id);
|
||||||
return materialCategoryMapper.updateByPrimaryKeySelective(materialCategory);
|
int result=0;
|
||||||
|
try{
|
||||||
|
result=materialCategoryMapper.updateByPrimaryKeySelective(materialCategory);
|
||||||
|
}catch(Exception e){
|
||||||
|
logger.error("异常码[{}],异常提示[{}],异常[{}]",
|
||||||
|
ExceptionConstants.DATA_WRITE_FAIL_CODE,ExceptionConstants.DATA_WRITE_FAIL_MSG,e);
|
||||||
|
throw new BusinessRunTimeException(ExceptionConstants.DATA_WRITE_FAIL_CODE,
|
||||||
|
ExceptionConstants.DATA_WRITE_FAIL_MSG);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Transactional(value = "transactionManager", rollbackFor = Exception.class)
|
@Transactional(value = "transactionManager", rollbackFor = Exception.class)
|
||||||
public int deleteMaterialCategory(Long id) {
|
public int deleteMaterialCategory(Long id)throws Exception {
|
||||||
return materialCategoryMapper.deleteByPrimaryKey(id);
|
int result=0;
|
||||||
|
try{
|
||||||
|
result=materialCategoryMapper.deleteByPrimaryKey(id);
|
||||||
|
}catch(Exception e){
|
||||||
|
logger.error("异常码[{}],异常提示[{}],异常[{}]",
|
||||||
|
ExceptionConstants.DATA_WRITE_FAIL_CODE,ExceptionConstants.DATA_WRITE_FAIL_MSG,e);
|
||||||
|
throw new BusinessRunTimeException(ExceptionConstants.DATA_WRITE_FAIL_CODE,
|
||||||
|
ExceptionConstants.DATA_WRITE_FAIL_MSG);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Transactional(value = "transactionManager", rollbackFor = Exception.class)
|
@Transactional(value = "transactionManager", rollbackFor = Exception.class)
|
||||||
public int batchDeleteMaterialCategory(String ids) {
|
public int batchDeleteMaterialCategory(String ids)throws Exception {
|
||||||
List<Long> idList = StringUtil.strToLongList(ids);
|
List<Long> idList = StringUtil.strToLongList(ids);
|
||||||
MaterialCategoryExample example = new MaterialCategoryExample();
|
MaterialCategoryExample example = new MaterialCategoryExample();
|
||||||
example.createCriteria().andIdIn(idList);
|
example.createCriteria().andIdIn(idList);
|
||||||
return materialCategoryMapper.deleteByExample(example);
|
int result=0;
|
||||||
|
try{
|
||||||
|
result=materialCategoryMapper.deleteByExample(example);
|
||||||
|
}catch(Exception e){
|
||||||
|
logger.error("异常码[{}],异常提示[{}],异常[{}]",
|
||||||
|
ExceptionConstants.DATA_WRITE_FAIL_CODE,ExceptionConstants.DATA_WRITE_FAIL_MSG,e);
|
||||||
|
throw new BusinessRunTimeException(ExceptionConstants.DATA_WRITE_FAIL_CODE,
|
||||||
|
ExceptionConstants.DATA_WRITE_FAIL_MSG);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int checkIsNameExist(Long id, String name) {
|
public int checkIsNameExist(Long id, String name)throws Exception {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<MaterialCategory> findById(Long id) {
|
public List<MaterialCategory> findById(Long id)throws Exception {
|
||||||
MaterialCategoryExample example = new MaterialCategoryExample();
|
MaterialCategoryExample example = new MaterialCategoryExample();
|
||||||
example.createCriteria().andIdEqualTo(id);
|
example.createCriteria().andIdEqualTo(id);
|
||||||
return materialCategoryMapper.selectByExample(example);
|
List<MaterialCategory> list=null;
|
||||||
|
try{
|
||||||
|
list=materialCategoryMapper.selectByExample(example);
|
||||||
|
}catch(Exception e){
|
||||||
|
logger.error("异常码[{}],异常提示[{}],异常[{}]",
|
||||||
|
ExceptionConstants.DATA_READ_FAIL_CODE,ExceptionConstants.DATA_READ_FAIL_MSG,e);
|
||||||
|
throw new BusinessRunTimeException(ExceptionConstants.DATA_READ_FAIL_CODE,
|
||||||
|
ExceptionConstants.DATA_READ_FAIL_MSG);
|
||||||
|
}
|
||||||
|
return list;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* create by: cjl
|
* create by: cjl
|
||||||
@@ -108,7 +198,16 @@ public class MaterialCategoryService {
|
|||||||
* @return java.util.List<com.jsh.erp.datasource.vo.TreeNode>
|
* @return java.util.List<com.jsh.erp.datasource.vo.TreeNode>
|
||||||
*/
|
*/
|
||||||
public List<TreeNode> getMaterialCategoryTree(Long id) throws Exception{
|
public List<TreeNode> getMaterialCategoryTree(Long id) throws Exception{
|
||||||
return materialCategoryMapperEx.getNodeTree(id);
|
List<TreeNode> list=null;
|
||||||
|
try{
|
||||||
|
list=materialCategoryMapperEx.getNodeTree(id);
|
||||||
|
}catch(Exception e){
|
||||||
|
logger.error("异常码[{}],异常提示[{}],异常[{}]",
|
||||||
|
ExceptionConstants.DATA_READ_FAIL_CODE,ExceptionConstants.DATA_READ_FAIL_MSG,e);
|
||||||
|
throw new BusinessRunTimeException(ExceptionConstants.DATA_READ_FAIL_CODE,
|
||||||
|
ExceptionConstants.DATA_READ_FAIL_MSG);
|
||||||
|
}
|
||||||
|
return list;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* create by: cjl
|
* create by: cjl
|
||||||
@@ -144,7 +243,16 @@ public class MaterialCategoryService {
|
|||||||
mc.setUpdateTime(date);
|
mc.setUpdateTime(date);
|
||||||
//更新人
|
//更新人
|
||||||
mc.setUpdater(userInfo==null?null:userInfo.getId());
|
mc.setUpdater(userInfo==null?null:userInfo.getId());
|
||||||
return materialCategoryMapperEx.addMaterialCategory(mc);
|
int result=0;
|
||||||
|
try{
|
||||||
|
result=materialCategoryMapperEx.addMaterialCategory(mc);
|
||||||
|
}catch(Exception e){
|
||||||
|
logger.error("异常码[{}],异常提示[{}],异常[{}]",
|
||||||
|
ExceptionConstants.DATA_WRITE_FAIL_CODE,ExceptionConstants.DATA_WRITE_FAIL_MSG,e);
|
||||||
|
throw new BusinessRunTimeException(ExceptionConstants.DATA_WRITE_FAIL_CODE,
|
||||||
|
ExceptionConstants.DATA_WRITE_FAIL_MSG);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
@Transactional(value = "transactionManager", rollbackFor = Exception.class)
|
@Transactional(value = "transactionManager", rollbackFor = Exception.class)
|
||||||
public int batchDeleteMaterialCategoryByIds(String ids) throws Exception {
|
public int batchDeleteMaterialCategoryByIds(String ids) throws Exception {
|
||||||
@@ -160,8 +268,16 @@ public class MaterialCategoryService {
|
|||||||
if(strArray.length<1){
|
if(strArray.length<1){
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
int result=0;
|
||||||
return materialCategoryMapperEx.batchDeleteMaterialCategoryByIds(updateDate,updater,strArray);
|
try{
|
||||||
|
result=materialCategoryMapperEx.batchDeleteMaterialCategoryByIds(updateDate,updater,strArray);
|
||||||
|
}catch(Exception e){
|
||||||
|
logger.error("异常码[{}],异常提示[{}],异常[{}]",
|
||||||
|
ExceptionConstants.DATA_WRITE_FAIL_CODE,ExceptionConstants.DATA_WRITE_FAIL_MSG,e);
|
||||||
|
throw new BusinessRunTimeException(ExceptionConstants.DATA_WRITE_FAIL_CODE,
|
||||||
|
ExceptionConstants.DATA_WRITE_FAIL_MSG);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
@Transactional(value = "transactionManager", rollbackFor = Exception.class)
|
@Transactional(value = "transactionManager", rollbackFor = Exception.class)
|
||||||
public int editMaterialCategory(MaterialCategory mc) throws Exception{
|
public int editMaterialCategory(MaterialCategory mc) throws Exception{
|
||||||
@@ -180,12 +296,21 @@ public class MaterialCategoryService {
|
|||||||
//更新人
|
//更新人
|
||||||
User userInfo=userService.getCurrentUser();
|
User userInfo=userService.getCurrentUser();
|
||||||
mc.setUpdater(userInfo==null?null:userInfo.getId());
|
mc.setUpdater(userInfo==null?null:userInfo.getId());
|
||||||
return materialCategoryMapperEx.editMaterialCategory(mc);
|
int result=0;
|
||||||
|
try{
|
||||||
|
result= materialCategoryMapperEx.editMaterialCategory(mc);
|
||||||
|
}catch(Exception e){
|
||||||
|
logger.error("异常码[{}],异常提示[{}],异常[{}]",
|
||||||
|
ExceptionConstants.DATA_WRITE_FAIL_CODE,ExceptionConstants.DATA_WRITE_FAIL_MSG,e);
|
||||||
|
throw new BusinessRunTimeException(ExceptionConstants.DATA_WRITE_FAIL_CODE,
|
||||||
|
ExceptionConstants.DATA_WRITE_FAIL_MSG);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 根据商品类别编号判断商品类别是否已存在
|
* 根据商品类别编号判断商品类别是否已存在
|
||||||
* */
|
* */
|
||||||
public void checkMaterialCategorySerialNo(MaterialCategory mc) {
|
public void checkMaterialCategorySerialNo(MaterialCategory mc)throws Exception {
|
||||||
if(mc==null){
|
if(mc==null){
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -193,7 +318,15 @@ public class MaterialCategoryService {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
//根据商品类别编号查询商品类别
|
//根据商品类别编号查询商品类别
|
||||||
List<MaterialCategory> mList=materialCategoryMapperEx.getMaterialCategoryBySerialNo(mc.getSerialNo());
|
List<MaterialCategory> mList=null;
|
||||||
|
try{
|
||||||
|
mList= materialCategoryMapperEx.getMaterialCategoryBySerialNo(mc.getSerialNo());
|
||||||
|
}catch(Exception e){
|
||||||
|
logger.error("异常码[{}],异常提示[{}],异常[{}]",
|
||||||
|
ExceptionConstants.DATA_READ_FAIL_CODE,ExceptionConstants.DATA_READ_FAIL_MSG,e);
|
||||||
|
throw new BusinessRunTimeException(ExceptionConstants.DATA_READ_FAIL_CODE,
|
||||||
|
ExceptionConstants.DATA_READ_FAIL_MSG);
|
||||||
|
}
|
||||||
if(mList==null||mList.size()<1){
|
if(mList==null||mList.size()<1){
|
||||||
//未查询到对应数据,编号可用
|
//未查询到对应数据,编号可用
|
||||||
return;
|
return;
|
||||||
@@ -243,7 +376,15 @@ public class MaterialCategoryService {
|
|||||||
/**
|
/**
|
||||||
* 校验产品表 jsh_material
|
* 校验产品表 jsh_material
|
||||||
* */
|
* */
|
||||||
List<Material> materialList=materialMapperEx.getMaterialListByCategoryIds(idArray);
|
List<Material> materialList=null;
|
||||||
|
try{
|
||||||
|
materialList= materialMapperEx.getMaterialListByCategoryIds(idArray);
|
||||||
|
}catch(Exception e){
|
||||||
|
logger.error("异常码[{}],异常提示[{}],异常[{}]",
|
||||||
|
ExceptionConstants.DATA_READ_FAIL_CODE,ExceptionConstants.DATA_READ_FAIL_MSG,e);
|
||||||
|
throw new BusinessRunTimeException(ExceptionConstants.DATA_READ_FAIL_CODE,
|
||||||
|
ExceptionConstants.DATA_READ_FAIL_MSG);
|
||||||
|
}
|
||||||
if(materialList!=null&&materialList.size()>0){
|
if(materialList!=null&&materialList.size()>0){
|
||||||
logger.error("异常码[{}],异常提示[{}],参数,CategoryIds[{}]",
|
logger.error("异常码[{}],异常提示[{}],参数,CategoryIds[{}]",
|
||||||
ExceptionConstants.DELETE_FORCE_CONFIRM_CODE,ExceptionConstants.DELETE_FORCE_CONFIRM_MSG,ids);
|
ExceptionConstants.DELETE_FORCE_CONFIRM_CODE,ExceptionConstants.DELETE_FORCE_CONFIRM_MSG,ids);
|
||||||
@@ -253,7 +394,15 @@ public class MaterialCategoryService {
|
|||||||
/**
|
/**
|
||||||
* 校验产品类型表 jsh_materialcategory
|
* 校验产品类型表 jsh_materialcategory
|
||||||
* */
|
* */
|
||||||
List<MaterialCategory> materialCategoryList=materialCategoryMapperEx.getMaterialCategoryListByCategoryIds(idArray);
|
List<MaterialCategory> materialCategoryList=null;
|
||||||
|
try{
|
||||||
|
materialCategoryList= materialCategoryMapperEx.getMaterialCategoryListByCategoryIds(idArray);
|
||||||
|
}catch(Exception e){
|
||||||
|
logger.error("异常码[{}],异常提示[{}],异常[{}]",
|
||||||
|
ExceptionConstants.DATA_READ_FAIL_CODE,ExceptionConstants.DATA_READ_FAIL_MSG,e);
|
||||||
|
throw new BusinessRunTimeException(ExceptionConstants.DATA_READ_FAIL_CODE,
|
||||||
|
ExceptionConstants.DATA_READ_FAIL_MSG);
|
||||||
|
}
|
||||||
if(materialCategoryList!=null&&materialCategoryList.size()>0){
|
if(materialCategoryList!=null&&materialCategoryList.size()>0){
|
||||||
logger.error("异常码[{}],异常提示[{}],参数,CategoryIds[{}]",
|
logger.error("异常码[{}],异常提示[{}],参数,CategoryIds[{}]",
|
||||||
ExceptionConstants.DELETE_FORCE_CONFIRM_CODE,ExceptionConstants.DELETE_FORCE_CONFIRM_MSG,ids);
|
ExceptionConstants.DELETE_FORCE_CONFIRM_CODE,ExceptionConstants.DELETE_FORCE_CONFIRM_MSG,ids);
|
||||||
|
|||||||
Reference in New Issue
Block a user