def annotate(bcds1): bcds1.patient.surname = "BARROW" bcds1.patient.forename = "CHARLIE" bcds1.patient.address = ["3 HIGH STREET"] bcds1.patient.sex = 'M' bcds1.patient.date_of_birth = datetime.date(2001, 1, 24) bcds1.date_of_acceptance = datetime.date(2017, 4, 1) bcds1.date_of_completion = datetime.date(2017, 5, 1) # "Under 18" bcds1.exemption_remission = { 'code': exemptions.PATIENT_UNDER_18.EVIDENCE_SEEN, } # Treatments: "Radiographs x 2, Crown x 1, Filled Deciduous 2, Ethnic Origin 3" bcds1.treatments = [ treatments.TREATMENT_CATEGORY(3), treatments.RADIOGRAPHS(2), treatments.CROWN(1), treatments.FILLED_TEETH_DECIDUOUS(2), treatments.ETHNIC_ORIGIN_3_WHITE_OTHER, ] return bcds1
def annotate(bcds1): bcds1.patient.surname = "BORDESLEY" bcds1.patient.forename = "ANGELA" bcds1.patient.address = ["12 HIGH STREET"] bcds1.patient.sex = 'F' bcds1.patient.date_of_birth = datetime.date(1998, 11, 30) bcds1.date_of_acceptance = datetime.date(2017, 4, 1) bcds1.date_of_completion = datetime.date(2017, 4, 10) # "18 in full time education" bcds1.exemption_remission = { 'code': exemptions.AGED_18_IN_FULL_TIME_EDUCATION.EVIDENCE_SEEN, } # Treatments: "Examination (9317), Scale and Polish, Radiographs x 1, # Fillings x 3, Recall Interval 24, Decayed Deciduous 4, Ethnic Origin 12" bcds1.treatments = [ treatments.TREATMENT_CATEGORY(2), treatments.EXAMINATION, treatments.SCALE_AND_POLISH, treatments.RADIOGRAPHS(1), treatments.PERMANENT_FILLINGS_AND_SEALANT_RESTORATIONS(3), treatments.RECALL_INTERVAL(24), treatments.DECAYED_DECIDUOUS(4), treatments.ETHNIC_ORIGIN_12_BLACK_OR_BLACK_BRITISH_CARIBBEAN, ] return bcds1
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
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
def annotate(bcds1): bcds1.patient.surname = "CANNOCK" bcds1.patient.forename = "CAROL" bcds1.patient.address = ["23 HIGH STREET"] bcds1.patient.sex = 'F' bcds1.patient.date_of_birth = datetime.date(1950, 7, 29) bcds1.date_of_acceptance = datetime.date(2017, 4, 1) bcds1.date_of_completion = datetime.date(2017, 4, 1) # Treatments: "Examination (9317), Scale & Polish, Radiographs x 1, # Fillings x 1, Referral for Advanced Mandatory Services, Ethnic Origin 6" bcds1.treatments = [ treatments.TREATMENT_CATEGORY(2), treatments.SCALE_AND_POLISH, treatments.RADIOGRAPHS(1), treatments.PERMANENT_FILLINGS_AND_SEALANT_RESTORATIONS(1), treatments.REFERRAL_FOR_ADVANCED_MANDATORY_SERVICES(2), treatments.ETHNIC_ORIGIN_6_WHITE_AND_ASIAN, ] return bcds1
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