|
|
|
@ -177,18 +177,29 @@ public class InvWarehouseService {
|
|
|
|
|
*/
|
|
|
|
|
public boolean checkNameExist(String name, String customerId, String code) {
|
|
|
|
|
QueryWrapper<InvWarehouseEntity> wrapper = new QueryWrapper<>();
|
|
|
|
|
wrapper.eq(StrUtil.isNotBlank(name), "name", name)
|
|
|
|
|
.eq(StrUtil.isNotBlank(customerId), "customerId", customerId)
|
|
|
|
|
.eq(StrUtil.isNotBlank(code), "code", code);
|
|
|
|
|
long count = invWarehouseDao.selectCount(wrapper);
|
|
|
|
|
if (count == 1 && StrUtil.isNotBlank(code)) {
|
|
|
|
|
return false;
|
|
|
|
|
} else if (count == 0 && StrUtil.isBlank(code)) {
|
|
|
|
|
return false;
|
|
|
|
|
} else if (count == 0 && StrUtil.isNotBlank(code)) {
|
|
|
|
|
return false;
|
|
|
|
|
wrapper.select("code").eq("name", name)
|
|
|
|
|
.eq("customerId", customerId);
|
|
|
|
|
List<InvWarehouseEntity> invWarehouseEntities = invWarehouseDao.selectList(wrapper);
|
|
|
|
|
if (StrUtil.isNotBlank(code)) {
|
|
|
|
|
//编辑校验,若总数为0,则表示没有重复,总数 > 0,判断与仓库码是否相同,不同则重复
|
|
|
|
|
if (invWarehouseEntities.size() == 0) {
|
|
|
|
|
return false;
|
|
|
|
|
} else {
|
|
|
|
|
for (InvWarehouseEntity invWarehouseEntity : invWarehouseEntities) {
|
|
|
|
|
if (!invWarehouseEntity.getCode().equals(code)) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
//新增校验,若总数为0,则表示没有重复,否则为重复
|
|
|
|
|
if (invWarehouseEntities.size() == 0) {
|
|
|
|
|
return false;
|
|
|
|
|
} else {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|