Skip to content

Commit

Permalink
FIX: S:P:Record: Sepa-Belege
Browse files Browse the repository at this point in the history
  • Loading branch information
z4m1n0 committed Feb 16, 2024
1 parent b36c154 commit 1cf4a4c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions SL/Presenter/Record.pm
Original file line number Diff line number Diff line change
Expand Up @@ -436,11 +436,13 @@ my %TYPE_TO_PARAMS = (
},
sepa_transfer => sub {
my (%params) = @_;
_get_type_params('sepa_export', %params, type => 'sepa_transfer');
my %type_params = _get_type_params('sepa_export', %params, type => 'sepa_transfer');
return \%type_params;
},
sepa_collection => sub {
my (%params) = @_;
_get_type_params('sepa_export', %params, type => 'sepa_collection');
my %type_params = _get_type_params('sepa_export', %params, type => 'sepa_collection');
return \%type_params;
},
letter => sub {
my (%params) = @_;
Expand Down

0 comments on commit 1cf4a4c

Please sign in to comment.