1.修复部分查询问题

master
x_z 3 years ago
parent 295566c44d
commit 596c956b63

@ -28,6 +28,7 @@ import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import javax.validation.Valid;
import javax.validation.constraints.NotBlank;
import java.util.List;
/**
@ -175,4 +176,17 @@ public class BussinessTypeController {
return ResultVOUtils.success(bussinessTypeEntity.getLocalAction());
}
/**
*
*
* @param action
* @return
*/
@AuthRuleAnnotation("")
@GetMapping("/udims/basic/busType/getCorpType")
public BaseResponse getCorpType(@NotBlank(message = "参数不能为空") String action) {
Integer corpType = bussinessTypeService.getCorpType(action);
return ResultVOUtils.success(corpType);
}
}

@ -191,4 +191,33 @@ public class BussinessTypeService {
}
return bussinessTypeDao.insertBussinessType(bussinessTypeEntity);
}
/**
*
*
* @param action
* @return
*/
public Integer getCorpType(String action) {
QueryWrapper<BussinessTypeEntity> wrapper = new QueryWrapper<>();
wrapper.select("corpType")
.eq("action", action);
int corpType = bussinessTypeDao.selectOne(wrapper).getCorpType();
//单据类型的往来信息分类编码和添加往来单位信息编码不同,需要做编码转换
int unitType = 0;
if (corpType == 0) {
//供应商
unitType = 2;
} else if (corpType == 1) {
//仓库
unitType = corpType;
} else if (corpType == 2) {
//客户信息
unitType = 1;
} else if (corpType == 3) {
//特殊往来
unitType = 4;
}
return unitType;
}
}

@ -89,7 +89,8 @@ public class SystemPDFTemplateService {
QueryWrapper<SystemPDFTemplateEntity> wrapper = new QueryWrapper<>();
wrapper.eq(StrUtil.isNotBlank(systemPDFTemplateRequest.getCustomerId()), "customerId", systemPDFTemplateRequest.getCustomerId())
.or()
.isNull("customerId");
.isNull("customerId")
.orderByDesc("update_time");
IPage<SystemPDFTemplateEntity> page = new Page<>(systemPDFTemplateRequest.getPage(), systemPDFTemplateRequest.getLimit());
return systemPDFTemplateDao.selectPage(page, wrapper);

Loading…
Cancel
Save