Versions Compared

Key

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

You can configure the derivative/aliquot page based on the different criteria. This helps you eliminate the unwanted fields that are not needed on derivative/aliquot pages.

...

Screenshot:  Cart view page → Create Aliquot Page

Extra features in creating derived and aliquot page

...

Hide 'Copy first to all' link on derivative and aliquot pages:

There is a button 'Copy first to all' on the aliquots and derivatives pages, which will allow creating similar aliquots and derivatives at once. Some users do not need this as a similar type of children are generally created in a single row, and 'Copy first to all' might be confusing.

In v6.0, this button can be hidden. To hide "Copy first to all" a button a button from derived or aliquot pages, add add the following setting in JSON under aliquotsCollection under aliquotsCollection and derivedSpecimens sections

Code Block
{
    ...
    "aliquotsCollection": [
      ...
      {
        "title": ...,
        ...,
        "hideCopyFirstToAll": true
        ...
      },
      ...
    ],

   "derivedSpecimens": [
      ...
      {
        "title": ...,
        ...,
        "hideCopyFirstToAll": true
        ...
      },
      ...
    ],
    ...
  }

Before configuring the JSON, the "Copy first to all" button is present on Create derivative page:

After configuring the JSON, "Copy first to all" button is hidden on Create derivative page:

Image Modified

After configuring the JSON, "Copy first to all" button is hidden on Create aliquot page:

Image Modified

Add ability to create aliquots from the 'Create Derivatives' page

...

Added an option to allow users to create aliquots when creating unplanned derivatives. The default system workflow includes the option to create aliquots.

...