diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-11-14 01:53:25 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-11-14 01:53:25 +0000 |
commit | db6d65ea85fb62d3399ec073ecb2fb88eb097567 (patch) | |
tree | 67d66fdd85593c10902ec8f2ef4397e85796f6b8 /scripts | |
parent | a1bbbd1ce60833fc44abce9d9a20ea2e3fc28ce1 (diff) |
Correcting check printing, adding appropriate test cases
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@2398 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/payment.pl | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/scripts/payment.pl b/scripts/payment.pl index 9061eea7..a081c5e8 100644 --- a/scripts/payment.pl +++ b/scripts/payment.pl @@ -282,7 +282,6 @@ sub print { if ($payment->{multiple}){ $payment->{checks} = []; - print "Multiple checks printing"; for my $line (1 .. $payment->{contact_count}){ my $id = $payment->{"contact_$line"}; next if !defined $payment->{"id_$id"}; @@ -337,14 +336,15 @@ sub print { no_auto_output => 1, output_args => $payment, ); - try { + #try { $template->render($payment); $template->output(%$payment); - } - catch Error::Simple with { - my $E = shift; - $payment->error( $E->stacktrace ); - }; + #} + #catch Error::Simple with { + # my $E = shift; + # $payment->error( $E->stacktrace ); + #}; + display_payments(@_); } else { @@ -402,7 +402,7 @@ sub display_payments { for (keys %LedgerSMB::Sysconfig::printer){ push @{$payment->{media_options}}, {text => $_, - value => $LedgerSMB::Sysconfig::printer{$_}}; + value => $_}; } if ($LedgerSMB::Sysconfig::latex){ @{$payment->{format_options}} = ( |