示例#1
0
def annotate(bcds1):
    bcds1.patient.surname = "ALSAGER"
    bcds1.patient.forename = "SAM"
    bcds1.patient.address = ["31 HIGH STREET"]
    bcds1.patient.sex = 'F'
    bcds1.patient.date_of_birth = datetime.date(1947, 8, 16)

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

    bcds1.patient_charge_pence = 5630

    # Treatments: "Fillings x 2, Scale and Polish, Radiographs x 2, Examination
    # (9317), Antibiotic Items Prescribed (9318 x 1), Other Treatment (9399),
    # Recall Interval (9172 18), Ethnic Origin 1, Best Practice Prevention"
    bcds1.treatments = [
        treatments.TREATMENT_CATEGORY(2),
        treatments.PERMANENT_FILLINGS_AND_SEALANT_RESTORATIONS(2),
        treatments.SCALE_AND_POLISH,
        treatments.RADIOGRAPHS(2),
        treatments.EXAMINATION,
        treatments.ANTIBIOTIC_ITEMS(1),
        treatments.OTHER_TREATMENT,
        treatments.RECALL_INTERVAL(18),
        treatments.ETHNIC_ORIGIN_1_WHITE_BRITISH,
        treatments.BEST_PRACTICE_PREVENTION,
    ]

    return bcds1
示例#2
0
def annotate(bcds1):
    bcds1.patient.surname = "BEESTON"
    bcds1.patient.forename = "TODD"
    bcds1.patient.address = ["6 HIGH STREET"]
    bcds1.patient.sex = 'M'
    bcds1.patient.date_of_birth = datetime.date(1956, 12, 3)

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

    # Treatments: "Antibiotic items (9318 1), Ethnic Origin 6"
    bcds1.treatments = [
        treatments.PRESCRIPTION,
        treatments.ANTIBIOTIC_ITEMS(1),
        treatments.ETHNIC_ORIGIN_6_WHITE_AND_ASIAN,
    ]

    return bcds1
示例#3
0
def annotate(bcds1):
    bcds1.patient.surname = "BROOME"
    bcds1.patient.forename = "RON"
    bcds1.patient.address = ["16 HIGH STREET"]
    bcds1.patient.sex = 'M'
    bcds1.patient.date_of_birth = datetime.date(1935, 4, 29)

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

    bcds1.patient_charge_pence = 2060

    # Treatments: "Filling x 1, Antibiotic items prescribed (9318 1), Ethnic
    # Origin 16"
    bcds1.treatments = [
        treatments.TREATMENT_CATEGORY_URGENT,
        treatments.ANTIBIOTIC_ITEMS(1),
        treatments.ETHNIC_ORIGIN_ANY_OTHER_ETHNIC_GROUP,
    ]

    return bcds1
示例#4
0
def annotate(bcds1):
    bcds1.patient.surname = "HADFIELD"
    bcds1.patient.forename = "DAVID"
    bcds1.patient.address = ["26 HIGH STREET"]
    bcds1.patient.sex = 'M'
    bcds1.patient.date_of_birth = datetime.date(1967, 5, 14)

    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), Radiographs x 4,  Bridges x 2,
    # Antibiotic Items (9318 1), Recall Interval (9172 6), Ethnic Origin 9"
    bcds1.treatments = [
        treatments.TREATMENT_CATEGORY(3),
        treatments.RADIOGRAPHS(4),
        treatments.BRIDGES_FITTED(2),
        treatments.ANTIBIOTIC_ITEMS(1),
        treatments.RECALL_INTERVAL(6),
        treatments.ETHNIC_ORIGIN_9_ASIAN_OR_ASIAN_BRITISH_PAKISTANI,
    ]

    return bcds1
示例#5
0
def annotate(bcds1):
    bcds1.patient.surname = "BEARLEY"
    bcds1.patient.forename = "LANCE"
    bcds1.patient.address = ["4 HIGH STREET"]
    bcds1.patient.sex = 'M'
    bcds1.patient.date_of_birth = datetime.date(1959, 4, 5)

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

    bcds1.patient_charge_pence = 2060

    # Treatments: "Antibiotic Items (9318 1), Decayed Permanent 0, Missing
    # Permanent 1, Filled Permanent 12, Ethnic Origin 4"
    bcds1.treatments = [
        treatments.TREATMENT_CATEGORY_URGENT,
        treatments.ANTIBIOTIC_ITEMS(1),
        treatments.DECAYED_PERMANENT(0),
        treatments.MISSING_PERMANENT(1),
        treatments.FILLED_PERMANENT(12),
        treatments.ETHNIC_ORIGIN_4_WHITE_AND_BLACK_CARIBBEAN,
    ]

    return bcds1