X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Fis.pl;h=30d0a072f5b7aa54ac10689162b523434af59421;hb=db68b6fd72b9f0d7d8be953746c0e7d6154f5eaf;hp=f210457284dd8968db733bbc791aea3e5d22cf2a;hpb=2b89ec9756dc1d3525b6163fe4cf4f38af83f9d8;p=kivitendo-erp.git diff --git a/bin/mozilla/is.pl b/bin/mozilla/is.pl index f21045728..30d0a072f 100644 --- a/bin/mozilla/is.pl +++ b/bin/mozilla/is.pl @@ -37,6 +37,7 @@ use Data::Dumper; require "$form->{path}/io.pl"; require "$form->{path}/arap.pl"; +require "bin/mozilla/drafts.pl"; 1; @@ -44,7 +45,9 @@ require "$form->{path}/arap.pl"; sub add { $lxdebug->enter_sub(); - + + return $lxdebug->leave_sub() if (load_draft_maybe()); + if ($form->{type} eq "credit_note") { $form->{title} = $locale->text('Add Credit Note'); @@ -621,7 +624,7 @@ sub form_header { {storno}> {storno_id}> - +| . ($form->{saved_message} ? qq|

$form->{saved_message}

| : "") . qq| @@ -1105,9 +1108,9 @@ if ($form->{type} eq "credit_note") { |; + . $locale->text('E-mail') . qq|"> |; print qq|| unless ($form->{storno}); + . $locale->text('Storno') . qq|"> | unless ($form->{storno}); print qq| |; @@ -1148,18 +1151,20 @@ if ($form->{type} eq "credit_note") { |; + . $locale->text('Post') . qq|"> | . + NTI($cgi->submit('-name' => 'action', '-value' => $locale->text('Save draft'), + '-class' => 'submit')); } } # button for saving history if($form->{id} ne "") { print qq| - {id} - . qq|); name=history id=history value=| - . $locale->text('history') - . qq|>|; + |; } # /button for saving history @@ -1170,7 +1175,10 @@ if ($form->{type} eq "credit_note") { {rowcount}> - +| +. $cgi->hidden('-name' => 'draft_id', '-default' => [$form->{draft_id}]) +. $cgi->hidden('-name' => 'draft_description', '-default' => [$form->{draft_description}]) +. qq| {path}> {login}> {password}> @@ -1443,6 +1451,7 @@ sub post { if (!(IS->post_invoice(\%myconfig, \%$form))) { $form->error($locale->text('Cannot post invoice!')); } + remove_draft() if $form->{remove_draft}; # saving the history if(!exists $form->{addition}) { $form->{addition} = "PRINTED AND POSTED"; @@ -1451,9 +1460,10 @@ sub post { # /saving the history } else { - if (IS->post_invoice(\%myconfig, \%$form)){ + if (IS->post_invoice(\%myconfig, \%$form)){ + remove_draft() if $form->{remove_draft}; # saving the history - if(!exists $form->{addition}) { + if(!exists $form->{addition}) { if($form->{storno}) { $form->{addition} = "STORNO"; }