X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Fis.pl;h=51f3762533cb9574ba48226ec119235e4b5c6c75;hb=840aea131eef33512dccc13184e01affafaafb37;hp=9c11c3400b653f42f6f18e364f48a8b266e4af6f;hpb=213317d3ebd9073e68ac4d0cc789b94c377f575e;p=kivitendo-erp.git diff --git a/bin/mozilla/is.pl b/bin/mozilla/is.pl index 9c11c3400..51f376253 100644 --- a/bin/mozilla/is.pl +++ b/bin/mozilla/is.pl @@ -121,6 +121,7 @@ sub invoice_links { if ($form->{all_customer}) { unless ($form->{customer_id}) { $form->{customer_id} = $form->{all_customer}->[0]->{id}; + $form->{salesman_id} = $form->{all_customer}->[0]->{salesman_id}; } } @@ -367,7 +368,8 @@ sub form_header { "shipto" => "ALL_SHIPTO", "projects" => { "key" => "ALL_PROJECTS", "all" => 0, - "old_id" => \@old_project_ids }); + "old_id" => \@old_project_ids }, + "employees" => "ALL_SALESMEN"); my (%labels, @values); foreach my $item (@{ $form->{"ALL_CONTACTS"} }) { @@ -405,6 +407,22 @@ sub form_header { '-labels' => \%labels, '-default' => $form->{"globalproject_id"})); + %labels = (); + @values = (""); + foreach my $item (@{ $form->{ALL_SALESMEN} }) { + push(@values, $item->{id}); + $labels{$item->{id}} = $item->{name} ne "" ? $item->{name} : $item->{login}; + } + + $salesman = + qq| + | . $locale->text('Salesman') . qq| + | . + NTI($cgi->popup_menu('-name' => 'salesman_id', '-default' => $form->{salesman_id}, + '-values' => \@values, '-labels' => \%labels)) + . qq| + |; + # set option selected foreach $item (qw(AR customer currency department employee)) { $form->{"select$item"} =~ s/ selected//; @@ -713,11 +731,13 @@ print qq| - + - |; + + $salesman +|; if ($form->{type} eq "credit_note") { print qq| @@ -1102,6 +1122,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| @@ -1112,7 +1134,7 @@ if ($form->{type} eq "credit_note") { |; print qq| | unless ($form->{storno}); + . $locale->text('Storno') . qq|"> | if ($show_storno); print qq| |; @@ -1450,38 +1472,19 @@ sub post { } 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"; - $form->save_history($form->dbconnect(\%myconfig)); - } - # /saving the history - - } else { - if (IS->post_invoice(\%myconfig, \%$form)){ - remove_draft() if $form->{remove_draft}; - # saving the history - if(!exists $form->{addition}) { - if($form->{storno}) { - $form->{addition} = "STORNO"; - } - else { - $form->{addition} = "POSTED"; - } - $form->save_history($form->dbconnect(\%myconfig)); - } - # /saving the history - - $form->redirect( - $form->{label} . " $form->{invnumber} " . $locale->text('posted!')); - } - $form->error($locale->text('Cannot post invoice!')); + $form->error($locale->text('Cannot post invoice!')) + unless IS->post_invoice(\%myconfig, \%$form); + remove_draft() if $form->{remove_draft}; + + if(!exists $form->{addition}) { + $form->{addition} = $print_post ? "PRINTED AND POSTED" : + $form->{storno} ? "STORNO" : + "POSTED"; + $form->save_history($form->dbconnect(\%myconfig)); } + + $form->redirect( $form->{label} . " $form->{invnumber} " . $locale->text('posted!')) + unless $print_post; $lxdebug->leave_sub(); } @@ -1518,10 +1521,18 @@ sub storno { $form->error($locale->text('Cannot storno storno invoice!')); } - if (IC->has_storno(\%myconfig, $form)) { + 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} = ""; @@ -1652,3 +1663,15 @@ sub yes { $lxdebug->leave_sub(); } + +sub e_mail { + $lxdebug->enter_sub(); + + $print_post = 1; + + &post; + + &edit_e_mail; + + $lxdebug->leave_sub(); +}
| . $locale->text('Salesperson') . qq|| . $locale->text('Employee') . qq|
| . $locale->text('Credit Note Number') . qq|