Skip to content
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