Skip to content

Commit

Permalink
generate_cons_item_pkgs: new consumables added to be included in RF_C…
Browse files Browse the repository at this point in the history
…ons_Items_and_Pkgs
  • Loading branch information
EvaJanouskova committed Mar 5, 2024
1 parent 3cc2a0c commit 18567f8
Showing 1 changed file with 37 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@

# 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'
# '/home/eva/Dropbox (TLO_HMC)/Thanzi la Onse'
)

resourcefilepath = Path("./resources")
path_for_new_resourcefiles = resourcefilepath / "healthsystem/consumables"
Expand Down Expand Up @@ -328,6 +330,40 @@ def add_record(df: pd.DataFrame, record: Dict):
},
)


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 18567f8

Please sign in to comment.