## Background Currently when a mode change sub mode is an ABORT/ALARM sub mode, operators must refer to an Excel spreadsheet matrix of which paper checklists to complete. This feature is part of an effort to further digitize work instructions and streamline the process of determining which checklists should be completed depending on the reason why a reactor alarmed / aborted. ## Description of Change NICA_ORDERS_SERVICES (and the NICA Integration Service) now support an order type "ABORT_ALARM", which may be triggered when a reactor mode change occurs and the sub mode contains "ABORT/ALARM". Whether or not a NICA order is created depends on if the NICA checklist defined in OpenInsight applies to that reactor type (EpiPro is excluded for now). The "flows" of checklists to prescribe are defined in the REACT_PROB_CAT records for the ABORT/ALARM sub modes. Furthermore, NICA checklists defined in OpenInsight can now feature a property of whether or not they should _not_ be re-prescribed if a new NICA order is created of the same type while one is already active. ## Testing - Local testing - UAT by Jonathon Sperling ## Notes In the previous NICA integration feature, Intrusive Maintenance, the MonA group resource name was stored in environment variables instead of in ENVIRONMENT_SERVICES. After further testing, this turned out to be an unviable option as environment variables that are picked up are from the user's client or the terminal server they are running OpenInsight from. Setting environment variables on all clients and the terminal servers is not practical, so this was removed in a previous PR. Related work items: #175188
25 lines
824 B
Plaintext
25 lines
824 B
Plaintext
compile insert NICA_ORDERS_EQUATES
|
|
/*----------------------------------------
|
|
Author : Table Create Insert Routine
|
|
Written : 05/12/2024
|
|
Description : Insert for Table NICA_ORDERS
|
|
----------------------------------------*/
|
|
#ifndef __NICA_ORDERS_EQUATES__
|
|
#define __NICA_ORDERS_EQUATES__
|
|
|
|
equ NICA_ORDERS.ORDER_TYPE$ to 1
|
|
equ NICA_ORDERS.ORDER_STATUS$ to 2
|
|
equ NICA_ORDERS.ENTITY_TYPE$ to 3
|
|
equ NICA_ORDERS.ENTITY_ID$ to 4
|
|
equ NICA_ORDERS.IS_COMPLETE$ to 5
|
|
equ NICA_ORDERS.PROGRESS_PERCENTAGE$ to 6
|
|
equ NICA_ORDERS.ORDER_CHECKLIST_IDS$ to 7
|
|
equ NICA_ORDERS.ORDER_FLOW_IDS$ to 8
|
|
equ NICA_ORDERS.ORDER_RESPONSE_LEVEL$ to 9
|
|
equ NICA_ORDERS.CREATED_DTM$ to 10
|
|
equ NICA_ORDERS.CLOSED_DTM$ to 11
|
|
|
|
#endif
|
|
|
|
|