|
|
|
@ -429,24 +429,24 @@ public class IoCodeTempController extends BaseController {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(bussinessTypeEntity != null && udiInfoEntity != null){
|
|
|
|
|
if (bussinessTypeEntity != null && udiInfoEntity != null) {
|
|
|
|
|
//是否校验耗材材质 1:高值耗材;2.普通耗材
|
|
|
|
|
if (IntUtil.value(bussinessTypeEntity.getVailHcType() == 1)) {
|
|
|
|
|
if (IntUtil.value(bussinessTypeEntity.getVailHcType()) == 1) {
|
|
|
|
|
if (IntUtil.value(udiInfoEntity.getHcType()) != 1) {
|
|
|
|
|
return ResultVOUtils.error(500, "单据只允许录入高值耗材" + ",请检查后重试!");
|
|
|
|
|
}
|
|
|
|
|
} else if (IntUtil.value(bussinessTypeEntity.getVailHcType() == 2)) {
|
|
|
|
|
} else if (IntUtil.value(bussinessTypeEntity.getVailHcType()) == 2) {
|
|
|
|
|
if (IntUtil.value(udiInfoEntity.getHcType()) != 2) {
|
|
|
|
|
return ResultVOUtils.error(500, "单据只允许录入普通耗材" + ",请检查后重试!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//是否开启校验扫码 :0:不校验;1:只允许录入扫码产品;2:只允许录入不扫码产品
|
|
|
|
|
if (IntUtil.value(bussinessTypeEntity.getCodeCheck() == 1)){
|
|
|
|
|
if (IntUtil.value(bussinessTypeEntity.getCodeCheck()) == 1) {
|
|
|
|
|
if (IntUtil.value(udiInfoEntity.getRequireScanCode()) != 1) {
|
|
|
|
|
return ResultVOUtils.error(500, "单据只允许录入需要扫码产品" + ",请检查后重试!");
|
|
|
|
|
}
|
|
|
|
|
}else if (IntUtil.value(bussinessTypeEntity.getCodeCheck() == 2)) {
|
|
|
|
|
} else if (IntUtil.value(bussinessTypeEntity.getCodeCheck()) == 2) {
|
|
|
|
|
if (IntUtil.value(udiInfoEntity.getRequireScanCode()) != 0) {
|
|
|
|
|
return ResultVOUtils.error(500, "单据只允许录入不需要扫码产品" + ",请检查后重试!");
|
|
|
|
|
}
|
|
|
|
|