限制不能重复上架
parent
8f03e64f45
commit
36010a0981
|
@ -11,6 +11,7 @@ import javax.servlet.http.HttpServletResponse;
|
||||||
import javax.validation.ConstraintViolation;
|
import javax.validation.ConstraintViolation;
|
||||||
import javax.validation.Validator;
|
import javax.validation.Validator;
|
||||||
|
|
||||||
|
import com.zzjee.wmutil.wmUtil;
|
||||||
import org.apache.commons.collections.CollectionUtils;
|
import org.apache.commons.collections.CollectionUtils;
|
||||||
import org.apache.log4j.Logger;
|
import org.apache.log4j.Logger;
|
||||||
import org.jeecgframework.core.beanvalidator.BeanValidators;
|
import org.jeecgframework.core.beanvalidator.BeanValidators;
|
||||||
|
@ -99,7 +100,6 @@ public class WmToUpGoodsController extends BaseController {
|
||||||
* @param request
|
* @param request
|
||||||
* @param response
|
* @param response
|
||||||
* @param dataGrid
|
* @param dataGrid
|
||||||
* @param user
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@RequestMapping(params = "datagrid")
|
@RequestMapping(params = "datagrid")
|
||||||
|
@ -210,7 +210,6 @@ public class WmToUpGoodsController extends BaseController {
|
||||||
/**
|
/**
|
||||||
* 添加上架列表
|
* 添加上架列表
|
||||||
*
|
*
|
||||||
* @param ids
|
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
@RequestMapping(params = "doAdd")
|
@RequestMapping(params = "doAdd")
|
||||||
|
@ -257,7 +256,6 @@ public class WmToUpGoodsController extends BaseController {
|
||||||
/**
|
/**
|
||||||
* 更新上架列表
|
* 更新上架列表
|
||||||
*
|
*
|
||||||
* @param ids
|
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
@RequestMapping(params = "doUpdate")
|
@RequestMapping(params = "doUpdate")
|
||||||
|
@ -454,6 +452,18 @@ public class WmToUpGoodsController extends BaseController {
|
||||||
return new ResponseEntity(BeanValidators.extractPropertyAndMessage(failures), HttpStatus.BAD_REQUEST);
|
return new ResponseEntity(BeanValidators.extractPropertyAndMessage(failures), HttpStatus.BAD_REQUEST);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(StringUtil.isEmpty(wmToUpGoods.getKuWeiBianMa())){
|
||||||
|
D0.setOK(false);
|
||||||
|
D0.setErrorMsg("储位不能为空");
|
||||||
|
return new ResponseEntity(D0, HttpStatus.OK);
|
||||||
|
}else{
|
||||||
|
if (!wmUtil.checkbin(wmToUpGoods.getKuWeiBianMa())) {
|
||||||
|
D0.setOK(false);
|
||||||
|
D0.setErrorMsg("储位不存在");
|
||||||
|
return new ResponseEntity(D0, HttpStatus.OK); }
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//保存
|
//保存
|
||||||
try{
|
try{
|
||||||
D0.setOK(true);
|
D0.setOK(true);
|
||||||
|
@ -466,6 +476,8 @@ public class WmToUpGoodsController extends BaseController {
|
||||||
List<WmToUpGoodsEntity> wmToUpGoodsEntity = systemService.findByProperty(WmToUpGoodsEntity.class,"wmToUpId",wmToUpGoods.getWmToUpId());
|
List<WmToUpGoodsEntity> wmToUpGoodsEntity = systemService.findByProperty(WmToUpGoodsEntity.class,"wmToUpId",wmToUpGoods.getWmToUpId());
|
||||||
if(wmToUpGoodsEntity!=null&&wmToUpGoodsEntity.size()>0){
|
if(wmToUpGoodsEntity!=null&&wmToUpGoodsEntity.size()>0){
|
||||||
D0.setOK(false);
|
D0.setOK(false);
|
||||||
|
D0.setErrorMsg("已经上架,不能重复上架");
|
||||||
|
|
||||||
return new ResponseEntity(D0, HttpStatus.OK);
|
return new ResponseEntity(D0, HttpStatus.OK);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue