Examples of DiagnosisSearchSpec


Examples of open.dolphin.dto.DiagnosisSearchSpec

     * バッググランドスレッドで実行される。
     * addedDiagnosis, updatedDiagnossis, deletedDiagnosis 対応 by pns
     */
    public void getDiagnosisHistory(Date past) {

        final DiagnosisSearchSpec spec = new DiagnosisSearchSpec();
        spec.setCode(DiagnosisSearchSpec.PATIENT_SEARCH);
        spec.setKarteId(getContext().getKarte().getId());
        if (past != null) {
            spec.setFromDate(past);
        }

        final DocumentDelegater ddl = new DocumentDelegater();

        DBTask task = new DBTask<List>(getContext()) {
View Full Code Here

Examples of open.dolphin.dto.DiagnosisSearchSpec

    public DocumentPeeker() {
        //使い回す Object
        today = new GregorianCalendar();
        ddl = new DocumentDelegater();
        pnsdl = new PnsDelegater();
        spec = new DiagnosisSearchSpec();
        yesterday = new GregorianCalendar();
        yesterday.add(GregorianCalendar.DATE, -1);
        yesterday.set(Calendar.HOUR_OF_DAY, 23);

        logger = ClientContext.getBootLogger();
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.