|
@ -376,7 +376,6 @@ public class PrescriptionInfoController extends BaseController{
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value = "/getPrescription" ,method = RequestMethod.GET)
|
|
|
@ResponseBody
|
|
|
@ApiOperation(value = "获取长处方详细信息")
|
|
|
public String getPrescription(@RequestParam(required = true)@ApiParam(name="code",value="处方CODE")String code){
|
|
|
try {
|
|
@ -388,7 +387,6 @@ public class PrescriptionInfoController extends BaseController{
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value = "/getRateList" ,method = RequestMethod.GET)
|
|
|
@ResponseBody
|
|
|
@ApiOperation(value = "查询频次列表")
|
|
|
public String getRateList(){
|
|
|
try {
|
|
@ -399,4 +397,28 @@ public class PrescriptionInfoController extends BaseController{
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value = "/getRegisterRee" ,method = RequestMethod.GET)
|
|
|
@ApiOperation(value = "获取挂号费+诊察费下拉列表")
|
|
|
public String getRegisterRee(@RequestParam(required = true)@ApiParam(name="jwHospital",value="开方机构")String jwHospital,
|
|
|
@RequestParam(required = true)@ApiParam(name="jwDoctorCode",value="开方医生Code")String jwDoctorCode){
|
|
|
try {
|
|
|
return write(200, "查询成功!", "data", prescriptionInfoService.getRegisterRee(jwHospital,jwDoctorCode));
|
|
|
} catch (Exception e) {
|
|
|
error(e);
|
|
|
return error(-1, "查询失败!");
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value = "/getDeptList" ,method = RequestMethod.GET)
|
|
|
@ApiOperation(value = "获取医生科室列表")
|
|
|
public String getDeptList(@RequestParam(required = true)@ApiParam(name="jwHospital",value="开方机构")String jwHospital,
|
|
|
@RequestParam(required = true)@ApiParam(name="jwDoctorCode",value="开方医生Code")String jwDoctorCode){
|
|
|
try {
|
|
|
return write(200, "查询成功!", "data", prescriptionInfoService.getDeptList(jwHospital,jwDoctorCode));
|
|
|
} catch (Exception e) {
|
|
|
error(e);
|
|
|
return error(-1, "查询失败!");
|
|
|
}
|
|
|
}
|
|
|
|
|
|
}
|