You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While this processes through the x12 reader iterator, the NM1 NM1*82*1*XXXXX*XXXXXX*X**XX*XX*XXXXXXXXXXX~ hits the getFinalizedMatch method to see if this indicates a new loop. Which it does.
The getFinalizedMatch will check for
2310B
2420A
In the if check, it checks for sibling first, then parent second.
This results in 2420A never being able to be parsed.
It should prefer the parent relationship above sibling, which would resolve this problem.
The text was updated successfully, but these errors were encountered:
Let's say you have this 2400 loop:
While this processes through the x12 reader iterator, the NM1
NM1*82*1*XXXXX*XXXXXX*X**XX*XX*XXXXXXXXXXX~
hits thegetFinalizedMatch
method to see if this indicates a new loop. Which it does.The getFinalizedMatch will check for
In the
if
check, it checks for sibling first, then parent second.This results in 2420A never being able to be parsed.
It should prefer the parent relationship above sibling, which would resolve this problem.
The text was updated successfully, but these errors were encountered: