(cls, name="encntr mthd", order=0)
| 1881 | # Encounter Data |
| 1882 | @classmethod |
| 1883 | def setup_encounter_method_data(cls, name="encntr mthd", order=0): |
| 1884 | encounter_method = EncounterMethod.objects.create(name=name, order=order) |
| 1885 | encounter_method.save() |
| 1886 | |
| 1887 | return encounter_method |
| 1888 | |
| 1889 | @classmethod |
| 1890 | def setup_encounter_method_name_data(cls, encounter_method, name="encntr mthd nm"): |
no outgoing calls
no test coverage detected