Exemple #1
0
def recall_check(om_gui):
    '''
    presently this just checks the status of the DENTIST recall
    (ie. ignores hygienist)
    '''
    if not om_gui.pt.recall_active or om_gui.pt.has_exam_booked:
        return True
    if (om_gui.pt.appt_prefs.recdent_period
            and om_gui.pt.recd > localsettings.currentDay()):
        return True
    if not om_gui.ui.actionCheck_Recall_Date_on_Exit_Record.isChecked():
        om_gui.advise(_("ignoring recall date as per preferences"))
        return True
    else:
        dl = RecallPromptDialog(om_gui.pt, om_gui)
        if dl.exec_():
            if dl.result == dl.IGNORE:
                return True
            else:
                dl2 = ApptPrefsDialog(om_gui.pt, om_gui)
                if dl2.exec_():
                    om_gui.pt.appt_prefs.commit_changes()
                    om_gui.updateDetails()
                    om_gui.advise(_("Appointment Preferences Applied"))
                    return True
    return False
def recall_check(om_gui):
    if (not om_gui.pt.recall_active or
       om_gui.pt.recd > localsettings.currentDay() or
       om_gui.pt.has_exam_booked):
        return True
    dl = RecallPromptDialog(om_gui.pt, om_gui)
    if dl.exec_():
        if dl.result == dl.IGNORE:
            return True
        else:
            dl = ApptPrefsDialog(om_gui.pt, om_gui)
            if dl.exec_():
                om_gui.pt.appt_prefs.commit_changes()
                om_gui.updateDetails()
                om_gui.advise(_("Appointment Preferences Applied"))
                return True
    return False
Exemple #3
0
def recall_check(om_gui):
    if (not om_gui.pt.recall_active
            or om_gui.pt.recd > localsettings.currentDay()
            or om_gui.pt.has_exam_booked):
        return True
    dl = RecallPromptDialog(om_gui.pt, om_gui)
    if dl.exec_():
        if dl.result == dl.IGNORE:
            return True
        else:
            dl = ApptPrefsDialog(om_gui.pt, om_gui)
            if dl.exec_():
                om_gui.pt.appt_prefs.commit_changes()
                om_gui.updateDetails()
                om_gui.advise(_("Appointment Preferences Applied"))
                return True
    return False
Exemple #4
0
def recall_check(om_gui):
    '''
    presently this just checks the status of the DENTIST recall
    (ie. ignores hygienist)
    '''
    if not om_gui.pt.recall_active or om_gui.pt.has_exam_booked:
        return True
    if (om_gui.pt.appt_prefs.recdent_period and
            om_gui.pt.recd > localsettings.currentDay()):
        return True
    dl = RecallPromptDialog(om_gui.pt, om_gui)
    if dl.exec_():
        if dl.result == dl.IGNORE:
            return True
        else:
            dl2 = ApptPrefsDialog(om_gui.pt, om_gui)
            if dl2.exec_():
                om_gui.pt.appt_prefs.commit_changes()
                om_gui.updateDetails()
                om_gui.advise(_("Appointment Preferences Applied"))
                return True
    return False