File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
lib/cfonb/operation_details Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ class IBE < Base
7
7
8
8
def self . apply ( operation , line )
9
9
operation . creditor_identifier = line . detail [ 0 ..34 ] . strip
10
- operation . creditor_identifier_type = line . detail [ 35 ..-1 ] . strip
10
+ operation . creditor_identifier_type = line . detail [ 35 ..-1 ] & .strip
11
11
end
12
12
13
13
CFONB ::OperationDetails . register ( 'IBE' , self )
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ class IPY < Base
7
7
8
8
def self . apply ( operation , line )
9
9
operation . debtor_identifier = line . detail [ 0 ..34 ] . strip
10
- operation . debtor_identifier_type = line . detail [ 35 ..-1 ] . strip
10
+ operation . debtor_identifier_type = line . detail [ 35 ..-1 ] & .strip
11
11
end
12
12
13
13
CFONB ::OperationDetails . register ( 'IPY' , self )
You can’t perform that action at this time.
0 commit comments