Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exchange Assigned Field Comparisons and Overall Record Flag Setting to 'N' #101

Open
wants to merge 1 commit into
base: trunk
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions app/operations/reports/generate_rcno_report.rb
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@ def exchange_assigned_subscriber_id
return [ffm_subscriber_id, nil, "D"] if @overall_flag == "G"
issuer_subscriber_id = @rcni_row[16]
match_data = ffm_subscriber_id == issuer_subscriber_id ? "M" : "I"
@overall_flag = "N" if match_data == "I"
[ffm_subscriber_id, issuer_subscriber_id, match_data]
end

Expand All @@ -345,6 +346,7 @@ def exchange_assigned_member_id
return [ffm_member_id, nil, "D"] if @overall_flag == "G"
issuer_member_id = @rcni_row[17]
match_data = ffm_member_id == issuer_member_id ? "M" : "I"
@overall_flag = "N" if match_data == "I"
[ffm_member_id, issuer_member_id, match_data]
end

Expand Down