Examples of PanelMedexamEdit


Examples of clips.doctor.medexam.PanelMedexamEdit

    @Override
    public PageGeneric initPanel(DiseaseLocal delegate, PageContainer pageContainer) throws ClipsException {
        ClientLocal client = delegate.getEmcLocal().getClient();
        if (delegate.isMedexam()){
            return new PanelMedexamEdit(pageContainer, client, delegate.getMedexamLocal());
        }
        if (delegate.isProfcheckup()){
            ProfcheckupSearchLocal search = new ProfcheckupSearchLocal(new AuditManager());
            List<ProfcheckupItemLocal> items = search.getItemsBy(delegate);
            return new PanelProfcheckupItemsList(pageContainer, items);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.