X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=bin%2Fmozilla%2Fic.pl;h=05aaced0dc44c9b18c21987f42e82de37310a198;hb=3dc2935c3cf31e5350f8acd83c3c67941a6a0dba;hp=547acf7df6d81e22bedbc6edf135668f9f284e27;hpb=b3eb24ef367a8702a5535558cfaa8ebc5d297f2e;p=kivitendo-erp.git diff --git a/bin/mozilla/ic.pl b/bin/mozilla/ic.pl index 547acf7df..05aaced0d 100644 --- a/bin/mozilla/ic.pl +++ b/bin/mozilla/ic.pl @@ -34,6 +34,7 @@ use POSIX qw(strftime); use List::Util qw(max); +use SL::AM; use SL::IC; use SL::ReportGenerator; @@ -99,7 +100,7 @@ sub search { $form->{title} = (ucfirst $form->{searchitems}) . "s"; $form->{title} = $locale->text($form->{title}); - $form->{title} = $locale->text('Assemblies') if ($is_xyz{assembly}); + $form->{title} = $locale->text('Assemblies') if ($is_xyz{is_assembly}); $form->{jsscript} = 1; @@ -574,9 +575,6 @@ sub addtop100 { } } - $form->{l_lastcost} = "" - if ($form->{searchitems} eq 'assembly' && !$form->{bom}); - foreach my $item (@columns) { if ($form->{"l_$item"} eq "Y") { push @column_index, $item; @@ -1114,8 +1112,6 @@ sub generate_report { } } - $form->{l_lastcost} = "" if ($form->{searchitems} eq 'assembly' && !$form->{bom}); - IC->all_parts(\%myconfig, \%$form); my @columns = @@ -1196,6 +1192,8 @@ sub generate_report { my $idx = 0; my $same_item = $form->{parts}[0]{ $form->{sort} } if (scalar @{ $form->{parts} }); + my $defaults = AM->get_defaults(); + # postprocess parts foreach my $ref (@{ $form->{parts} }) { @@ -1228,6 +1226,8 @@ sub generate_report { map { $row->{$_}{data} = $form->format_amount(\%myconfig, $ref->{$_}); } qw(onhand rop weight soldtotal); + $row->{weight}->{data} .= ' ' . $defaults->{weightunit}; + if (!$ref->{assemblyitem}) { foreach my $col (@subtotal_columns) { $totals{$col} += $onhand * $ref->{$col}; @@ -1464,7 +1464,9 @@ sub form_header { map { $form->{$_} =~ s/"/"/g; } qw(unit); $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS', - 'partsgroup' => 'all_partsgroup'); + 'partsgroup' => 'all_partsgroup', + 'vendors' => 'ALL_VENDORS',); + IC->retrieve_buchungsgruppen(\%myconfig, $form); @{ $form->{BUCHUNGSGRUPPEN} } = grep { $_->{id} eq $form->{buchungsgruppen_id} || ($form->{id} && $form->{orphaned}) || !$form->{id} } @{ $form->{BUCHUNGSGRUPPEN} }; @@ -1475,14 +1477,17 @@ sub form_header { $units = AM->retrieve_units(\%myconfig, $form); $form->{ALL_UNITS} = [ map +{ name => $_ }, sort { $units->{$a}{sortkey} <=> $units->{$b}{sortkey} } keys %$units ]; + $form->{defaults} = AM->get_defaults(); + $form->{fokus} = "ic.partnumber"; $form->header; - print $form->parse_html_template('ic/form_header', { ALL_PRICE_FACTORS => $form->{ALL_PRICE_FACTORS}, - ALL_UNITS => $form->{ALL_UNITS}, - BUCHUNGSGRUPPEN => $form->{BUCHUNGSGRUPPEN}, - payment_terms => $form->{payment_terms}, - all_partsgroup => $form->{all_partsgroup}}); + #print $form->parse_html_template('ic/form_header', { ALL_PRICE_FACTORS => $form->{ALL_PRICE_FACTORS}, + # ALL_UNITS => $form->{ALL_UNITS}, + # BUCHUNGSGRUPPEN => $form->{BUCHUNGSGRUPPEN}, + # payment_terms => $form->{payment_terms}, + # all_partsgroup => $form->{all_partsgroup}}); + print $form->parse_html_template('ic/form_header'); $lxdebug->leave_sub(); } @@ -1501,6 +1506,7 @@ sub makemodel_row { my ($numrows) = @_; my @mm_data = grep { any { $_ ne '' } @$_{qw(make model)} } map +{ make => $form->{"make_$_"}, model => $form->{"model_$_"} }, 1 .. $numrows; + delete @{$form}{grep { m/^make_\d+/ || m/^model_\d+/ } keys %{ $form }}; print $form->parse_html_template('ic/makemodel', { MM_DATA => [ @mm_data, {} ], mm_rows => scalar @mm_data + 1 }); $lxdebug->leave_sub(); @@ -1534,6 +1540,7 @@ sub assembly_row { # save form variables in a previousform variable foreach my $key (sort keys %$form) { + next unless ref $form->{$key} eq '' && $form->{$key}; # escape ampersands $form->{$key} =~ s/&/%26/g; @@ -1587,9 +1594,9 @@ sub assembly_row { $form->{"partnumber_$i"} =~ s/\"/"/g; $linetotal = - $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"}, 2); - $line_purchase_price = - $form->round_amount($form->{"lastcost_$i"} * $form->{"qty_$i"}, 2); #lastcost == purchase_price | ungenaue datenbankfeld-übersetzung + $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / ($form->{"price_factor_$i"} || 1), 2); + $line_purchase_price = + $form->round_amount($form->{"lastcost_$i"} * $form->{"qty_$i"} / ($form->{"price_factor_$i"} || 1), 2); #lastcost == purchase_price | ungenaue datenbankfeld-übersetzung $form->{assemblytotal} += $linetotal; $form->{assembly_purchase_price_total} += $line_purchase_price; @@ -1673,6 +1680,8 @@ sub assembly_row { {"id_$i"}> {"sellprice_$i"}> {"weight_$i"}> + {"price_factor_id_$i"}> + {"price_factor_$i"}> |; }