change_health 4.2.5 → 4.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/change_health/response/claim/report/report_835_data.rb +5 -0
- data/lib/change_health/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: c847271b7069a65df06a0d61b2c50d5700c1260a8ed772523a0a8388c8b2d877
|
4
|
+
data.tar.gz: 898a336cf9e50e168ccf2ac55e4b331cb8bcc3b28e43c354f5558a1009edf876
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ffb725eb781443ad6d626ed064ce241db49def1cd2d9f986c929361c589d0a0d3f5b0bcd8292b3f751f2b4f54bf4b190d2d1d3efa7ea1fe7f8b97bc5a28acad
|
7
|
+
data.tar.gz: 5b2cf697ca016cd380cc7f1202eb8adaeb3c87521a35db1d60d3c2c4d579da8e69295963a2765742cba81c54902ce1018795bc2bb449155e5d3f36b738e28686
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
# [4.3.0] - 2022-08-08
|
9
|
+
|
10
|
+
### Added
|
11
|
+
|
12
|
+
* Report835Data - add another way to get service_date_begin & service_date_end
|
13
|
+
|
8
14
|
# [4.2.5] - 2022-07-29
|
9
15
|
|
10
16
|
### Fixed
|
@@ -406,6 +412,7 @@ Added the ability to hit professional claim submission API. For more details, se
|
|
406
412
|
* Authentication
|
407
413
|
* Configuration
|
408
414
|
|
415
|
+
[4.3.0]: https://github.com/WeInfuse/change_health/compare/v4.2.5...v4.3.0
|
409
416
|
[4.2.5]: https://github.com/WeInfuse/change_health/compare/v4.2.4...v4.2.5
|
410
417
|
[4.2.4]: https://github.com/WeInfuse/change_health/compare/v4.2.3...v4.2.4
|
411
418
|
[4.2.3]: https://github.com/WeInfuse/change_health/compare/v4.2.2...v4.2.3
|
@@ -117,6 +117,11 @@ module ChangeHealth
|
|
117
117
|
)
|
118
118
|
end
|
119
119
|
|
120
|
+
if service_date_begin.nil? && service_date_end.nil?
|
121
|
+
service_date_begin = ChangeHealth::Models::PARSE_DATE.call(payment_info['claimStatementPeriodStart'])
|
122
|
+
service_date_end = ChangeHealth::Models::PARSE_DATE.call(payment_info['claimStatementPeriodEnd'])
|
123
|
+
end
|
124
|
+
|
120
125
|
Report835Claim.new(
|
121
126
|
claim_payment_remark_codes: claim_payment_remark_codes,
|
122
127
|
patient_control_number: patient_control_number,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: change_health
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Crockett
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-08-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|