his_emr_api_lab 1.1.12 → 1.1.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/serializers/lab/lab_order_serializer.rb +1 -1
- data/app/services/lab/orders_service.rb +2 -0
- data/lib/lab/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f7b7bee82670948e0315bde7a3d0f9cab91476bcb27646ec7c234e0c96d11bc9
|
|
4
|
+
data.tar.gz: 127d70d6a044a8ddc5dcc25ed2460d1fcb463d8f27f3817b54fca7d5ada6d88a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 421db4bdc5cb32b994d9329c87ebe8c79eae681765abe980bd87c6fab83c70de74961d78845d2602af31aea018b480ddcad9f97de4dfa01a8cd975c8c9a49db8
|
|
7
|
+
data.tar.gz: 4d1c1df19df7b297e66d44055bcbe88b410f25e744a56f0bb46a99f8fd06af9e25ad332499cbd34e8ea10f7879c14455f8b16d376e24c7a50bf7518156ce3646
|
|
@@ -6,7 +6,7 @@ module Lab
|
|
|
6
6
|
tests ||= order.voided == 1 ? voided_tests(order) : order.tests
|
|
7
7
|
requesting_clinician ||= order.requesting_clinician
|
|
8
8
|
reason_for_test ||= order.reason_for_test
|
|
9
|
-
target_lab
|
|
9
|
+
target_lab = target_lab || order.target_lab || Location.current_health_center.name
|
|
10
10
|
|
|
11
11
|
ActiveSupport::HashWithIndifferentAccess.new(
|
|
12
12
|
{
|
|
@@ -169,6 +169,8 @@ module Lab
|
|
|
169
169
|
##
|
|
170
170
|
# Attach the lab where the test is going to get carried out.
|
|
171
171
|
def add_target_lab(order, params)
|
|
172
|
+
return nil unless params['target_lab']
|
|
173
|
+
|
|
172
174
|
create_order_observation(
|
|
173
175
|
order,
|
|
174
176
|
Lab::Metadata::TARGET_LAB_CONCEPT_NAME,
|
data/lib/lab/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: his_emr_api_lab
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elizabeth Glaser Pediatric Foundation Malawi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-09-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: couchrest
|