Skip to content

Commit

Permalink
feat: improved fluid and dosis print
Browse files Browse the repository at this point in the history
  • Loading branch information
Casper Bollen authored and Casper Bollen committed May 9, 2024
1 parent 5c94c04 commit 71382dd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Informedica.GenOrder.Lib/Order.fs
Original file line number Diff line number Diff line change
Expand Up @@ -3037,6 +3037,7 @@ module Order =
itm.Dose |> Dose.Print.dosePerTimeAdjustConstraints 3
|> withBrackets
itm.Dose |> Dose.Print.doseQuantityAdjustConstraints 3
|> sprintf "%s/dosis"
|> withBrackets
]
|> List.tryFind String.notEmpty
Expand All @@ -3054,6 +3055,7 @@ module Order =
itm.Dose |> Dose.Print.dosePerTimeConstraints 3
|> withBrackets
itm.Dose |> Dose.Print.doseQuantityConstraints 3
|> sprintf "%s/dosis"
|> withBrackets
]
|> List.tryFind String.notEmpty
Expand Down Expand Up @@ -3114,7 +3116,9 @@ module Order =
[|
[|
if cmpQty |> String.notEmpty then
c.Shape
if i1 = 0 then c.Shape
else
$"{c.Shape} ({c.Name |> Name.toString})"
cmpQty
""
""
Expand Down

0 comments on commit 71382dd

Please sign in to comment.