Fully added Transaction importing

This commit is contained in:
Finn 2019-07-05 17:56:21 +01:00
parent 46b5496901
commit d1cd30928e
No known key found for this signature in database
GPG key ID: 7455B4B17685B598
4 changed files with 41 additions and 9 deletions

View file

@ -15,6 +15,7 @@ sub import_csv {
my ($self) = @_;
my $rows = $self->csv_data;
return $self unless $rows;
foreach my $row ( @{$rows} ) {
$self->_row_to_result($row);
}