|
|
|
@ -750,14 +750,14 @@ public class FontController {
|
|
|
|
|
*/
|
|
|
|
|
@RequestMapping(value = "getMaster")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public OffsetLimitPage getMaster(Archive_Master_Vo archiveMasterVo, Integer offset, Integer limit, HttpServletRequest request) throws Exception {
|
|
|
|
|
public OffsetLimitPage getMaster(Archive_Master_Vo archiveMasterVo, Integer offset, Integer limit) throws Exception {
|
|
|
|
|
//如果前端主管医生字段有选全部选项,则查全部数据
|
|
|
|
|
String[] doctorInCharge = archiveMasterVo.getDoctorInCharge().split(",");
|
|
|
|
|
int i = doctorInCharge.length;
|
|
|
|
|
if (doctorInCharge.length > 1 && StringUtils.isBlank(doctorInCharge[0]) && StringUtils.isNotBlank(doctorInCharge[1])) {
|
|
|
|
|
archiveMasterVo.setDoctorInCharge("");
|
|
|
|
|
}
|
|
|
|
|
return archiveMasterService.selectMasterByColumn(archiveMasterVo, offset, limit, request);
|
|
|
|
|
return archiveMasterService.selectByCol(archiveMasterVo, offset, limit);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|