Leave a comment at the end of this page or email contact@krishagni.com
Cart List Page
The screenshot below displays the cart specimen list page, which displays all the specimens that have been added to the cart. You can access this page by selecting 'Carts' from the menu.
The configuration is set within the 'cart-specimens-list-view' section of the JSON. The settings for the cart specimens list view are derived from the system workflow, following this order of preference: cart-specimens-list-view → common-specimens-list-view → specimen-list-view.
The configuration details mirror those of the specimen-list-view, outlining the columns to display in the table, filters, ordering, additional restrictions, and more.
Show Container Display Name in Cart list view:
Add the below code in the columns section to show the container display name
{
"expr": "concat(Specimen.specimenPosition.containerDisplayName, concat_ws(\"\", concat(\" (\", Specimen.specimenPosition.formattedPos, \")\")))",
"caption": "Location"
}
Add the below code in search filters
{
"expr": "Specimen.specimenPosition.containerDisplayName",
"caption": "Storage Container"
}
Leave a comment at the end of this page or email contact@krishagni.com