X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fhomebank2ledger;a=blobdiff_plain;f=lib%2FApp%2FHomeBank2Ledger%2FFormatter%2FLedger.pm;fp=lib%2FApp%2FHomeBank2Ledger%2FFormatter%2FLedger.pm;h=b815cd3f0c072407a8d08042610fd7c8ad8196c0;hp=332be8ca9d6303386497d187693debf78cd0b40a;hb=acbf9960f68f612f5ba8cfaaec2fb7fda27e20e2;hpb=b4cac7fd661b6d2a385e89399854dde984d594fe diff --git a/lib/App/HomeBank2Ledger/Formatter/Ledger.pm b/lib/App/HomeBank2Ledger/Formatter/Ledger.pm index 332be8c..b815cd3 100644 --- a/lib/App/HomeBank2Ledger/Formatter/Ledger.pm +++ b/lib/App/HomeBank2Ledger/Formatter/Ledger.pm @@ -14,7 +14,7 @@ L use warnings; use strict; -use App::HomeBank2Ledger::Util qw(commify); +use App::HomeBank2Ledger::Util qw(commify rtrim); use parent 'App::HomeBank2Ledger::Formatter'; @@ -25,6 +25,8 @@ my %STATUS_SYMBOLS = ( pending => '!', ); +sub _croak { require Carp; Carp::croak(@_) } + sub format { my $self = shift; my $ledger = shift; @@ -38,7 +40,7 @@ sub format { $self->_format_transactions($ledger), ); - return join($/, @out); + return join($/, map { rtrim($_) } @out); } sub _format_header { @@ -46,13 +48,13 @@ sub _format_header { my @out; - my $file = $self->file; - push @out, "; Converted from $file using homebank2ledger ${VERSION}"; - if (my $name = $self->name) { push @out, "; Name: $name"; } + my $file = $self->file; + push @out, "; Converted from ${file} using homebank2ledger ${VERSION}"; + push @out, ''; return @out; @@ -133,8 +135,8 @@ sub _format_transaction { my $date = $transaction->{date}; my $status = $transaction->{status}; - my $payee = $transaction->{payee} || 'No Payee TODO'; - my $memo = $transaction->{memo} || ''; + my $payee = $self->_format_string($transaction->{payee} || ''); + my $memo = $self->_format_string($transaction->{memo} || ''); my @postings = @{$transaction->{postings}}; my @out; @@ -146,13 +148,16 @@ sub _format_transaction { if (keys(%posting_statuses) == 1) { my ($status) = keys %posting_statuses; $status_symbol = $STATUS_SYMBOLS{$status || 'none'} || ''; - $status_symbol .= ' ' if $status_symbol; } } - my $symbol = $status_symbol ? "${status_symbol} " : ''; - push @out, "${date} ${symbol}${payee} ; $memo"; - $out[-1] =~ s/\h+$//; + $payee =~ s/(?: )|\t;/ ;/g; # don't turn into a memo + + push @out, sprintf('%s%s%s%s', $date, + $status_symbol && " ${status_symbol}", + $payee && " $payee", + $memo && " ; $memo", + ); for my $posting (@postings) { my @line; @@ -168,10 +173,9 @@ sub _format_transaction { push @line, $self->_format_amount($posting->{amount}, $posting->{commodity}) if defined $posting->{amount}; push @out, join('', @line); - $out[-1] =~ s/\h+$//; if (my $payee = $posting->{payee}) { - push @out, " ; Payee: $payee"; + push @out, ' ; Payee: '.$self->_format_string($payee); } if (my @tags = @{$posting->{tags} || []}) { @@ -184,12 +188,17 @@ sub _format_transaction { return @out; } +sub _format_string { + my $self = shift; + my $str = shift; + $str =~ s/\v//g; + return $str; +} + sub _format_amount { my $self = shift; my $amount = shift; - my $commodity = shift; - - # _croak 'Must provide a valid currency' if !$commodity; + my $commodity = shift or _croak 'Must provide a valid currency'; my $format = "\% .$commodity->{frac}f"; my ($whole, $fraction) = split(/\./, sprintf($format, $amount));