X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FIS.pm;h=f4bfd1da65fd6bbd3558f50e8044b6a75f3eee87;hb=9475cae8f0ea21e5f69d28ee71f835cd4ac8a64d;hp=eac4440ae513329182f29f1d103c84bfe8d4179d;hpb=435a5be586488ee4700b0a4fed0c91b5a5e1abfb;p=kivitendo-erp.git diff --git a/SL/IS.pm b/SL/IS.pm index eac4440ae..f4bfd1da6 100644 --- a/SL/IS.pm +++ b/SL/IS.pm @@ -34,6 +34,8 @@ package IS; +use Data::Dumper; + sub invoice_details { $main::lxdebug->enter_sub(); @@ -108,6 +110,8 @@ sub invoice_details { push(@{ $form->{deliverydate} }, 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"}|); if ($form->{lizenzen}) { if ($form->{"licensenumber_$i"}) { @@ -212,7 +216,8 @@ sub invoice_details { $taxbase{$item} += $taxbase; } } - + $tax_rate = $taxrate * 100; + push(@{ $form->{tax_rate} }, qq|$tax_rate|); if ($form->{"assembly_$i"}) { $sameitem = ""; @@ -267,7 +272,7 @@ sub invoice_details { $tax += $taxamount = $form->round_amount($taxaccounts{$item}, 2); - push(@{ $form->{tax} }, $form->format_amount($myconfig, $taxamount)); + push(@{ $form->{tax} }, $form->format_amount($myconfig, $taxamount, 2)); push(@{ $form->{taxdescription} }, $form->{"${item}_description"}); push(@{ $form->{taxrate} }, $form->format_amount($myconfig, $form->{"${item}_rate"} * 100)); @@ -549,16 +554,22 @@ sub post_invoice { ? qq|'$form->{"deliverydate_$i"}'| : "NULL"; + # get pricegroup_id and save ist + ($null, my $pricegroup_id) = split /--/, $form->{"sellprice_drag_$i"}; + $pricegroup_id *= 1; + # save detail record in invoice table $query = qq|INSERT INTO invoice (trans_id, parts_id, description, qty, sellprice, fxsellprice, discount, allocated, assemblyitem, - unit, deliverydate, project_id, serialnumber) + unit, deliverydate, project_id, serialnumber, pricegroup_id, + ordnumber, transdate, cusordnumber) VALUES ($form->{id}, $form->{"id_$i"}, '$form->{"description_$i"}', $form->{"qty_$i"}, $form->{"sellprice_$i"}, $fxsellprice, $form->{"discount_$i"}, $allocated, 'f', '$form->{"unit_$i"}', $deliverydate, (SELECT id from project where projectnumber = '$project_id'), - '$form->{"serialnumber_$i"}')|; + '$form->{"serialnumber_$i"}', '$pricegroup_id', + '$form->{"ordnumber_$i"}', '$form->{"transdate_$i"}', '$form->{"cusordnumber_$i"}')|; $dbh->do($query) || $form->dberror($query); if ($form->{lizenzen}) { @@ -1211,7 +1222,8 @@ sub retrieve_invoice { i.discount, i.parts_id AS id, i.unit, i.deliverydate, i.project_id, pr.projectnumber, i.serialnumber, p.partnumber, p.assembly, p.bin, p.notes AS partnotes, i.id AS invoice_pos, - pg.partsgroup + pg.partsgroup, i.pricegroup_id, (SELECT pricegroup FROM pricegroup WHERE id=i.pricegroup_id) as pricegroup, + i.ordnumber, i.transdate, i.cusordnumber FROM invoice i JOIN parts p ON (i.parts_id = p.id) LEFT JOIN project pr ON (i.project_id = pr.id) @@ -1306,7 +1318,7 @@ sub get_customer { c.email, c.cc, c.bcc, c.language, c.street, c.zipcode, c.city, c.country, $duedate + c.terms AS duedate, c.notes AS intnotes, - b.discount AS tradediscount, b.description AS business + b.discount AS tradediscount, b.description AS business, c.klass as customer_klass FROM customer c LEFT JOIN business b ON (b.id = c.business_id) WHERE c.id = $form->{customer_id}|; @@ -1513,7 +1525,6 @@ sub retrieve_item { $stw->finish; } } - } $sth->finish; $dbh->disconnect; @@ -1521,6 +1532,126 @@ sub retrieve_item { $main::lxdebug->leave_sub(); } +########################## +# get pricegroups from database +# build up selected pricegroup +# if an exchange rate - change price +# for each part +# +sub get_pricegroups_for_parts { + + $main::lxdebug->enter_sub(); + + my ($self, $myconfig, $form) = @_; + + my $dbh = $form->dbconnect($myconfig); + + my $i = 1; + my $id = 0; + + while (($form->{"id_$i"}) or ($form->{"new_id_$i"})) { + + $id = $form->{"id_$i"}; + + if (!($form->{"id_$i"}) and $form->{"new_id_$i"}) { + + $id = $form->{"new_id_$i"}; + } + + ($price, $selectedpricegroup_id) = split /--/, + $form->{"sellprice_drag_$i"}; + + $pricegroup_old = $form->{"pricegroup_old_$i"}; + + $price_new = $form->{"price_new_$i"}; + + $price_old = $form->{"price_old_$i"}; + + $query = + qq|SELECT pricegroup_id, (SELECT p.sellprice from parts p where p.id = $id) as default_sellprice,(SELECT pg.pricegroup FROM pricegroup pg WHERE id=pricegroup_id) AS pricegroup, price, '' AS selected FROM prices WHERE parts_id = $id UNION SELECT 0 as pricegroup_id,(SELECT sellprice FROM parts WHERE id=$id) as default_sellprice,'' as pricegroup, (SELECT DISTINCT sellprice from parts where id=$id) as price, 'selected' AS selected from prices ORDER BY pricegroup|; + + $pkq = $dbh->prepare($query); + $pkq->execute || $form->dberror($query); + while ($pkr = $pkq->fetchrow_hashref(NAME_lc)) { + + # push @{ $form->{PRICES}{$id} }, $pkr; + push @{ $form->{PRICES}{$i} }, $pkr; + $pkr->{id} = $id; + $pkr->{selected} = ''; + + # if there is an exchange rate change price + if (($form->{exchangerate} * 1) != 0) { + + $pkr->{price} /= $form->{exchangerate}; + } + $pkr->{price} = $form->format_amount($myconfig, $pkr->{price}, 5); + + if ($selectedpricegroup_id eq undef) { + if ($pkr->{pricegroup_id} eq $form->{customer_klass}) { + + $pkr->{selected} = ' selected'; + $last->{selected} = ''; + + # no customer pricesgroup set + if ($pkr->{price} == $pkr->{default_sellprice}) { + + $pkr->{price} = $form->{"sellprice_$i"}; + + } else { + + $form->{"sellprice_$i"} = $pkr->{price}; + } + + } else { + if ($pkr->{price} == $pkr->{default_sellprice}) { + + $pkr->{price} = $form->{"sellprice_$i"}; + $pkr->{selected} = ' selected'; + } + } + } + if ($selectedpricegroup_id or $selectedpricegroup_id == 0) { + if ($selectedpricegroup_id ne $pricegroup_old) { + if ($pkr->{pricegroup_id} eq $selectedpricegroup_id) { + if ($price_new != $form->{"sellprice_$i"}) { + } else { + $pkr->{selected} = ' selected'; + $last->{selected} = ''; + } + } + } else { + if (($price_new != $form->{"sellprice_$i"}) and ($price_new ne 0)) { + if ($pkr->{pricegroup_id} == 0) { + $pkr->{price} = $form->{"sellprice_$i"}; + $pkr->{selected} = ' selected'; + $last->{selected} = ''; + } + } else { + if ($pkr->{pricegroup_id} eq $selectedpricegroup_id) { + $pkr->{selected} = ' selected'; + $last->{selected} = ''; + if ( ($pkr->{pricegroup_id} == 0) + and ($pkr->{price} == $form->{"sellprice_$i"})) { + + # $pkr->{price} = $form->{"sellprice_$i"}; + } else { + $pkr->{price} = $form->{"sellprice_$i"}; + } + } + } + } + } + } + $i++; + + $pkq->finish; + } + + $dbh->disconnect; + + $main::lxdebug->leave_sub(); +} + sub webdav_folder { $main::lxdebug->enter_sub();