bug fix: toprows as default values
This commit is contained in:
parent
0f4cce2b22
commit
b4a5c6d2a5
|
@ -485,6 +485,10 @@ class Parser (Process):
|
|||
|
||||
elif segment and not row.startswith(section):
|
||||
if not _default :
|
||||
#
|
||||
# NOTE:
|
||||
# Some information in the toprows can be available and applied to claims that do not have this
|
||||
# This holds true for dates, N1, NM1 segments
|
||||
_default = (self.apply(_toprows,_code))
|
||||
DEFAULT_VALUE = dict(DEFAULT_VALUE,**_default)
|
||||
segment.append(row)
|
||||
|
|
2
setup.py
2
setup.py
|
@ -8,7 +8,7 @@ import sys
|
|||
def read(fname):
|
||||
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
||||
args = {
|
||||
"name":"healthcareio","version":"1.6.2.4",
|
||||
"name":"healthcareio","version":"1.6.2.6",
|
||||
"author":"Vanderbilt University Medical Center",
|
||||
"author_email":"steve.l.nyemba@vumc.org",
|
||||
"include_package_data":True,
|
||||
|
|
Loading…
Reference in New Issue