Skip to content

Commit 2ac8ac1

Browse files
committed
NRL-820 add new pointer types to constants
1 parent 6adbb5a commit 2ac8ac1

File tree

5 files changed

+10
-0
lines changed

5 files changed

+10
-0
lines changed

layer/nrlf/core/constants.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ class PointerTypes(Enum):
4646
CONTINGENCY_PLAN = "http://snomed.info/sct|325691000000100"
4747
EOL_CARE_PLAN = "http://snomed.info/sct|736373009"
4848
LLOYD_GEORGE_FOLDER = "http://snomed.info/sct|16521000000101"
49+
ADVANCED_CARE_PLAN = "http://snomed.info/sct|736366004"
50+
TREATMENT_ESCALATION_PLAN = "http://snomed.info/sct|735324008"
4951

5052
@staticmethod
5153
def list():

scripts/get_s3_permissions.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
"http://snomed.info/sct|736373009",
1515
"http://snomed.info/sct|861421000000109",
1616
"http://snomed.info/sct|887701000000100",
17+
"http://snomed.info/sct|736366004",
18+
"http://snomed.info/sct|735324008",
1719
]
1820

1921

tests/features/utils/api_client.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
"325691000000100", # Contingency plan
1818
"736373009", # End of life care plan
1919
"16521000000101", # Lloyd George record folder
20+
"736366004", # Advanced Care Plan
21+
"735324008", # Treatement Escalation Plan
2022
]
2123

2224

tests/performance/constants.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,6 @@ export const POINTER_TYPES = [
2020
"736373009",
2121
"861421000000109",
2222
"887701000000100",
23+
"736366004",
24+
"735324008",
2325
];

tests/performance/environment.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ class LogReference:
2828
"736373009": "End of life care plan",
2929
"861421000000109": "End of Life Care Coordination Summary",
3030
"887701000000100": "Emergency Health Care Plans",
31+
"736366004": "Advanced Care Plan",
32+
"735324008": "Treatement Escalation Plan",
3133
}
3234

3335

0 commit comments

Comments
 (0)