diff options
Diffstat (limited to 'bin')
-rw-r--r-- | bin/arapprn.pl | 4 | ||||
-rw-r--r-- | bin/cp.pl | 2 | ||||
-rw-r--r-- | bin/io.pl | 2 | ||||
-rw-r--r-- | bin/jc.pl | 2 | ||||
-rw-r--r-- | bin/pos.pl | 2 | ||||
-rw-r--r-- | bin/rp.pl | 6 |
6 files changed, 9 insertions, 9 deletions
diff --git a/bin/arapprn.pl b/bin/arapprn.pl index 845d829a..b1885e66 100644 --- a/bin/arapprn.pl +++ b/bin/arapprn.pl @@ -290,7 +290,7 @@ sub print_check { format => uc $form->{'format'} ); try { $template->render($form); - $template->output($form->{'media'}); + $template->output(%{$form}); } catch Error::Simple with { my $E = shift; @@ -558,7 +558,7 @@ sub print_transaction { format => uc $form->{format} ); try { $template->render($form); - $template->output($form->{media}); + $template->output(%{$form}); } catch Error::Simple with { my $E = shift; @@ -1477,7 +1477,7 @@ sub print_form { template => $form->{'formname'}, format => uc $form->{format} ); try { $template->render($form); - $template->output($form->{media}); + $template->output(%{$form}); } catch Error::Simple with { my $E = shift; @@ -1771,7 +1771,7 @@ sub print_form { template => $form->{'formname'}, format => uc $form->{format} ); try { $template->render($form); - $template->output($form->{media}); + $template->output(%{$form}); } catch Error::Simple with { my $E = shift; @@ -2209,7 +2209,7 @@ qq|$form->{"${item}hour"}:$form->{"${item}min"}:$form->{"${item}sec"}|; template => $form->{'formname'}, format => uc $form->{format} ); try { $template->render($form); - $template->output($form->{media}); + $template->output(%{$form}); } catch Error::Simple with { my $E = shift; @@ -1005,7 +1005,7 @@ sub print_form { template => $form->{'formname'}, format => uc $form->{format} ); try { $template->render($form); - $template->output($form->{media}); + $template->output(%{$form}); } catch Error::Simple with { my $E = shift; @@ -1084,7 +1084,7 @@ sub generate_income_statement { template => $form->{'formname'}, format => uc $form->{format} ); try { $template->render($form); - $template->output($form->{media}); + $template->output(%{$form}); } catch Error::Simple with { my $E = shift; @@ -1134,7 +1134,7 @@ sub generate_balance_sheet { template => $form->{'formname'}, format => uc $form->{format} ); try { $template->render($form); - $template->output($form->{media}); + $template->output(%{$form}); } catch Error::Simple with { my $E = shift; @@ -2282,7 +2282,7 @@ sub print_form { format => uc $form->{format} ); try { $template->render($form); - $template->output($form->{media}); + $template->output(%{$form}); } catch Error::Simple with { my $E = shift; |