Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info
  • You need to add the code under the “specimenCollection“ section.

  • The tree view configurability is limited to standard fields that can be displayed/hidden - label, quantity, container, collector, collection procedure, collection status, print, and close.

  • If the specimen barcoding is enabled at CP or system level, it will automatically display the ‘Barcode' column on the specimen collection page instead of ‘Label’. Please ensure you have added 'label’ in this case.

Example 1: Configure specimen collection table for all users

Code Block
languagejson
"treeColumns" : [ {
      "fields" : [ {
        "name" : "description",
        "width" : 35
      }, {
        "name" : "label",
        "width" : 10
      }, {
        "name" : "quantity",
        "width" : 10
      }, {
        "name" : "collector",
        "width" : 15
      }, {
        "name" : "collectionDate",
        "width" : 20
      }, { 
        "name" : "status",
        "width" : 15
      } ]
    } ],

...