Skip to content

Commit

Permalink
fix: missing dose quantity in administration
Browse files Browse the repository at this point in the history
  • Loading branch information
Casper Bollen authored and Casper Bollen committed May 24, 2024
1 parent 36e1960 commit c034984
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/Informedica.GenOrder.Lib/Order.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2938,7 +2938,17 @@ module Order =
[|
// the frequency
if ord.Prescription |> Prescription.hasFrequency then
if i = 0 then freq else ""
if i = 0 then
freq
ord.Orderable |> Orderable.Print.doseQuantityTo printMd -1
else
""
""
else
if i = 0 then
ord.Orderable |> Orderable.Print.doseQuantityTo printMd -1
else
""

let itmQty = itm |> Orderable.Item.Print.orderableQuantityTo printMd 3
if itmQty |> String.notEmpty then
Expand Down

0 comments on commit c034984

Please sign in to comment.