/
Define Defaults on Unplanned Specimen Page
Got feedback or spotted a mistake?

Leave a comment at the end of this page or email contact@krishagni.com

Define Defaults on Unplanned Specimen Page

Introduction

You can pre-define aliquots details based on specimen type on the unplanned specimen collection page. For example, if you collect unplanned specimens (say whole blood and fresh tissue) and always process whole blood into plasma and buffy coat and tissue sample into three frozen aliquots.

This feature works for:

  1. Participant-centric and Specimen-Centric CPs.

  2. When you collect unplanned specimens from the visit page.

Configure the below code under the 'common' section.

 

"addSpecimen" : { "showCreateAliquots" : true, "allowMultipleSpecimens" : false, "aliquotDerivativesOnly" : true, "requirements" : [ { "name" : "wholeBlood", "title" : "Whole Blood", "specimens" : [ { "fields" : [ { "name" : "specimen.type", "value" : "Whole Blood" }, { "name" : "specimen.anatomicSite" } ], "aliquots" : [ { "type" : "Plasma", "count" : 5, "quantity" : 1, "pathology" : "Plasma" }, { "type" : "Buffy Coat", "count" : 1, "quantity" : 0.9, "pathology" : "Buffy Coat" } ] } ] }, { "name" : "Tissue", "title" : "Fresh Tissue", "specimens" : [ { "fields" : [ { "name" : "specimen.type", "value" : "Fresh Tissue" } ], "aliquots" : [ { "type" : "Frozen Tissue", "count" : 1 }, { "type" : "Frozen Tissue", "count" : 1 }, { "type" : "Frozen Tissue", "count" : 1 } ] } ] } ] }

On Participant Centric CP:

Whole Blood

Fresh Tissue

On Specimen Centric CP:

Whole Blood

Fresh Tissue

 

Example JSON

Download

Related content

Configure collection and received event fields based on specimen collection status
Configure collection and received event fields based on specimen collection status
More like this
Set default value for freeze thaw and increment freeze thaw via JSON
Set default value for freeze thaw and increment freeze thaw via JSON
More like this
Hide/Unhide ‘Create Aliquots' and 'Labels’ field
Hide/Unhide ‘Create Aliquots' and 'Labels’ field
Read with this
Hide/Set default value to specimen fields
Hide/Set default value to specimen fields
More like this
Populate the value based on the selection of other field value/s
Populate the value based on the selection of other field value/s
Read with this
Configure Specimen Collection Page (nth Step)
Configure Specimen Collection Page (nth Step)
More like this
Got feedback or spotted a mistake?

Leave a comment at the end of this page or email contact@krishagni.com