X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Foe.pl;h=cb55f0714f7fb776811dafe350bb61293ee8cdea;hb=29d636435456494e8dc702ccc1015452a71275d9;hp=df883fc21d85587a9b570b93fe4f9792f4d43880;hpb=85f481691e32951dd3454829b1c095c6ce7d95e6;p=kivitendo-erp.git diff --git a/bin/mozilla/oe.pl b/bin/mozilla/oe.pl index df883fc21..cb55f0714 100644 --- a/bin/mozilla/oe.pl +++ b/bin/mozilla/oe.pl @@ -41,7 +41,7 @@ use SL::ReportGenerator; require "bin/mozilla/io.pl"; require "bin/mozilla/arap.pl"; -require "bin/mozilla/report_generator.pl"; +require "bin/mozilla/reportgenerator.pl"; 1; @@ -1010,9 +1010,31 @@ sub form_footer { - + + +|; + + if ($form->{type} =~ /^sales_/) { + print qq| + + + + + + + + +|; + } + + print qq| + + +
| . $locale->text('Ertrag') . qq|| . $form->format_amount(\%myconfig, $form->{marge_total}, 2, 0) . qq|
| . $locale->text('Ertrag prozentual') . qq|| . $form->format_amount(\%myconfig, $form->{marge_percent}, 2, 0) . qq| %
+ + $taxincluded - +
$subtotal $tax @@ -1042,11 +1064,11 @@ sub form_footer { |; - foreach $file (keys %{ $form->{WEBDAV} }) { + foreach $file (@{ $form->{WEBDAV} }) { $webdav_list .= qq| - - + + |; } @@ -1110,12 +1132,10 @@ sub form_footer { |; } - if (1) { print qq| |; -} if ($form->{type} =~ /sales_order$/) { print qq| @@ -1142,14 +1162,6 @@ sub form_footer { . $locale->text('Order') . qq|"> |; } - } elsif ($form->{type} =~ /sales_order$/ && $form->{rowcount} && !$form->{proforma}) { - print qq| -
Workflow $form->{heading}
- - -|; } $form->hide_form("saved_xyznumber"); @@ -1523,7 +1535,6 @@ sub search { - + + + +
Dateiname Webdavlink
$file$form->{WEBDAV}{$file}$file->{name}$file->{type}
$employee | . $locale->text('Ship via') . qq| $employee
| @@ -1534,6 +1545,12 @@ sub search { . $locale->text('Total') . qq|
| + . $locale->text('Ertrag') . qq| | + . $locale->text('Ertrag prozentual') . qq|
| . $locale->text('Project Number') . qq| | @@ -1611,7 +1628,7 @@ sub orders { "curr", "employee", "shipvia", "globalprojectnumber", "transaction_description", "open", - "delivered" + "delivered", "marge_total", "marge_percent" ); # only show checkboxes if gotten here via sales_order form. @@ -1669,6 +1686,8 @@ sub orders { 'transaction_description' => { 'text' => $locale->text('Transaction description'), }, 'open' => { 'text' => $locale->text('Open'), }, 'delivered' => { 'text' => $locale->text('Delivered'), }, + 'marge_total' => { 'text' => $locale->text('Ertrag'), }, + 'marge_percent' => { 'text' => $locale->text('Ertrag prozentual'), } ); foreach my $name (qw(id transdate reqdate quonumber ordnumber name employee shipvia)) { @@ -1742,7 +1761,7 @@ sub orders { # escape callback for href $callback = $form->escape($href); - my @subtotal_columns = qw(netamount amount); + my @subtotal_columns = qw(netamount amount marge_total); my %totals = map { $_ => 0 } @subtotal_columns; my %subtotals = map { $_ => 0 } @subtotal_columns; @@ -1761,7 +1780,7 @@ sub orders { map { $subtotals{$_} += $oe->{$_}; $totals{$_} += $oe->{$_} } @subtotal_columns; - map { $oe->{$_} = $form->format_amount(\%myconfig, $oe->{$_}, 2) } qw(netamount tax amount); + map { $oe->{$_} = $form->format_amount(\%myconfig, $oe->{$_}, 2) } qw(netamount tax amount marge_total marge_percent); my $row = { }; @@ -2064,8 +2083,8 @@ sub delete { - + @@ -2158,7 +2177,6 @@ sub invoice { $exchangerate = $form->check_exchangerate(\%myconfig, $form->{currency}, $orddate, $buysell); - print(STDERR "CURRENCY $form->{currency} DEFAULT: $form->{defaultcurrency} EXCHANGE $exchangerate\n"); if (!$exchangerate) { &backorder_exchangerate($orddate, $buysell); @@ -2173,7 +2191,7 @@ sub invoice { # if not it's most likely a collective order, which can't be saved back # so they just have to be closed if (($form->{ordnumber} ne '') || ($form->{quonumber} ne '')) { - OE->close_order(\%myconfig, \%$form); + OE->close_order(\%myconfig, \%$form) if ($form->{id}); } else { OE->close_orders(\%myconfig, \%$form); } @@ -2588,18 +2606,16 @@ sub e_mail { $form->{print_and_save} = 1; - if (!$form->{id}) { - $print_post = 1; + $print_post = 1; - my $saved_form = save_form(); + my $saved_form = save_form(); - save(); + save(); - my %saved_vars; - map({ $saved_vars{$_} = $form->{$_}; } qw(id ordnumber quonumber)); - restore_form($saved_form); - map({ $form->{$_} = $saved_vars{$_}; } qw(id ordnumber quonumber)); - } + my %saved_vars; + map({ $saved_vars{$_} = $form->{$_}; } qw(id ordnumber quonumber)); + restore_form($saved_form); + map({ $form->{$_} = $saved_vars{$_}; } qw(id ordnumber quonumber)); edit_e_mail();