X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Fis.pl;h=86328055584a07927d1a63c133413e7a38b4c8f7;hb=98662ad2b031a81c88ce6da0babf6f9d0b37059a;hp=2891634f005c312023173d28fedeb389a2fb82a4;hpb=4e27e828de91b6f1252f3353f06edea72f13a0c1;p=kivitendo-erp.git diff --git a/bin/mozilla/is.pl b/bin/mozilla/is.pl index 2891634f0..863280555 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| @@ -853,8 +856,8 @@ sub form_footer { $tax .= qq| - + |; @@ -894,7 +897,7 @@ sub form_footer { $tax .= qq| + . $form->{"${item}_rate"} * 100 .qq|% @@ -1099,6 +1102,8 @@ if ($form->{type} eq "credit_note") { $closedto = $form->datetonum($form->{closedto}, \%myconfig); if ($form->{id}) { + my $show_storno = !$form->{storno} && !IS->has_storno(\%myconfig, $form, "ar"); + print qq| @@ -1107,9 +1112,9 @@ if ($form->{type} eq "credit_note") { |; + . $locale->text('E-mail') . qq|"> |; print qq|| unless ($form->{storno}); + . $locale->text('Storno') . qq|"> | if ($show_storno); print qq| |; @@ -1150,7 +1155,9 @@ if ($form->{type} eq "credit_note") { |; + . $locale->text('Post') . qq|"> | . + NTI($cgi->submit('-name' => 'action', '-value' => $locale->text('Save draft'), + '-class' => 'submit')); } } @@ -1172,7 +1179,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}> @@ -1433,18 +1443,20 @@ sub post { $form->{id} = 0 if $form->{postasnew}; # get new invnumber in sequence if no invnumber is given or if posasnew was requested - if (!$form->{invnumber} || $form->{postasnew}) { + if ($form->{postasnew}) { if ($form->{type} eq "credit_note") { - $form->{invnumber} = $form->update_defaults(\%myconfig, "cnnumber"); + undef($form->{cnnumber}); } else { - $form->{invnumber} = $form->update_defaults(\%myconfig, "invnumber"); + undef($form->{invnumber}); } } + relink_accounts(); if ($print_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"; @@ -1453,9 +1465,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"; } @@ -1507,6 +1520,18 @@ sub storno { $form->error($locale->text('Cannot storno storno invoice!')); } + if (IS->has_storno(\%myconfig, $form, "ar")) { + $form->error($locale->text("Invoice has already been storno'd!")); + } + + map({ my $key = $_; delete($form->{$key}) + unless (grep({ $key eq $_ } qw(path login password id type))); } + keys(%{ $form })); + + &invoice_links; + &prepare_invoice; + relink_accounts(); + $form->{storno_id} = $form->{id}; $form->{storno} = 1; $form->{id} = "";
$form->{"${item}_description"} | - . $form->{"${item}_rate"} * 100 .qq|%$form->{"${item}_description"} | + . $form->{"${item}_rate"} * 100 .qq|% $form->{"${item}_total"}
Enthaltene $form->{"${item}_description"} | - . $form->{"${item}_rate"} * 100 .qq|% $form->{"${item}_total"}