renalware-core 2.0.74 → 2.0.75
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/presenters/renalware/ukrdc/patient_presenter.rb +5 -1
- data/lib/renalware/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7bd749bf8191908be7e9bc1d15e9f283eb70a5584dc53ebb45c94cda8afd2060
|
|
4
|
+
data.tar.gz: 56679014ae649da1baa18755117a23cc5f199542de3e6bb6d922499b444fec8e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c23f24fd2a0694433493e02129fe01c3e13f1ebb785ed78291d08ffac9e6386eaa33f7b1a3f50f8b9a691749ff86ad447bef490bd89043e8891b1c8c39130f32
|
|
7
|
+
data.tar.gz: d5e83fd37cfc7bf6b1a573b30d550b69a7fa2ed9c3d89bdd41fba2935d3940d05574ce681982f5eaaf757f905490169fb49939204694082961ffcc63985725f4
|
|
@@ -114,12 +114,16 @@ module Renalware
|
|
|
114
114
|
.select(<<-SELECT)
|
|
115
115
|
DISTINCT ON (
|
|
116
116
|
pathology_observation_requests.patient_id,
|
|
117
|
-
pathology_observation_requests.requestor_order_number
|
|
117
|
+
pathology_observation_requests.requestor_order_number,
|
|
118
|
+
pathology_observation_requests.requested_at,
|
|
119
|
+
pathology_observation_requests.description_id)
|
|
118
120
|
*
|
|
119
121
|
SELECT
|
|
120
122
|
.order(<<-ORDER)
|
|
121
123
|
pathology_observation_requests.patient_id ASC,
|
|
122
124
|
pathology_observation_requests.requestor_order_number ASC,
|
|
125
|
+
pathology_observation_requests.requested_at ASC,
|
|
126
|
+
pathology_observation_requests.description_id ASC,
|
|
123
127
|
pathology_observation_requests.created_at DESC
|
|
124
128
|
ORDER
|
|
125
129
|
end
|
data/lib/renalware/version.rb
CHANGED