summaryrefslogtreecommitdiff
path: root/scripts/vouchers.pl
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/vouchers.pl')
-rw-r--r--scripts/vouchers.pl8
1 files changed, 5 insertions, 3 deletions
diff --git a/scripts/vouchers.pl b/scripts/vouchers.pl
index 047afcb7..5173045a 100644
--- a/scripts/vouchers.pl
+++ b/scripts/vouchers.pl
@@ -72,10 +72,10 @@ sub add_vouchers {
my $batch = LedgerSMB::Batch->new({base => $request});
our $vouchers_dispatch =
{
- payable => {script => 'bin/ap.pl', function => sub {add()}},
- receivable => {script => 'bin/ar.pl', function => sub {add()}},
+ ap => {script => 'bin/ap.pl', function => sub {add()}},
+ ar => {script => 'bin/ar.pl', function => sub {add()}},
gl => {script => 'bin/gl.pl', function => sub {add()}},
- receipt => {script => 'scripts/payment.pl',
+ receipt => {script => 'scripts/payment.pl',
function => sub {
my ($request) = @_;
$request->{account_class} = 2;
@@ -124,6 +124,8 @@ sub add_vouchers {
my $script = $vouchers_dispatch->{$request->{batch_type}}{script};
$form->{script} = $script;
$form->{script} =~ s|.*/||;
+ delete $form->{id};
+ delete $request->{id};
if ($script =~ /^bin/){
# Note that the line below is generally considered incredibly bad form.