X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FIS.pm;h=76825169cf8a62b9d2f5f9e5bf2e1b2be5fe699f;hb=5cf977e52788c523150fa19225b90914e6ddc909;hp=f51b536b6d82a4569ee0f5d1dab785d29f821d2c;hpb=52983c089cf1b4f1a4451e57ffa76f846c4791ba;p=kivitendo-erp.git diff --git a/SL/IS.pm b/SL/IS.pm index f51b536b6..76825169c 100644 --- a/SL/IS.pm +++ b/SL/IS.pm @@ -34,6 +34,8 @@ package IS; +use List::Util qw(max); + use SL::AM; use SL::Common; use SL::DBUtils; @@ -58,6 +60,15 @@ sub invoice_details { push(@project_ids, $form->{"globalproject_id"}) if ($form->{"globalproject_id"}); + $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS'); + my %price_factors; + + foreach my $pfac (@{ $form->{ALL_PRICE_FACTORS} }) { + $price_factors{$pfac->{id}} = $pfac; + $pfac->{factor} *= 1; + $pfac->{formatted_factor} = $form->format_amount($myconfig, $pfac->{factor}); + } + # sort items by partsgroup for $i (1 .. $form->{rowcount}) { $partsgroup = ""; @@ -121,7 +132,8 @@ sub invoice_details { deliverydate_oe ordnumber_oe transdate_oe licensenumber validuntil partnotes serialnumber reqdate sellprice listprice netprice discount p_discount discount_sub nodiscount_sub - linetotal nodiscount_linetotal tax_rate projectnumber); + linetotal nodiscount_linetotal tax_rate projectnumber + price_factor price_factor_name); my @tax_arrays = qw(taxbase tax taxdescription taxrate taxnumber); @@ -154,23 +166,26 @@ sub invoice_details { $position = int($position); $position++; } - push(@{ $form->{runningnumber} }, $position); - push(@{ $form->{number} }, qq|$form->{"partnumber_$i"}|); - push(@{ $form->{serialnumber} }, qq|$form->{"serialnumber_$i"}|); - push(@{ $form->{bin} }, qq|$form->{"bin_$i"}|); - push(@{ $form->{"partnotes"} }, qq|$form->{"partnotes_$i"}|); - push(@{ $form->{description} }, qq|$form->{"description_$i"}|); - push(@{ $form->{longdescription} }, qq|$form->{"longdescription_$i"}|); - push(@{ $form->{qty} }, - $form->format_amount($myconfig, $form->{"qty_$i"})); - push(@{ $form->{unit} }, qq|$form->{"unit_$i"}|); - push(@{ $form->{deliverydate_oe} }, qq|$form->{"deliverydate_$i"}|); - - push(@{ $form->{sellprice} }, $form->{"sellprice_$i"}); - push(@{ $form->{ordnumber_oe} }, qq|$form->{"ordnumber_$i"}|); - push(@{ $form->{transdate_oe} }, qq|$form->{"transdate_$i"}|); - push(@{ $form->{invnumber} }, qq|$form->{"invnumber"}|); - push(@{ $form->{invdate} }, qq|$form->{"invdate"}|); + + my $price_factor = $price_factors{$form->{"price_factor_id_$i"}} || { 'factor' => 1 }; + + push @{ $form->{runningnumber} }, $position; + push @{ $form->{number} }, $form->{"partnumber_$i"}; + push @{ $form->{serialnumber} }, $form->{"serialnumber_$i"}; + push @{ $form->{bin} }, $form->{"bin_$i"}; + push @{ $form->{"partnotes"} }, $form->{"partnotes_$i"}; + push @{ $form->{description} }, $form->{"description_$i"}; + push @{ $form->{longdescription} }, $form->{"longdescription_$i"}; + push @{ $form->{qty} }, $form->format_amount($myconfig, $form->{"qty_$i"}); + push @{ $form->{unit} }, $form->{"unit_$i"}; + push @{ $form->{deliverydate_oe} }, $form->{"deliverydate_$i"}; + push @{ $form->{sellprice} }, $form->{"sellprice_$i"}; + push @{ $form->{ordnumber_oe} }, $form->{"ordnumber_$i"}; + push @{ $form->{transdate_oe} }, $form->{"transdate_$i"}; + push @{ $form->{invnumber} }, $form->{"invnumber"}; + push @{ $form->{invdate} }, $form->{"invdate"}; + push @{ $form->{price_factor} }, $price_factor->{formatted_factor}; + push @{ $form->{price_factor_name} }, $price_factor->{description}; if ($form->{lizenzen}) { if ($form->{"licensenumber_$i"}) { @@ -188,75 +203,50 @@ sub invoice_details { # listprice push(@{ $form->{listprice} }, $form->{"listprice_$i"}); - my $sellprice = $form->parse_amount($myconfig, $form->{"sellprice_$i"}); - my ($dec) = ($sellprice =~ /\.(\d+)/); - $dec = length $dec; - my $decimalplaces = ($dec > 2) ? $dec : 2; - - my $i_discount = - $form->round_amount( - $sellprice * $form->parse_amount($myconfig, - $form->{"discount_$i"}) / 100, - $decimalplaces); + my $sellprice = $form->parse_amount($myconfig, $form->{"sellprice_$i"}); + my ($dec) = ($sellprice =~ /\.(\d+)/); + my $decimalplaces = max 2, length($dec); - my $discount = - $form->round_amount($form->{"qty_$i"} * $i_discount, $decimalplaces); + my $discount = $form->round_amount($form->{"qty_$i"} * $sellprice * $form->{"discount_$i"} / 100 / $price_factor->{factor}, $decimalplaces); + my $linetotal = $form->round_amount($form->{"qty_$i"} * $sellprice * (100 - $form->{"discount_$i"}) / 100 / $price_factor->{factor}, 2); + my $nodiscount_linetotal = $form->round_amount($form->{"qty_$i"} * $sellprice / $price_factor->{factor}, 2); + $form->{"netprice_$i"} = $form->round_amount($form->{"qty_$i"} ? ($linetotal / $form->{"qty_$i"}) : 0, 2); - # keep a netprice as well, (sellprice - discount) - $form->{"netprice_$i"} = $sellprice - $i_discount; + push @{ $form->{netprice} }, ($form->{"netprice_$i"} != 0) ? $form->format_amount($myconfig, $form->{"netprice_$i"}, $decimalplaces) : ''; - push(@{ $form->{netprice} }, - ($form->{"netprice_$i"} != 0) - ? $form->format_amount( - $myconfig, $form->{"netprice_$i"}, - $decimalplaces - ) - : " "); + $linetotal = ($linetotal != 0) ? $linetotal : ''; - my $linetotal = - $form->round_amount($form->{"qty_$i"} * $form->{"netprice_$i"}, 2); + push @{ $form->{discount} }, ($discount != 0) ? $form->format_amount($myconfig, $discount * -1, $decimalplaces) : ''; + push @{ $form->{p_discount} }, $form->{"discount_$i"}; - my $nodiscount_linetotal = - $form->round_amount($form->{"qty_$i"} * $sellprice, 2); - - $discount = - ($discount != 0) - ? $form->format_amount($myconfig, $discount * -1, $decimalplaces) - : " "; - $linetotal = ($linetotal != 0) ? $linetotal : " "; + $form->{total} += $linetotal; + $form->{nodiscount_total} += $nodiscount_linetotal; + $form->{discount_total} += $discount; - push(@{ $form->{discount} }, $discount); - push(@{ $form->{p_discount} }, $form->{"discount_$i"}); - if (($form->{"discount_$i"} ne "") && ($form->{"discount_$i"} != 0)) { - $form->{discount_p} = $form->{"discount_$i"}; + if ($subtotal_header) { + $discount_subtotal += $linetotal; + $nodiscount_subtotal += $nodiscount_linetotal; } - $form->{total} += $linetotal; - $discount_subtotal += $linetotal; - $form->{nodiscount_total} += $nodiscount_linetotal; - $nodiscount_subtotal += $nodiscount_linetotal; - $form->{discount_total} += $form->parse_amount($myconfig, $discount); if ($form->{"subtotal_$i"} && $subtotal_header && ($subtotal_header != $i)) { - $discount_subtotal = $form->format_amount($myconfig, $discount_subtotal, 2); - push(@{ $form->{discount_sub} }, $discount_subtotal); - $nodiscount_subtotal = $form->format_amount($myconfig, $nodiscount_subtotal, 2); - push(@{ $form->{nodiscount_sub} }, $nodiscount_subtotal); - $discount_subtotal = 0; + push @{ $form->{discount_sub} }, $form->format_amount($myconfig, $discount_subtotal, 2); + push @{ $form->{nodiscount_sub} }, $form->format_amount($myconfig, $nodiscount_subtotal, 2); + + $discount_subtotal = 0; $nodiscount_subtotal = 0; - $subtotal_header = 0; + $subtotal_header = 0; + } else { - push(@{ $form->{discount_sub} }, ""); - push(@{ $form->{nodiscount_sub} }, ""); + push @{ $form->{discount_sub} }, ""; + push @{ $form->{nodiscount_sub} }, ""; } - if ($linetotal == $netto_linetotal) { + if (!$form->{"discount_$i"}) { $nodiscount += $linetotal; } - push(@{ $form->{linetotal} }, - $form->format_amount($myconfig, $linetotal, 2)); - push(@{ $form->{nodiscount_linetotal} }, - $form->format_amount($myconfig, $nodiscount_linetotal, 2)); + push @{ $form->{linetotal} }, $form->format_amount($myconfig, $linetotal, 2); + push @{ $form->{nodiscount_linetotal} }, $form->format_amount($myconfig, $nodiscount_linetotal, 2); push(@{ $form->{projectnumber} }, $projectnumbers{$form->{"project_id_$i"}}); @@ -376,19 +366,18 @@ sub invoice_details { else { $form->{subtotal} = $form->format_amount($myconfig, $form->{total}, 2); } - $yesdiscount = $form->{nodiscount_total} - $nodiscount; + $form->{nodiscount_subtotal} = $form->format_amount($myconfig, $form->{nodiscount_total}, 2); - $form->{discount_total} = $form->format_amount($myconfig, $form->{discount_total}, 2); - $form->{nodiscount} = $form->format_amount($myconfig, $nodiscount, 2); - $form->{yesdiscount} = $form->format_amount($myconfig, $yesdiscount, 2); + $form->{discount_total} = $form->format_amount($myconfig, $form->{discount_total}, 2); + $form->{nodiscount} = $form->format_amount($myconfig, $nodiscount, 2); + $form->{yesdiscount} = $form->format_amount($myconfig, $form->{nodiscount_total} - $nodiscount, 2); - $form->{invtotal} = - ($form->{taxincluded}) ? $form->{total} : $form->{total} + $tax; - $form->{total} = - $form->format_amount($myconfig, $form->{invtotal} - $form->{paid}, 2); + $form->{invtotal} = ($form->{taxincluded}) ? $form->{total} : $form->{total} + $tax; + $form->{total} = $form->format_amount($myconfig, $form->{invtotal} - $form->{paid}, 2); $form->{invtotal} = $form->format_amount($myconfig, $form->{invtotal}, 2); - $form->{paid} = $form->format_amount($myconfig, $form->{paid}, 2); + $form->{paid} = $form->format_amount($myconfig, $form->{paid}, 2); + $form->set_payment_options($myconfig, $form->{invdate}); $form->{username} = $myconfig->{name}; @@ -542,6 +531,10 @@ sub post_invoice { my %baseunits; + $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS'); + my %price_factors = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} }; + my $price_factor; + foreach my $i (1 .. $form->{rowcount}) { if ($form->{type} eq "credit_note") { $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"}) * -1; @@ -553,7 +546,7 @@ sub post_invoice { my $basqty; $form->{"marge_percent_$i"} = $form->parse_amount($myconfig, $form->{"marge_percent_$i"}) * 1; - $form->{"marge_absolut_$i"} = $form->parse_amount($myconfig, $form->{"marge_absolut_$i"}) * 1; + $form->{"marge_total_$i"} = $form->parse_amount($myconfig, $form->{"marge_total_$i"}) * 1; $form->{"lastcost_$i"} = $form->{"lastcost_$i"} * 1; if ($form->{storno}) { @@ -581,13 +574,12 @@ sub post_invoice { } $baseqty = $form->{"qty_$i"} * $basefactor; - # undo discount formatting - $form->{"discount_$i"} = - $form->parse_amount($myconfig, $form->{"discount_$i"}) / 100; - my ($allocated, $taxrate) = (0, 0); my $taxamount; + # add tax rates + map { $taxrate += $form->{"${_}_rate"} } split(/ /, $form->{"taxaccounts_$i"}); + # keep entered selling price my $fxsellprice = $form->parse_amount($myconfig, $form->{"sellprice_$i"}); @@ -596,19 +588,15 @@ sub post_invoice { $dec = length $dec; my $decimalplaces = ($dec > 2) ? $dec : 2; - # deduct discount - my $discount = - $form->round_amount($fxsellprice * $form->{"discount_$i"}, - $decimalplaces); - $form->{"sellprice_$i"} = $fxsellprice - $discount; + # undo discount formatting + $form->{"discount_$i"} = $form->parse_amount($myconfig, $form->{"discount_$i"}) / 100; - # add tax rates - map({ $taxrate += $form->{"${_}_rate"} } split(/ /, - $form->{"taxaccounts_$i"})); + # deduct discount + $form->{"sellprice_$i"} = $fxsellprice * (1 - $form->{"discount_$i"}); # round linetotal to 2 decimal places - $linetotal = - $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"}, 2); + $price_factor = $price_factors{ $form->{"price_factor_id_$i"} } || 1; + $linetotal = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2); if ($form->{taxincluded}) { $taxamount = $linetotal * ($taxrate / (1 + $taxrate)); @@ -628,12 +616,9 @@ sub post_invoice { } # add amount to income, $form->{amount}{trans_id}{accno} - $amount = - $form->{"sellprice_$i"} * $form->{"qty_$i"} * $form->{exchangerate}; + $amount = $form->{"sellprice_$i"} * $form->{"qty_$i"} * $form->{exchangerate} / $price_factor; - $linetotal = - $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"}, 2) * - $form->{exchangerate}; + $linetotal = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2) * $form->{exchangerate}; $linetotal = $form->round_amount($linetotal, 2); # this is the difference from the inventory @@ -693,8 +678,10 @@ sub post_invoice { sellprice, fxsellprice, discount, allocated, assemblyitem, unit, deliverydate, project_id, serialnumber, pricegroup_id, ordnumber, transdate, cusordnumber, base_qty, subtotal, - marge_percent, marge_total, lastcost) - VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|; + marge_percent, marge_total, lastcost, + price_factor_id, price_factor, marge_price_factor) + VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, + (SELECT factor FROM price_factors WHERE id = ?), ?)|; @values = (conv_i($form->{id}), conv_i($form->{"id_$i"}), $form->{"description_$i"}, $form->{"longdescription_$i"}, $form->{"qty_$i"}, @@ -704,8 +691,10 @@ sub post_invoice { $form->{"serialnumber_$i"}, conv_i($pricegroup_id), $form->{"ordnumber_$i"}, conv_date($form->{"transdate_$i"}), $form->{"cusordnumber_$i"}, $baseqty, $form->{"subtotal_$i"} ? 't' : 'f', - $form->{"marge_percent_$i"}, $form->{"marge_absolut_$i"}, - $form->{"lastcost_$i"}); + $form->{"marge_percent_$i"}, $form->{"marge_total_$i"}, + $form->{"lastcost_$i"}, + conv_i($form->{"price_factor_id_$i"}), conv_i($form->{"price_factor_id_$i"}), + conv_i($form->{"marge_price_factor_$i"})); do_query($form, $dbh, $query, @values); if ($form->{lizenzen} && $form->{"licensenumber_$i"}) { @@ -791,7 +780,7 @@ sub post_invoice { foreach my $trans_id (keys %{ $form->{amount} }) { foreach my $accno (keys %{ $form->{amount}{$trans_id} }) { - next unless ($form->{expense_inventory} =~ /$accno/); + next unless ($form->{expense_inventory} =~ /\Q$accno\E/); $form->{amount}{$trans_id}{$accno} = $form->round_amount($form->{amount}{$trans_id}{$accno}, 2); @@ -970,7 +959,7 @@ sub post_invoice { do_query($form, $dbh, $query, @values); if($form->{"formname"} eq "credit_note") { - for my $i (1 .. $form->{paidaccounts}) { + for my $i (1 .. $form->{rowcount}) { $query = qq|UPDATE parts SET onhand = onhand - ? WHERE id = ?|; @values = (conv_i($form->{"qty_$i"}), conv_i($form->{"id_$i"})); do_query($form, $dbh, $query, @values); @@ -990,7 +979,7 @@ sub post_invoice { # add shipto $form->{name} = $form->{customer}; - $form->{name} =~ s/--$form->{customer_id}//; + $form->{name} =~ s/--\Q$form->{customer_id}\E//; if (!$form->{shipto_id}) { $form->add_shipto($dbh, $form->{id}, "AR"); @@ -1418,6 +1407,7 @@ sub retrieve_invoice { i.description, i.longdescription, i.qty, i.fxsellprice AS sellprice, i.discount, i.parts_id AS id, i.unit, i.deliverydate, i.project_id, i.serialnumber, i.id AS invoice_pos, i.pricegroup_id, i.ordnumber, i.transdate, i.cusordnumber, i.subtotal, i.lastcost, + i.price_factor_id, i.price_factor, i.marge_price_factor, p.partnumber, p.assembly, p.bin, p.notes AS partnotes, p.inventory_accno_id AS part_inventory_accno_id, p.formel, pr.projectnumber, pg.partsgroup, prg.pricegroup @@ -1468,7 +1458,7 @@ sub retrieve_invoice { } $ref->{taxaccounts} .= "$ptr->{accno} "; - if (!($form->{taxaccounts} =~ /$ptr->{accno}/)) { + if (!($form->{taxaccounts} =~ /\Q$ptr->{accno}\E/)) { $form->{"$ptr->{accno}_rate"} = $ptr->{rate}; $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription}; $form->{"$ptr->{accno}_taxnumber"} = $ptr->{taxnumber}; @@ -1718,6 +1708,9 @@ sub retrieve_item { p.unit, p.assembly, p.bin, p.onhand, p.notes AS partnotes, p.notes AS longdescription, p.not_discountable, p.formel, p.payment_id AS part_payment_id, + p.price_factor_id, + + pfac.factor AS price_factor, pg.partsgroup @@ -1735,6 +1728,7 @@ sub retrieve_item { FROM buchungsgruppen WHERE id = p.buchungsgruppen_id) = c3.id) LEFT JOIN partsgroup pg ON (pg.id = p.partsgroup_id) + LEFT JOIN price_factors pfac ON (pfac.id = p.price_factor_id) WHERE $where|; my $sth = prepare_execute_query($form, $dbh, $query, @values); @@ -1807,7 +1801,7 @@ sub retrieve_item { } $ref->{taxaccounts} .= "$ptr->{accno} "; - if (!($form->{taxaccounts} =~ /$ptr->{accno}/)) { + if (!($form->{taxaccounts} =~ /\Q$ptr->{accno}\E/)) { $form->{"$ptr->{accno}_rate"} = $ptr->{rate}; $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription}; $form->{"$ptr->{accno}_taxnumber"} = $ptr->{taxnumber};