Examples of KarteBean


Examples of open.dolphin.infomodel.KarteBean

                .setParameter("fid", facilityId)
                .setParameter("pid", laboModuleValue.getPatientId())
                .getSingleResult();

        // 患者のカルテを取得する
        KarteBean karte = (KarteBean) em.createQuery("from KarteBean k where k.patient.id = :pk")
        .setParameter("pk", exist.getId())
        .getSingleResult();

        // laboModuleとカルテの関係を設定する
        laboModuleValue.setKarte(karte);
View Full Code Here

Examples of open.dolphin.infomodel.KarteBean

            // 新規患者であれば登録する
            // 患者属性は cascade=PERSIST で自動的に保存される
            em.persist(patient);
           
            // この患者のカルテを生成する
            KarteBean karte = new KarteBean();
            karte.setPatient(patient);
            karte.setCreated(new Date());
            em.persist(karte);
        }
       
        // 来院情報を登録する
        // CLAIM の仕様により患者情報のみを登録し、来院情報はない場合がある
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.