Skip to content

Commit

Permalink
RF_Cons_Items_Pkgs: add new consumables (Cystoscope, Endoscope, PSA t…
Browse files Browse the repository at this point in the history
…est)
  • Loading branch information
EvaJanouskova committed Mar 5, 2024
1 parent 3cc2a0c commit 943708c
Showing 1 changed file with 34 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,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 943708c

Please sign in to comment.