|
@ -92,7 +92,7 @@ public class PrescriptionInfoController extends BaseController{
|
|
|
|
|
|
@RequestMapping(value = "/reviewPrescription", method = RequestMethod.POST)
|
|
|
@ResponseBody
|
|
|
@ApiOperation(value = "续方详情")
|
|
|
@ApiOperation(value = "续方审核")
|
|
|
public String reviewPrescription(@RequestParam(required = true)@ApiParam(value = "续方CODE", name = "code") String code,
|
|
|
@RequestParam(required = false)@ApiParam(value = "不同意原因", name = "reason") String reason,
|
|
|
@RequestParam(required = false)@ApiParam(value = "1同意,2不同意", name = "state") String state){
|
|
@ -119,5 +119,29 @@ public class PrescriptionInfoController extends BaseController{
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value = "/getInfoTitle", method = RequestMethod.POST)
|
|
|
@ResponseBody
|
|
|
@ApiOperation(value = "调整处方-药品分类及种类数目")
|
|
|
public String getInfoTitle(){
|
|
|
try {
|
|
|
return write(200, "操作成功!", "data","");
|
|
|
} catch (Exception e) {
|
|
|
error(e);
|
|
|
return error(-1, "查询失败!");
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value = "/getInfoListByParentCode", method = RequestMethod.POST)
|
|
|
@ResponseBody
|
|
|
@ApiOperation(value = "药品类别获取药品")
|
|
|
private String getInfoListByParentCode(@RequestParam(required = true)@ApiParam(value = "药品类别Code", name = "code") String code){
|
|
|
try {
|
|
|
return write(200, "操作成功!", "data","");
|
|
|
} catch (Exception e) {
|
|
|
error(e);
|
|
|
return error(-1, "查询失败!");
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
}
|