Skip to content

Commit

Permalink
-fixing dosage form
Browse files Browse the repository at this point in the history
  • Loading branch information
johnstoecker committed Oct 18, 2012
1 parent 77e6e8a commit 602a605
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ private SimpleObject getFieldsFromDrugInventory(DrugInventory di) {
if (d != null) {
drugObj.add("uuid", d.getUuid());
drugObj.add("display", d.getName());
drugObj.add("dosageForm", d.getDosageForm().getName());
drugObj.add("dosageForm", d.getDosageForm().getName().getName());
}
obj.add("drug", drugObj);
obj.add("quantity", di.getQuantity());
Expand Down

0 comments on commit 602a605

Please sign in to comment.