|
@ -287,7 +287,8 @@ public class SignPatientLabelInfoController extends BaseController {
|
|
public String getPatientAmountByLabelType(
|
|
public String getPatientAmountByLabelType(
|
|
@RequestParam(required = false) String labelType,
|
|
@RequestParam(required = false) String labelType,
|
|
@RequestParam(required = false) Long teamCode,
|
|
@RequestParam(required = false) Long teamCode,
|
|
@RequestParam(required = false) boolean isSlowDisease) {
|
|
|
|
|
|
@RequestParam(required = false) boolean isSlowDisease,
|
|
|
|
@RequestParam(required = false) String diseaseCondition) {
|
|
try {
|
|
try {
|
|
if (StringUtils.isEmpty(labelType)) {
|
|
if (StringUtils.isEmpty(labelType)) {
|
|
return error(-1, "标签类型不能为空");
|
|
return error(-1, "标签类型不能为空");
|
|
@ -304,7 +305,7 @@ public class SignPatientLabelInfoController extends BaseController {
|
|
}
|
|
}
|
|
|
|
|
|
if (labelType.equals("1") && teamCode != 0L) {
|
|
if (labelType.equals("1") && teamCode != 0L) {
|
|
JSONArray r = patientService.getSignByDoctorCodeGpbyServer(getUID(), teamCode + "",isSlowDisease);
|
|
|
|
|
|
JSONArray r = patientService.getSignByDoctorCodeGpbyServer(getUID(), teamCode + "",isSlowDisease,diseaseCondition);
|
|
//JSONArray r= patientService.getSignByDoctorCodeGpbyServer("xh1D201703150222",teamCode+"");
|
|
//JSONArray r= patientService.getSignByDoctorCodeGpbyServer("xh1D201703150222",teamCode+"");
|
|
return write(200, "查询成功", "data", r);
|
|
return write(200, "查询成功", "data", r);
|
|
}
|
|
}
|