allscripts_unity_client 2.2.2 → 2.2.3
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/lib/allscripts_unity_client/client.rb +3 -2
- data/lib/allscripts_unity_client/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 46180065c152e9a78261d5558ae6ff30d143401a
|
|
4
|
+
data.tar.gz: 031d936c8d047d302d8563ac9273b5029aa011d6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0e4465be680e640e7227bb6da6dd7f252ec3dbaf69de80d0e1f5668b1f0a195d8c7915f693e6d7bc4d25ed17120e42414099d5aea7e0c24a3d74a94c421049a6
|
|
7
|
+
data.tar.gz: 7c7ce532bf9fbe5ea1b8c8b4e454d72c29d7a40eb0dc1d1b96624ad3137ab64fb8d0ae7c4cc96900907120f7f7f2df0940c228344fc00d8094900b65e92713fc
|
|
@@ -210,7 +210,7 @@ module AllscriptsUnityClient
|
|
|
210
210
|
raise NotImplementedError, 'GetEncounterDate magic action not implemented'
|
|
211
211
|
end
|
|
212
212
|
|
|
213
|
-
def get_encounter_list(userid, patientid, encounter_type, when_param = nil, nostradamus = nil, show_past_flag = nil, billing_provider_user_name = nil)
|
|
213
|
+
def get_encounter_list(userid, patientid, encounter_type, when_param = nil, nostradamus = nil, show_past_flag = nil, billing_provider_user_name = nil, show_all = false)
|
|
214
214
|
magic_parameters = {
|
|
215
215
|
action: 'GetEncounterList',
|
|
216
216
|
userid: userid,
|
|
@@ -219,7 +219,8 @@ module AllscriptsUnityClient
|
|
|
219
219
|
parameter2: when_param,
|
|
220
220
|
parameter3: nostradamus,
|
|
221
221
|
parameter4: show_past_flag,
|
|
222
|
-
parameter5: billing_provider_user_name
|
|
222
|
+
parameter5: billing_provider_user_name,
|
|
223
|
+
parameter6: show_all ? 'all' : nil
|
|
223
224
|
}
|
|
224
225
|
response = magic(magic_parameters)
|
|
225
226
|
|