Exemplo n.º 1
0
def annotate(bcds1):
    bcds1.patient.surname = "CARTWRIGHT"
    bcds1.patient.forename = "TOM"
    bcds1.patient.address = ["40 HIGH STREET"]
    bcds1.patient.sex = 'M'
    bcds1.patient.date_of_birth = datetime.date(1978, 12, 31)

    bcds1.date_of_acceptance = datetime.date(2017, 4, 1)
    bcds1.date_of_completion = datetime.date(2017, 4, 1)

    # "Universal Credit"
    bcds1.exemption_remission = {
        'code': exemptions.UNIVERSAL_CREDIT.EVIDENCE_SEEN,
    }

    # Treatments: "Examination, Extraction 1"
    bcds1.treatments = [
        treatments.EXAMINATION,
        treatments.EXTRACTION(1),

        # 'Band 4'
        treatments.TREATMENT_CATEGORY_URGENT,
    ]

    return bcds1
Exemplo n.º 2
0
def annotate(bcds1):
    bcds1.patient.surname = "BINGHAM"
    bcds1.patient.forename = "AVRIL"
    bcds1.patient.address = ["11 HIGH STREET"]
    bcds1.patient.sex = 'F'
    bcds1.patient.date_of_birth = datetime.date(1969, 10, 7)

    bcds1.date_of_acceptance = datetime.date(2017, 4, 1)
    bcds1.date_of_completion = datetime.date(2017, 5, 1)

    # "Nursing Mother (Evidence Not Seen)"
    bcds1.exemption_remission = {
        'code': exemptions.NURSING_MOTHER.NO_EVIDENCE_SEEN,
    }

    # Treatments: "Examination (9317), Radiographs x 2, Fillings x 2,
    # Extractions x 6, Referral for Advanced Mandatory Services,Recall Interval
    # (9172 12), Ethic Origin 11"
    bcds1.treatments = [
        treatments.TREATMENT_CATEGORY(3),
        treatments.RADIOGRAPHS(2),
        treatments.PERMANENT_FILLINGS_AND_SEALANT_RESTORATIONS(2),
        treatments.EXTRACTION(6),
        treatments.REFERRAL_FOR_ADVANCED_MANDATORY_SERVICES(3),
        treatments.RECALL_INTERVAL(num_months=12),
        treatments.ETHNIC_ORIGIN_11_OTHER_ASIAN_BACKGROUND,
    ]

    return bcds1
Exemplo n.º 3
0
def annotate(bcds1):
    bcds1.patient.surname = "ASTON"
    bcds1.patient.forename = "ZARA"
    bcds1.patient.address = ["33 HIGH STREET"]
    bcds1.patient.sex = 'F'
    bcds1.patient.date_of_birth = datetime.date(1960, 6, 26)

    bcds1.date_of_acceptance = datetime.date(2017, 4, 1)
    bcds1.date_of_completion = datetime.date(2017, 4, 1)

    bcds1.patient_charge_pence = 5630

    # Treatments: "Extraction x 1, Ethnic Origin 99"
    bcds1.treatments = [
        treatments.TREATMENT_CATEGORY(2),
        treatments.EXTRACTION(1),
        treatments.ETHNIC_ORIGIN_PATIENT_DECLINED,
    ]

    return bcds1
Exemplo n.º 4
0
def annotate(bcds1):
    bcds1.patient.surname = "ALBRIGHTON"
    bcds1.patient.forename = "GARY"
    bcds1.patient.address = ["29 HIGH STREET"]
    bcds1.patient.sex = 'M'
    bcds1.patient.date_of_birth = datetime.date(1966, 10, 30)

    bcds1.date_of_acceptance = datetime.date(2017, 4, 1)
    bcds1.date_of_completion = datetime.date(2017, 4, 1)

    bcds1.patient_charge_pence = 5630

    # Treatments: "Examination (9317), Extractions x 1, Recall Interval (9172
    # 9), Ethnic Origin 13 "
    bcds1.treatments = [
        treatments.TREATMENT_CATEGORY(2),
        treatments.EXTRACTION(1),
        treatments.RECALL_INTERVAL(9),
        treatments.ETHNIC_ORIGIN_13_BLACK_OR_BLACK_BRITISH_AFRICAN,
    ]

    return bcds1
Exemplo n.º 5
0
def annotate(bcds1):
    bcds1.patient.surname = "BROMSGROVE"
    bcds1.patient.forename = "GARY"
    bcds1.patient.address = ["15 HIGH STREET"]
    bcds1.patient.sex = 'M'
    bcds1.patient.date_of_birth = datetime.date(1970, 5, 27)

    bcds1.date_of_acceptance = datetime.date(2017, 4, 1)
    bcds1.date_of_completion = datetime.date(2017, 5, 1)

    bcds1.patient_charge_pence = 24430

    # Treatments: "Extraction x 2, Upper Denture Acrylic 2 teeth, Recall
    # Interval 8, Ethnic Origin 15"
    bcds1.treatments = [
        treatments.TREATMENT_CATEGORY(3),
        treatments.EXTRACTION(2),
        treatments.UPPER_DENTURE_ACRYLIC(2),
        treatments.RECALL_INTERVAL(8),
        treatments.ETHNIC_ORIGIN_15_CHINESE,
        treatments.SEDATION_SERVICES,
    ]

    return bcds1