Procházet zdrojové kódy

合理用药审核接口

wangjun před 4 roky
rodič
revize
99f544eba8

+ 2 - 5
svr/svr-internet-hospital/src/main/java/com/yihu/jw/hospital/endpoint/prescription/PrescriptionEndpoint.java

@ -1078,11 +1078,8 @@ public class PrescriptionEndpoint extends EnvelopRestEndpoint {
    @ApiOperation(value = "查询部位字典", notes = "查询部位字典")
    public ListEnvelop findByPartsCode(@ApiParam(name = "parentCode", value = "父节点ID,第一层为0")
                                       @RequestParam(value = "parentCode", required = false)String parentCode)throws Exception{
        if("xm_xzzx_wx".equalsIgnoreCase(wxId)){
            return success(xzzxEntranceService.selectCheckBody(parentCode));
        }else {
            return success(inspectionService.findByPartsCode(parentCode));
        }
        return success(inspectionService.findByPartsCode(parentCode));
    }