This commit is contained in:
parent
7bdeca12a1
commit
ba39cce61c
|
|
@ -126,9 +126,9 @@ public class ItemService extends BaseService {
|
||||||
if (item.getUnitPrice() == null || item.getUnitPrice().compareTo(BigDecimal.ZERO) <= 0) {
|
if (item.getUnitPrice() == null || item.getUnitPrice().compareTo(BigDecimal.ZERO) <= 0) {
|
||||||
throw new MessageException("售价不能小于0");
|
throw new MessageException("售价不能小于0");
|
||||||
}
|
}
|
||||||
if (item.getSocialCode() == null || item.getSocialCode().isEmpty()) {
|
|
||||||
throw new MessageException("项目医保目录编码不能为空");
|
if (!item.getSocialCode().isEmpty())
|
||||||
}
|
{
|
||||||
SocialItem socialItem = socialItemMapper.selectOne(new QueryWrapper<SocialItem>().eq("code", item.getSocialCode()));
|
SocialItem socialItem = socialItemMapper.selectOne(new QueryWrapper<SocialItem>().eq("code", item.getSocialCode()));
|
||||||
if (socialItem == null){
|
if (socialItem == null){
|
||||||
throw new MessageException("医保目录中未找到医保码为"+item.getSocialCode()+"的医疗服务项目");
|
throw new MessageException("医保目录中未找到医保码为"+item.getSocialCode()+"的医疗服务项目");
|
||||||
|
|
@ -138,6 +138,7 @@ public class ItemService extends BaseService {
|
||||||
if (codeItem != null &&(item.getId() == null || !item.getId().equals(codeItem.getId()))){
|
if (codeItem != null &&(item.getId() == null || !item.getId().equals(codeItem.getId()))){
|
||||||
throw new MessageException("医保码"+item.getSocialCode()+"已存在绑定的医疗项目");
|
throw new MessageException("医保码"+item.getSocialCode()+"已存在绑定的医疗项目");
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue