Skip to content

Commit

Permalink
Add cystoscope, endoscope and prostate specific antigen test to consu…
Browse files Browse the repository at this point in the history
…mable list

- add three consumables to `ResourceFile_Consumables_Items_and_Packages.csv` using the `generate_consumables_item_codes_and_packages.py` script
- correct the spelling of cystoscope (from cytoscope)
  • Loading branch information
sm2511 committed Mar 5, 2024
1 parent 3b1f8e5 commit ff4d072
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 4 deletions.
Git LFS file not shown
Git LFS file not shown
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@

# Set local Dropbox source
path_to_dropbox = Path( # <-- point to the TLO dropbox locally
'/Users/tbh03/Dropbox (SPH Imperial College)/Thanzi la Onse Theme 1 SHARE')
#'/Users/tbh03/Dropbox (SPH Imperial College)/Thanzi la Onse Theme 1 SHARE'
'/Users/sm2511/Dropbox/Thanzi la Onse')

resourcefilepath = Path("./resources")
path_for_new_resourcefiles = resourcefilepath / "healthsystem/consumables"
Expand Down Expand Up @@ -308,6 +309,40 @@
ignore_index=True
)


cons = cons.append({
'Intervention_Cat': "Added by SM (Recommended by EJ)",
'Intervention_Pkg': "Misc",
'Intervention_Pkg_Code': -99,
'Items': "Cystoscope",
'Item_Code': 285,
'Expected_Units_Per_Case': 1.0,
'Unit_Cost': np.nan},
ignore_index=True
)

cons = cons.append({
'Intervention_Cat': "Added by SM (Recommended by EJ)",
'Intervention_Pkg': "Misc",
'Intervention_Pkg_Code': -99,
'Items': "Endoscope",
'Item_Code': 280,
'Expected_Units_Per_Case': 1.0,
'Unit_Cost': np.nan},
ignore_index=True
)

cons = cons.append({
'Intervention_Cat': "Added by SM (Recommended by EJ)",
'Intervention_Pkg': "Misc",
'Intervention_Pkg_Code': -99,
'Items': "Prostate specific antigen test",
'Item_Code': 281,
'Expected_Units_Per_Case': 1.0,
'Unit_Cost': np.nan},
ignore_index=True
)

# --------------
# --------------
# --------------
Expand Down

0 comments on commit ff4d072

Please sign in to comment.