Examples of EmcLocal


Examples of clips.delegate.doctor.EmcLocal

                if (s == null) {
                    //Только если есть диагноз и больничный для него отсутствует в базе то создаем больничный
                    s = new SicklistDetails();
                }
                // s.organizationID = UserInfo.get().getCollaborator().getLpu().getID();
                EmcLocal emc = new EmcLocal(emcID, am);
                List<JobLocal> jobList = emc.getClient().getJobList();
                if (jobList.size() > 0) {
                    s.entID = jobList.get(0).getEnterprise().getID();
                }
                s.diagOpenID = diag.getId();
                s.disabID = sstData.blPrich != 0 ? sstData.blPrich : 1;
View Full Code Here

Examples of clips.delegate.doctor.EmcLocal

            super(contaner);
        }
       
        @Override
        protected EmcLocal init() throws Exception {
            return new EmcLocal(ClientLocal.this, getBean().getEmc(), getAuditListener());
        }
View Full Code Here

Examples of clips.delegate.doctor.EmcLocal

    @Override
    protected EmcLocal init() throws Exception {
        if(dl2.getDetails().getEMC() == 0) {
            return null;
        }
        return new EmcLocal(dl2.getDetails().getEMC(), al);
    }
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.