1 #=====================================================================
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (C) 1998-2002
11 # Author: Dieter Simader
12 # Email: dsimader@sql-ledger.org
13 # Web: http://www.sql-ledger.org
17 # This program is free software; you can redistribute it and/or modify
18 # it under the terms of the GNU General Public License as published by
19 # the Free Software Foundation; either version 2 of the License, or
20 # (at your option) any later version.
22 # This program is distributed in the hope that it will be useful,
23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 # GNU General Public License for more details.
26 # You should have received a copy of the GNU General Public License
27 # along with this program; if not, write to the Free Software
28 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 #======================================================================
31 # Inventory invoicing module
33 #======================================================================
43 $main::lxdebug->enter_sub();
45 my ($self, $myconfig, $form, $locale) = @_;
47 $form->{duedate} ||= $form->{invdate};
50 my $dbh = $form->dbconnect($myconfig);
53 my $query = qq|SELECT date | . conv_dateq($form->{duedate}) . qq| - date | . conv_dateq($form->{invdate}) . qq| AS terms|;
54 ($form->{terms}) = selectrow_query($form, $dbh, $query);
56 my (@project_ids, %projectnumbers);
58 push(@project_ids, $form->{"globalproject_id"}) if ($form->{"globalproject_id"});
60 # sort items by partsgroup
61 for $i (1 .. $form->{rowcount}) {
63 if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
64 $partsgroup = $form->{"partsgroup_$i"};
66 push @partsgroup, [$i, $partsgroup];
67 push(@project_ids, $form->{"project_id_$i"}) if ($form->{"project_id_$i"});
71 $query = "SELECT id, projectnumber FROM project WHERE id IN (" .
72 join(", ", map({ "?" } @project_ids)) . ")";
73 $sth = $dbh->prepare($query);
74 $sth->execute(@project_ids) ||
75 $form->dberror($query . " (" . join(", ", @project_ids) . ")");
76 while (my $ref = $sth->fetchrow_hashref()) {
77 $projectnumbers{$ref->{id}} = $ref->{projectnumber};
82 $form->{"globalprojectnumber"} =
83 $projectnumbers{$form->{"globalproject_id"}};
90 my %oid = ('Pg' => 'oid',
93 # sort items by partsgroup
94 for $i (1 .. $form->{rowcount}) {
96 if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
97 $partsgroup = $form->{"partsgroup_$i"};
99 push @partsgroup, [$i, $partsgroup];
112 my $nodiscount_subtotal = 0;
113 my $discount_subtotal = 0;
115 my $subtotal_header = 0;
119 qw(runningnumber number description longdescription qty ship unit bin
120 deliverydate_oe ordnumber_oe transdate_oe licensenumber validuntil
121 partnotes serialnumber reqdate sellprice listprice netprice
122 discount p_discount discount_sub nodiscount_sub
123 linetotal nodiscount_linetotal tax_rate projectnumber);
126 qw(taxbase tax taxdescription taxrate taxnumber);
128 foreach $item (sort { $a->[1] cmp $b->[1] } @partsgroup) {
131 if ($item->[1] ne $sameitem) {
132 push(@{ $form->{description} }, qq|$item->[1]|);
133 $sameitem = $item->[1];
135 map({ push(@{ $form->{$_} }, "") } grep({ $_ ne "description" } @arrays));
138 $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
140 if ($form->{"id_$i"} != 0) {
142 # add number, description and qty to $form->{number},
143 if ($form->{"subtotal_$i"} && !$subtotal_header) {
144 $subtotal_header = $i;
145 $position = int($position);
148 } elsif ($subtotal_header) {
150 $position = int($position);
151 $position = $position.".".$subposition;
153 $position = int($position);
156 push(@{ $form->{runningnumber} }, $position);
157 push(@{ $form->{number} }, qq|$form->{"partnumber_$i"}|);
158 push(@{ $form->{serialnumber} }, qq|$form->{"serialnumber_$i"}|);
159 push(@{ $form->{bin} }, qq|$form->{"bin_$i"}|);
160 push(@{ $form->{"partnotes"} }, qq|$form->{"partnotes_$i"}|);
161 push(@{ $form->{description} }, qq|$form->{"description_$i"}|);
162 push(@{ $form->{longdescription} }, qq|$form->{"longdescription_$i"}|);
163 push(@{ $form->{qty} },
164 $form->format_amount($myconfig, $form->{"qty_$i"}));
165 push(@{ $form->{unit} }, qq|$form->{"unit_$i"}|);
166 push(@{ $form->{deliverydate_oe} }, qq|$form->{"deliverydate_$i"}|);
168 push(@{ $form->{sellprice} }, $form->{"sellprice_$i"});
169 push(@{ $form->{ordnumber_oe} }, qq|$form->{"ordnumber_$i"}|);
170 push(@{ $form->{transdate_oe} }, qq|$form->{"transdate_$i"}|);
171 push(@{ $form->{invnumber} }, qq|$form->{"invnumber"}|);
172 push(@{ $form->{invdate} }, qq|$form->{"invdate"}|);
174 if ($form->{lizenzen}) {
175 if ($form->{"licensenumber_$i"}) {
176 $query = qq|SELECT licensenumber, validuntil FROM license WHERE id = ?|;
177 ($licensenumber, $validuntil) = selectrow_query($form, $dbh, $query, conv_i($form->{"licensenumber_$i"}));
178 push(@{ $form->{licensenumber} }, $licensenumber);
179 push(@{ $form->{validuntil} }, $locale->date($myconfig, $validuntil, 0));
182 push(@{ $form->{licensenumber} }, "");
183 push(@{ $form->{validuntil} }, "");
188 push(@{ $form->{listprice} }, $form->{"listprice_$i"});
190 my $sellprice = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
191 my ($dec) = ($sellprice =~ /\.(\d+)/);
193 my $decimalplaces = ($dec > 2) ? $dec : 2;
197 $sellprice * $form->parse_amount($myconfig,
198 $form->{"discount_$i"}) / 100,
202 $form->round_amount($form->{"qty_$i"} * $i_discount, $decimalplaces);
204 # keep a netprice as well, (sellprice - discount)
205 $form->{"netprice_$i"} = $sellprice - $i_discount;
207 push(@{ $form->{netprice} },
208 ($form->{"netprice_$i"} != 0)
209 ? $form->format_amount(
210 $myconfig, $form->{"netprice_$i"},
216 $form->round_amount($form->{"qty_$i"} * $form->{"netprice_$i"}, 2);
218 my $nodiscount_linetotal =
219 $form->round_amount($form->{"qty_$i"} * $sellprice, 2);
223 ? $form->format_amount($myconfig, $discount * -1, $decimalplaces)
225 $linetotal = ($linetotal != 0) ? $linetotal : " ";
227 push(@{ $form->{discount} }, $discount);
228 push(@{ $form->{p_discount} }, $form->{"discount_$i"});
229 if (($form->{"discount_$i"} ne "") && ($form->{"discount_$i"} != 0)) {
230 $form->{discount_p} = $form->{"discount_$i"};
232 $form->{total} += $linetotal;
233 $discount_subtotal += $linetotal;
234 $form->{nodiscount_total} += $nodiscount_linetotal;
235 $nodiscount_subtotal += $nodiscount_linetotal;
236 $form->{discount_total} += $form->parse_amount($myconfig, $discount);
238 if ($form->{"subtotal_$i"} && $subtotal_header && ($subtotal_header != $i)) {
239 $discount_subtotal = $form->format_amount($myconfig, $discount_subtotal, 2);
240 push(@{ $form->{discount_sub} }, $discount_subtotal);
241 $nodiscount_subtotal = $form->format_amount($myconfig, $nodiscount_subtotal, 2);
242 push(@{ $form->{nodiscount_sub} }, $nodiscount_subtotal);
243 $discount_subtotal = 0;
244 $nodiscount_subtotal = 0;
245 $subtotal_header = 0;
247 push(@{ $form->{discount_sub} }, "");
248 push(@{ $form->{nodiscount_sub} }, "");
251 if ($linetotal == $netto_linetotal) {
252 $nodiscount += $linetotal;
255 push(@{ $form->{linetotal} },
256 $form->format_amount($myconfig, $linetotal, 2));
257 push(@{ $form->{nodiscount_linetotal} },
258 $form->format_amount($myconfig, $nodiscount_linetotal, 2));
260 push(@{ $form->{projectnumber} }, $projectnumbers{$form->{"project_id_$i"}});
262 @taxaccounts = split(/ /, $form->{"taxaccounts_$i"});
266 map { $taxrate += $form->{"${_}_rate"} } @taxaccounts;
268 if ($form->{taxincluded}) {
271 $taxamount = $linetotal * $taxrate / (1 + $taxrate);
272 $taxbase = $linetotal - $taxamount;
274 $taxamount = $linetotal * $taxrate;
275 $taxbase = $linetotal;
278 if ($form->round_amount($taxrate, 7) == 0) {
279 if ($form->{taxincluded}) {
280 foreach $item (@taxaccounts) {
282 $form->round_amount($linetotal * $form->{"${item}_rate"} /
283 (1 + abs($form->{"${item}_rate"})),
286 $taxaccounts{$item} += $taxamount;
287 $taxdiff += $taxamount;
289 $taxbase{$item} += $taxbase;
291 $taxaccounts{ $taxaccounts[0] } += $taxdiff;
293 foreach $item (@taxaccounts) {
294 $taxaccounts{$item} += $linetotal * $form->{"${item}_rate"};
295 $taxbase{$item} += $taxbase;
299 foreach $item (@taxaccounts) {
300 $taxaccounts{$item} +=
301 $taxamount * $form->{"${item}_rate"} / $taxrate;
302 $taxbase{$item} += $taxbase;
305 $tax_rate = $taxrate * 100;
306 push(@{ $form->{tax_rate} }, qq|$tax_rate|);
307 if ($form->{"assembly_$i"}) {
310 # get parts and push them onto the stack
312 if ($form->{groupitems}) {
314 qq|ORDER BY pg.partsgroup, a.$oid{$myconfig->{dbdriver}}|;
316 $sortorder = qq|ORDER BY a.$oid{$myconfig->{dbdriver}}|;
320 qq|SELECT p.partnumber, p.description, p.unit, a.qty, pg.partsgroup
322 JOIN parts p ON (a.parts_id = p.id)
323 LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
324 WHERE (a.bom = '1') AND (a.id = ?) $sortorder|;
325 $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{"id_$i"}));
327 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
328 if ($form->{groupitems} && $ref->{partsgroup} ne $sameitem) {
329 map({ push(@{ $form->{$_} }, "") } grep({ $_ ne "description" } @arrays));
330 $sameitem = ($ref->{partsgroup}) ? $ref->{partsgroup} : "--";
331 push(@{ $form->{description} }, $sameitem);
334 map { $form->{"a_$_"} = $ref->{$_} } qw(partnumber description);
336 push(@{ $form->{description} },
337 $form->format_amount($myconfig, $ref->{qty} * $form->{"qty_$i"}
339 . qq| -- $form->{"a_partnumber"}, $form->{"a_description"}|);
340 map({ push(@{ $form->{$_} }, "") } grep({ $_ ne "description" } @arrays));
348 foreach my $item (sort keys %taxaccounts) {
349 push(@{ $form->{taxbase} },
350 $form->format_amount($myconfig, $taxbase{$item}, 2));
352 $tax += $taxamount = $form->round_amount($taxaccounts{$item}, 2);
354 push(@{ $form->{tax} }, $form->format_amount($myconfig, $taxamount, 2));
355 push(@{ $form->{taxdescription} }, $form->{"${item}_description"} . q{ } . 100 * $form->{"${item}_rate"} . q{%});
356 push(@{ $form->{taxrate} },
357 $form->format_amount($myconfig, $form->{"${item}_rate"} * 100));
358 push(@{ $form->{taxnumber} }, $form->{"${item}_taxnumber"});
361 for my $i (1 .. $form->{paidaccounts}) {
362 if ($form->{"paid_$i"}) {
363 push(@{ $form->{payment} }, $form->{"paid_$i"});
364 my ($accno, $description) = split(/--/, $form->{"AR_paid_$i"});
365 push(@{ $form->{paymentaccount} }, $description);
366 push(@{ $form->{paymentdate} }, $form->{"datepaid_$i"});
367 push(@{ $form->{paymentsource} }, $form->{"source_$i"});
369 $form->{paid} += $form->parse_amount($myconfig, $form->{"paid_$i"});
372 if($form->{taxincluded}) {
373 $form->{subtotal} = $form->format_amount($myconfig, $form->{total} - $tax, 2);
376 $form->{subtotal} = $form->format_amount($myconfig, $form->{total}, 2);
378 $yesdiscount = $form->{nodiscount_total} - $nodiscount;
379 $form->{nodiscount_subtotal} = $form->format_amount($myconfig, $form->{nodiscount_total}, 2);
380 $form->{discount_total} = $form->format_amount($myconfig, $form->{discount_total}, 2);
381 $form->{nodiscount} = $form->format_amount($myconfig, $nodiscount, 2);
382 $form->{yesdiscount} = $form->format_amount($myconfig, $yesdiscount, 2);
385 ($form->{taxincluded}) ? $form->{total} : $form->{total} + $tax;
387 $form->format_amount($myconfig, $form->{invtotal} - $form->{paid}, 2);
389 $form->{invtotal} = $form->format_amount($myconfig, $form->{invtotal}, 2);
390 $form->{paid} = $form->format_amount($myconfig, $form->{paid}, 2);
391 $form->set_payment_options($myconfig, $form->{invdate});
393 $form->{username} = $myconfig->{name};
397 $main::lxdebug->leave_sub();
400 sub project_description {
401 $main::lxdebug->enter_sub();
403 my ($self, $dbh, $id) = @_;
405 my $query = qq|SELECT description FROM project WHERE id = ?|;
406 my ($description) = selectrow_query($form, $dbh, $query, conv_i($id));
408 $main::lxdebug->leave_sub();
413 sub customer_details {
414 $main::lxdebug->enter_sub();
416 my ($self, $myconfig, $form, @wanted_vars) = @_;
418 # connect to database
419 my $dbh = $form->dbconnect($myconfig);
421 # get contact id, set it if nessessary
427 if ($form->{cp_id}) {
428 $where = qq| AND (cp.cp_id = ?) |;
429 push(@values, conv_i($form->{cp_id}));
432 # get rest for the customer
434 qq|SELECT ct.*, cp.*, ct.notes as customernotes,
435 ct.phone AS customerphone, ct.fax AS customerfax, ct.email AS customeremail
437 LEFT JOIN contacts cp on ct.id = cp.cp_cv_id
438 WHERE (ct.id = ?) $where
441 push(@values, conv_i($form->{customer_id}));
442 my $ref = selectfirst_hashref_query($form, $dbh, $query, @values);
444 # remove id and taxincluded before copy back
445 delete @$ref{qw(id taxincluded)};
447 @wanted_vars = grep({ $_ } @wanted_vars);
448 if (scalar(@wanted_vars) > 0) {
450 map({ $h_wanted_vars{$_} = 1; } @wanted_vars);
451 map({ delete($ref->{$_}) unless ($h_wanted_vars{$_}); } keys(%{$ref}));
454 map { $form->{$_} = $ref->{$_} } keys %$ref;
456 if ($form->{delivery_customer_id}) {
458 qq|SELECT *, notes as customernotes
462 $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{delivery_customer_id}));
464 map { $form->{"dc_$_"} = $ref->{$_} } keys %$ref;
467 if ($form->{delivery_vendor_id}) {
469 qq|SELECT *, notes as customernotes
473 $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{delivery_vendor_id}));
475 map { $form->{"dv_$_"} = $ref->{$_} } keys %$ref;
479 $main::lxdebug->leave_sub();
483 $main::lxdebug->enter_sub();
485 my ($self, $myconfig, $form) = @_;
487 # connect to database, turn off autocommit
488 my $dbh = $form->dbconnect_noauto($myconfig);
490 my ($query, $sth, $null, $project_id, $deliverydate, @values);
491 my $exchangerate = 0;
493 ($null, $form->{employee_id}) = split(/--/, $form->{employee});
494 unless ($form->{employee_id}) {
495 $form->get_employee($dbh);
498 ($null, $form->{department_id}) = split(/--/, $form->{department});
500 my $all_units = AM->retrieve_units($myconfig, $form);
504 &reverse_invoice($dbh, $form);
507 $query = qq|SELECT nextval('glid')|;
508 ($form->{"id"}) = selectrow_query($form, $dbh, $query);
510 $query = qq|INSERT INTO ar (id, invnumber) VALUES (?, ?)|;
511 do_query($form, $dbh, $query, $form->{"id"}, $form->{"id"});
513 if (!$form->{invnumber}) {
515 $form->update_defaults($myconfig, $form->{type} eq "credit_note" ?
516 "cnnumber" : "invnumber", $dbh);
520 my ($netamount, $invoicediff) = (0, 0);
521 my ($amount, $linetotal, $lastincomeaccno);
523 if ($form->{currency} eq $form->{defaultcurrency}) {
524 $form->{exchangerate} = 1;
527 $form->check_exchangerate($myconfig, $form->{currency},
528 $form->{transdate}, 'buy');
531 $form->{exchangerate} =
534 : $form->parse_amount($myconfig, $form->{exchangerate});
536 $form->{expense_inventory} = "";
540 foreach my $i (1 .. $form->{rowcount}) {
541 if ($form->{type} eq "credit_note") {
542 $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"}) * -1;
543 $form->{shipped} = 1;
545 $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
550 if ($form->{storno}) {
551 $form->{"qty_$i"} *= -1;
554 if ($form->{"id_$i"}) {
557 if (defined($baseunits{$form->{"id_$i"}})) {
558 $item_unit = $baseunits{$form->{"id_$i"}};
561 $query = qq|SELECT unit FROM parts WHERE id = ?|;
562 ($item_unit) = selectrow_query($form, $dbh, $query, conv_i($form->{"id_$i"}));
563 $baseunits{$form->{"id_$i"}} = $item_unit;
566 if (defined($all_units->{$item_unit}->{factor})
567 && ($all_units->{$item_unit}->{factor} ne '')
568 && ($all_units->{$item_unit}->{factor} != 0)) {
569 $basefactor = $all_units->{$form->{"unit_$i"}}->{factor} / $all_units->{$item_unit}->{factor};
573 $baseqty = $form->{"qty_$i"} * $basefactor;
575 # undo discount formatting
576 $form->{"discount_$i"} =
577 $form->parse_amount($myconfig, $form->{"discount_$i"}) / 100;
579 my ($allocated, $taxrate) = (0, 0);
582 # keep entered selling price
584 $form->parse_amount($myconfig, $form->{"sellprice_$i"});
586 my ($dec) = ($fxsellprice =~ /\.(\d+)/);
588 my $decimalplaces = ($dec > 2) ? $dec : 2;
592 $form->round_amount($fxsellprice * $form->{"discount_$i"},
594 $form->{"sellprice_$i"} = $fxsellprice - $discount;
597 map({ $taxrate += $form->{"${_}_rate"} } split(/ /,
598 $form->{"taxaccounts_$i"}));
600 # round linetotal to 2 decimal places
602 $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"}, 2);
604 if ($form->{taxincluded}) {
605 $taxamount = $linetotal * ($taxrate / (1 + $taxrate));
606 $form->{"sellprice_$i"} =
607 $form->{"sellprice_$i"} * (1 / (1 + $taxrate));
609 $taxamount = $linetotal * $taxrate;
612 $netamount += $linetotal;
614 if ($taxamount != 0) {
616 $form->{amount}{ $form->{id} }{$_} +=
617 $taxamount * $form->{"${_}_rate"} / $taxrate
618 } split(/ /, $form->{"taxaccounts_$i"});
621 # add amount to income, $form->{amount}{trans_id}{accno}
623 $form->{"sellprice_$i"} * $form->{"qty_$i"} * $form->{exchangerate};
626 $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"}, 2) *
627 $form->{exchangerate};
628 $linetotal = $form->round_amount($linetotal, 2);
630 # this is the difference from the inventory
631 $invoicediff += ($amount - $linetotal);
633 $form->{amount}{ $form->{id} }{ $form->{"income_accno_$i"} } +=
636 $lastincomeaccno = $form->{"income_accno_$i"};
638 # adjust and round sellprice
639 $form->{"sellprice_$i"} =
640 $form->round_amount($form->{"sellprice_$i"} * $form->{exchangerate},
643 if ($form->{"inventory_accno_$i"} || $form->{"assembly_$i"}) {
645 # adjust parts onhand quantity
647 if ($form->{"assembly_$i"}) {
649 # do not update if assembly consists of all services
651 qq|SELECT sum(p.inventory_accno_id)
653 JOIN assembly a ON (a.parts_id = p.id)
655 $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{"id_$i"}));
657 if ($sth->fetchrow_array) {
658 $form->update_balance($dbh, "parts", "onhand", qq|id = ?|,
659 $baseqty * -1, $form->{"id_$i"})
660 unless $form->{shipped};
664 # record assembly item as allocated
665 &process_assembly($dbh, $form, $form->{"id_$i"}, $baseqty);
667 $form->update_balance($dbh, "parts", "onhand", qq|id = ?|,
668 $baseqty * -1, $form->{"id_$i"})
669 unless $form->{shipped};
671 $allocated = &cogs($dbh, $form, $form->{"id_$i"}, $baseqty, $basefactor, $i);
675 # get pricegroup_id and save it
676 ($null, my $pricegroup_id) = split(/--/, $form->{"sellprice_pg_$i"});
678 my $subtotal = $form->{"subtotal_$i"} * 1;
680 # save detail record in invoice table
682 qq|INSERT INTO invoice (trans_id, parts_id, description, longdescription, qty,
683 sellprice, fxsellprice, discount, allocated, assemblyitem,
684 unit, deliverydate, project_id, serialnumber, pricegroup_id,
685 ordnumber, transdate, cusordnumber, base_qty, subtotal)
686 VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
688 @values = (conv_i($form->{id}), conv_i($form->{"id_$i"}),
689 $form->{"description_$i"}, $form->{"longdescription_$i"}, $form->{"qty_$i"},
690 $form->{"sellprice_$i"}, $fxsellprice,
691 $form->{"discount_$i"}, $allocated, 'f',
692 $form->{"unit_$i"}, conv_date($form->{"deliverydate_$i"}), conv_i($form->{"project_id_$i"}),
693 $form->{"serialnumber_$i"}, conv_i($pricegroup_id),
694 $form->{"ordnumber_$i"}, conv_date($form->{"transdate_$i"}),
695 $form->{"cusordnumber_$i"}, $baseqty, $subtotal);
696 do_query($form, $dbh, $query, @values);
698 if ($form->{lizenzen} && $form->{"licensenumber_$i"}) {
700 qq|INSERT INTO licenseinvoice (trans_id, license_id)
701 VALUES ((SELECT id FROM invoice WHERE trans_id = ? ORDER BY oid DESC LIMIT 1), ?)|;
702 @values = (conv_i($form->{"id"}), conv_i($form->{"licensenumber_$i"}));
703 do_query($form, $dbh, $query, @values);
708 $form->{datepaid} = $form->{invdate};
710 # total payments, don't move we need it here
711 for my $i (1 .. $form->{paidaccounts}) {
712 if ($form->{type} eq "credit_note") {
713 $form->{"paid_$i"} = $form->parse_amount($myconfig, $form->{"paid_$i"}) * -1;
715 $form->{"paid_$i"} = $form->parse_amount($myconfig, $form->{"paid_$i"});
717 $form->{paid} += $form->{"paid_$i"};
718 $form->{datepaid} = $form->{"datepaid_$i"} if ($form->{"datepaid_$i"});
721 my ($tax, $diff) = (0, 0);
723 $netamount = $form->round_amount($netamount, 2);
725 # figure out rounding errors for total amount vs netamount + taxes
726 if ($form->{taxincluded}) {
728 $amount = $form->round_amount($netamount * $form->{exchangerate}, 2);
729 $diff += $amount - $netamount * $form->{exchangerate};
730 $netamount = $amount;
732 foreach my $item (split(/ /, $form->{taxaccounts})) {
733 $amount = $form->{amount}{ $form->{id} }{$item} * $form->{exchangerate};
734 $form->{amount}{ $form->{id} }{$item} = $form->round_amount($amount, 2);
735 $tax += $form->{amount}{ $form->{id} }{$item};
736 $netamount -= $form->{amount}{ $form->{id} }{$item};
739 $invoicediff += $diff;
740 ######## this only applies to tax included
741 if ($lastincomeaccno) {
742 $form->{amount}{ $form->{id} }{$lastincomeaccno} += $invoicediff;
746 $amount = $form->round_amount($netamount * $form->{exchangerate}, 2);
747 $diff = $amount - $netamount * $form->{exchangerate};
748 $netamount = $amount;
749 foreach my $item (split(/ /, $form->{taxaccounts})) {
750 $form->{amount}{ $form->{id} }{$item} =
751 $form->round_amount($form->{amount}{ $form->{id} }{$item}, 2);
754 $form->{amount}{ $form->{id} }{$item} * $form->{exchangerate},
757 $amount - $form->{amount}{ $form->{id} }{$item} *
758 $form->{exchangerate};
759 $form->{amount}{ $form->{id} }{$item} = $form->round_amount($amount, 2);
760 $tax += $form->{amount}{ $form->{id} }{$item};
764 $form->{amount}{ $form->{id} }{ $form->{AR} } = $netamount + $tax;
766 $form->round_amount($form->{paid} * $form->{exchangerate} + $diff, 2);
769 $form->{amount}{ $form->{id} }{ $form->{AR} } *= -1;
771 # update exchangerate
772 if (($form->{currency} ne $form->{defaultcurrency}) && !$exchangerate) {
773 $form->update_exchangerate($dbh, $form->{currency}, $form->{invdate},
774 $form->{exchangerate}, 0);
777 $project_id = conv_i($form->{"globalproject_id"});
779 foreach my $trans_id (keys %{ $form->{amount} }) {
780 foreach my $accno (keys %{ $form->{amount}{$trans_id} }) {
781 next unless ($form->{expense_inventory} =~ /$accno/);
783 ($form->{amount}{$trans_id}{$accno} =
784 $form->round_amount($form->{amount}{$trans_id}{$accno}, 2)
788 qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, taxkey, project_id)
789 VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
790 (SELECT taxkey_id FROM chart WHERE accno = ?), ?)|;
791 @values = (conv_i($trans_id), $accno, $form->{amount}{$trans_id}{$accno}, conv_date($form->{invdate}), $accno, conv_i($project_id));
792 do_query($form, $dbh, $query, @values);
793 $form->{amount}{$trans_id}{$accno} = 0;
797 foreach my $accno (keys %{ $form->{amount}{$trans_id} }) {
799 ($form->{amount}{$trans_id}{$accno} =
800 $form->round_amount($form->{amount}{$trans_id}{$accno}, 2)
804 qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, taxkey, project_id)
805 VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
806 (SELECT taxkey_id FROM chart WHERE accno = ?), ?)|;
807 @values = (conv_i($trans_id), $accno, $form->{amount}{$trans_id}{$accno}, conv_date($form->{invdate}), $accno, conv_i($project_id));
808 do_query($form, $dbh, $query, @values);
813 # deduct payment differences from diff
814 for my $i (1 .. $form->{paidaccounts}) {
815 if ($form->{"paid_$i"} != 0) {
817 $form->round_amount($form->{"paid_$i"} * $form->{exchangerate}, 2);
818 $diff -= $amount - $form->{"paid_$i"} * $form->{exchangerate};
822 # record payments and offsetting AR
823 if (!$form->{storno}) {
824 for my $i (1 .. $form->{paidaccounts}) {
826 next if ($form->{"paid_$i"} == 0);
828 my ($accno) = split(/--/, $form->{"AR_paid_$i"});
829 $form->{"datepaid_$i"} = $form->{invdate}
830 unless ($form->{"datepaid_$i"});
831 $form->{datepaid} = $form->{"datepaid_$i"};
835 if ($form->{currency} eq $form->{defaultcurrency}) {
836 $form->{"exchangerate_$i"} = 1;
839 $form->check_exchangerate($myconfig, $form->{currency},
840 $form->{"datepaid_$i"}, 'buy');
842 $form->{"exchangerate_$i"} =
843 $exchangerate ? $exchangerate
844 : $form->parse_amount($myconfig, $form->{"exchangerate_$i"});
848 $amount = $form->round_amount($form->{"paid_$i"} * $form->{exchangerate} + $diff, 2);
850 if ($form->{amount}{ $form->{id} }{ $form->{AR} } != 0) {
852 qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, taxkey, project_id)
853 VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
854 (SELECT taxkey_id FROM chart WHERE accno = ?), ?)|;
855 @values = (conv_i($form->{"id"}), $form->{AR}, $amount, $form->{"datepaid_$i"}, $form->{AR}, $project_id);
856 do_query($form, $dbh, $query, @values);
860 $form->{"paid_$i"} *= -1;
863 qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, source, memo, taxkey, project_id)
864 VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?, ?,
865 (SELECT taxkey_id FROM chart WHERE accno = ?), ?)|;
866 @values = (conv_i($form->{"id"}), $accno, $form->{"paid_$i"}, $form->{"datepaid_$i"},
867 $form->{"source_$i"}, $form->{"memo_$i"}, $accno, $project_id);
868 do_query($form, $dbh, $query, @values);
870 # exchangerate difference
871 $form->{fx}{$accno}{ $form->{"datepaid_$i"} } +=
872 $form->{"paid_$i"} * ($form->{"exchangerate_$i"} - 1) + $diff;
876 $form->{"paid_$i"} * $form->{exchangerate} - $form->{"paid_$i"} *
877 $form->{"exchangerate_$i"};
879 $form->{fx}{ $form->{fxgain_accno} }{ $form->{"datepaid_$i"} } +=
882 $form->{fx}{ $form->{fxloss_accno} }{ $form->{"datepaid_$i"} } +=
888 # update exchange rate
889 if (($form->{currency} ne $form->{defaultcurrency}) && !$exchangerate) {
890 $form->update_exchangerate($dbh, $form->{currency},
891 $form->{"datepaid_$i"},
892 $form->{"exchangerate_$i"}, 0);
897 # record exchange rate differences and gains/losses
898 foreach my $accno (keys %{ $form->{fx} }) {
899 foreach my $transdate (keys %{ $form->{fx}{$accno} }) {
901 ($form->{fx}{$accno}{$transdate} =
902 $form->round_amount($form->{fx}{$accno}{$transdate}, 2)
907 qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, cleared, fx_transaction, taxkey, project_id)
908 VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, '0', '1',
909 (SELECT taxkey_id FROM chart WHERE accno = ?), ?)|;
910 @values = (conv_i($form->{"id"}), $accno, $form->{fx}{$accno}{$transdate}, conv_date($transdate), $accno, $project_id);
911 do_query($form, $dbh, $query, @values);
916 $amount = $netamount + $tax;
918 # set values which could be empty to 0
919 my $datepaid = conv_date($form->{paid});
920 my $duedate = conv_date($form->{duedate});
921 $deliverydate = conv_date($form->{deliverydate});
923 # fill in subject if there is none
924 $form->{subject} = qq|$form->{label} $form->{invnumber}|
925 unless $form->{subject};
927 # if there is a message stuff it into the intnotes
928 my $cc = "Cc: $form->{cc}\\r\n" if $form->{cc};
929 my $bcc = "Bcc: $form->{bcc}\\r\n" if $form->{bcc};
930 my $now = scalar localtime;
931 $form->{intnotes} .= qq|\r
932 \r| if $form->{intnotes};
934 $form->{intnotes} .= qq|[email]\r
937 $cc${bcc}Subject: $form->{subject}\r
939 Message: $form->{message}\r| if $form->{message};
942 $query = qq|UPDATE ar set
971 delivery_customer_id = ?,
972 delivery_vendor_id = ?,
976 globalproject_id = ?,
978 transaction_description = ?
980 @values = ($form->{"invnumber"}, $form->{"ordnumber"}, $form->{"quonumber"}, $form->{"cusordnumber"},
981 conv_date($form->{"invdate"}), conv_date($form->{"orddate"}), conv_date($form->{"quodate"}),
982 conv_i($form->{"customer_id"}), $amount, $netamount, $form->{"paid"},
983 conv_date($form->{"datepaid"}), conv_date($form->{"duedate"}), conv_date($form->{"deliverydate"}),
984 $form->{"shippingpoint"}, $form->{"shipvia"}, conv_i($form->{"terms"}),
985 $form->{"notes"}, $form->{"intnotes"}, $form->{"taxincluded"} ? 't' : 'f',
986 $form->{"currency"}, conv_i($form->{"department_id"}), conv_i($form->{"payment_id"}),
987 $form->{"type"}, conv_i($form->{"language_id"}), conv_i($form->{"taxzone_id"}),
988 conv_i($form->{"shipto_id"}),
989 conv_i($form->{"delivery_customer_id"}), conv_i($form->{"delivery_vendor_id"}),
990 conv_i($form->{"employee_id"}), conv_i($form->{"salesman_id"}),
991 $form->{"storno"} ? 't' : 'f', conv_i($form->{"globalproject_id"}),
992 conv_i($form->{"cp_id"}), $form->{transaction_description},
993 conv_i($form->{"id"}));
994 do_query($form, $dbh, $query, @values);
996 if ($form->{storno}) {
999 paid = paid + amount,
1001 intnotes = ? || intnotes
1003 do_query($form, $dbh, $query, "Rechnung storniert am $form->{invdate} ", conv_i($form->{"storno_id"}));
1004 do_query($form, $dbh, qq|UPDATE ar SET paid = amount WHERE id = ?|, conv_i($form->{"id"}));
1008 $form->{name} = $form->{customer};
1009 $form->{name} =~ s/--$form->{customer_id}//;
1011 if (!$form->{shipto_id}) {
1012 $form->add_shipto($dbh, $form->{id}, "AR");
1015 # save printed, emailed and queued
1016 $form->save_status($dbh);
1018 Common::webdav_folder($form) if ($main::webdav);
1020 my $rc = $dbh->commit;
1023 $main::lxdebug->leave_sub();
1029 $main::lxdebug->enter_sub() and my ($self, $myconfig, $form, $locale) = @_;
1031 # connect to database, turn off autocommit
1032 my $dbh = $form->dbconnect_noauto($myconfig);
1034 $form->{datepaid} = $form->{invdate};
1036 # total payments, don't move we need it here
1037 for my $i ( 1 .. $form->{paidaccounts} ) {
1038 $form->{"paid_$i"} = $form->parse_amount($myconfig, $form->{"paid_$i"});
1039 $form->{"paid_$i"} *= -1 if $form->{type} eq "credit_note";
1040 $form->{"paid"} += $form->{"paid_$i"};
1041 $form->{"datepaid"} = $form->{"datepaid_$i"} if $form->{"datepaid_$i"};
1044 $form->{exchangerate} = $form->get_exchangerate($dbh, $form->{currency}, $form->{invdate}, "buy");
1046 # record payments and offsetting AR
1047 for my $i (1 .. $form->{paidaccounts}) {
1048 if ($form->{"paid_$i"}) {
1050 my ($accno) = split /--/, $form->{"AR_paid_$i"};
1051 $form->{"datepaid_$i"} = $form->{invdate} unless ($form->{"datepaid_$i"});
1052 $form->{datepaid} = $form->{"datepaid_$i"};
1055 if (($form->{currency} eq $form->{defaultcurrency}) || ($form->{defaultcurrency} eq "")) {
1056 $form->{"exchangerate_$i"} = 1;
1058 $exchangerate = $form->check_exchangerate($myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy');
1059 $form->{"exchangerate_$i"} = ($exchangerate) ? $exchangerate : $form->parse_amount($myconfig, $form->{"exchangerate_$i"});
1063 $amount = $form->round_amount($form->{"paid_$i"} * $form->{"exchangerate"}, 2);
1066 qq|DELETE FROM acc_trans
1067 WHERE (trans_id = ?)
1068 AND (chart_id = (SELECT id FROM chart WHERE accno = ?))
1069 AND (amount = ?) AND (transdate = ?)|;
1070 do_query($form, $dbh, $query, $form->{id}, $form->{AR}, $amount, conv_date($form->{"datepaid_$i"}));
1072 qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, project_id, taxkey)
1073 VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?,
1074 (SELECT taxkey_id FROM chart WHERE accno = ?))|;
1075 do_query($form, $dbh, $query, $form->{id}, $form->{AR}, $amount, $form->{"datepaid_$i"}, conv_i($form->{"globalproject_id"}), $accno);
1078 $form->{"paid_$i"} *= -1;
1081 qq|DELETE FROM acc_trans
1082 WHERE (trans_id = ?)
1083 AND (chart_id = (SELECT id FROM chart WHERE accno = ?))
1084 AND (amount = ?) AND (transdate = ?) AND (source = ?) AND (memo = ?)|;
1085 do_query($form, $dbh, $query, $form->{id}, $accno, $form->{"paid_$i"}, $form->{"datepaid_$i"}, $form->{"source_$i"}, $form->{"memo_$i"});
1088 qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, source, memo, project_id, taxkey)
1089 VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?, ?, ?,
1090 (SELECT taxkey_id FROM chart WHERE accno = ?))|;
1091 do_query($form, $dbh, $query, $form->{id}, $accno, $form->{"paid_$i"}, $form->{"datepaid_$i"}, $form->{"source_$i"}, $form->{"memo_$i"},
1092 conv_i($form->{"globalproject_id"}), $accno);
1095 $amount = $form->{"paid_$i"} * $form->{exchangerate} - $form->{"paid_$i"} * $form->{"exchangerate_$i"};
1096 $form->{fx}{ $form->{($amount > 0 ? 'fxgain_accno' : 'fxloss_accno')} }{ $form->{"datepaid_$i"} } += $amount;
1100 # update exchange rate
1101 if (($form->{currency} ne $form->{defaultcurrency}) && !$exchangerate) {
1102 $form->update_exchangerate($dbh, $form->{currency}, $form->{"datepaid_$i"}, $form->{"exchangerate_$i"}, 0);
1108 # record exchange rate differences and gains/losses
1109 foreach my $accno (keys %{ $form->{fx} }) {
1110 foreach my $transdate (keys %{ $form->{fx}{$accno} }) {
1112 if ($form->{fx}{$accno}{$transdate} = $form->round_amount($form->{fx}{$accno}{$transdate}, 2)) { # '=' is no typo, it's an assignment
1114 qq|DELETE FROM acc_trans
1115 WHERE (trans_id = ?)
1116 AND (chart_id = (SELECT c.id FROM chart c WHERE c.accno = ?))
1117 AND (amount = ?) AND (transdate = ?) AND (cleared = ?) AND (fx_transaction = ?)|;
1118 do_query($form, $dbh, $query, $form->{id}, $accno, $form->{fx}{$accno}{$transdate}, $transdate, 0, 1);
1120 qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, cleared, fx_transaction, project_id, taxkey)
1121 VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?, ?, ?,
1122 (SELECT taxkey_id FROM chart WHERE accno = ?))|;
1123 do_query($form, $dbh, $query, $form->{id}, $accno, $form->{fx}{$accno}{$transdate}, $transdate, 0, 1, conv_i($form->{"globalproject_id"}), $accno);
1130 delete $form->{datepaid} unless $form->{paid};
1132 my $query = qq|UPDATE ar SET paid = ?, datepaid = ? WHERE id = ?|;
1133 do_query($form, $dbh, $query, $form->{"paid"}, conv_date($form->{"datepaid"}), conv_i($form->{"id"}));
1135 my $rc = $dbh->commit;
1138 $main::lxdebug->leave_sub() and return $rc;
1141 sub process_assembly {
1142 $main::lxdebug->enter_sub();
1144 my ($dbh, $form, $id, $totalqty) = @_;
1147 qq|SELECT a.parts_id, a.qty, p.assembly, p.partnumber, p.description, p.unit,
1148 p.inventory_accno_id, p.income_accno_id, p.expense_accno_id
1150 JOIN parts p ON (a.parts_id = p.id)
1152 my $sth = prepare_execute_query($form, $dbh, $query, conv_i($id));
1154 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1158 $ref->{inventory_accno_id} *= 1;
1159 $ref->{expense_accno_id} *= 1;
1161 # multiply by number of assemblies
1162 $ref->{qty} *= $totalqty;
1164 if ($ref->{assembly}) {
1165 &process_assembly($dbh, $form, $ref->{parts_id}, $ref->{qty});
1168 if ($ref->{inventory_accno_id}) {
1169 $allocated = &cogs($dbh, $form, $ref->{parts_id}, $ref->{qty});
1173 # save detail record for individual assembly item in invoice table
1175 qq|INSERT INTO invoice (trans_id, description, parts_id, qty, sellprice, fxsellprice, allocated, assemblyitem, unit)
1176 VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)|;
1177 @values = (conv_i($form->{id}), $ref->{description}, conv_i($ref->{parts_id}), $ref->{qty}, 0, 0, $allocated, 't', $ref->{unit});
1178 do_query($form, $dbh, $query, @values);
1184 $main::lxdebug->leave_sub();
1188 $main::lxdebug->enter_sub();
1190 my ($dbh, $form, $id, $totalqty, $basefactor, $row) = @_;
1191 $form->{taxzone_id} *=1;
1192 my $transdate = $form->{invdate} ? $dbh->quote($form->{invdate}) : "current_date";
1193 my $taxzone_id = $form->{"taxzone_id"} * 1;
1195 qq|SELECT i.id, i.trans_id, i.base_qty, i.allocated, i.sellprice,
1197 c1.accno AS inventory_accno,
1198 c1.new_chart_id AS inventory_new_chart,
1199 date($transdate) - c1.valid_from AS inventory_valid,
1201 c2.accno AS income_accno,
1202 c2.new_chart_id AS income_new_chart,
1203 date($transdate) - c2.valid_from AS income_valid,
1205 c3.accno AS expense_accno,
1206 c3.new_chart_id AS expense_new_chart,
1207 date($transdate) - c3.valid_from AS expense_valid
1209 FROM invoice i, parts p
1210 LEFT JOIN chart c1 ON ((SELECT inventory_accno_id FROM buchungsgruppen WHERE id = p.buchungsgruppen_id) = c1.id)
1211 LEFT JOIN chart c2 ON ((SELECT income_accno_id_${taxzone_id} FROM buchungsgruppen WHERE id = p.buchungsgruppen_id) = c2.id)
1212 LEFT JOIN chart c3 ON ((select expense_accno_id_${taxzone_id} FROM buchungsgruppen WHERE id = p.buchungsgruppen_id) = c3.id)
1213 WHERE (i.parts_id = p.id)
1214 AND (i.parts_id = ?)
1215 AND ((i.base_qty + i.allocated) < 0)
1217 my $sth = prepare_execute_query($form, $dbh, $query, conv_i($id));
1222 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1223 if (($qty = (($ref->{base_qty} * -1) - $ref->{allocated})) > $totalqty) {
1227 $form->update_balance($dbh, "invoice", "allocated", qq|id = $ref->{id}|, $qty);
1229 # total expenses and inventory
1230 # sellprice is the cost of the item
1231 $linetotal = $form->round_amount(($ref->{sellprice} * $qty) / $basefactor, 2);
1234 $ref->{expense_accno} = ($form->{"expense_accno_$row"}) ? $form->{"expense_accno_$row"} : $ref->{expense_accno};
1236 $form->{amount}{ $form->{id} }{ $ref->{expense_accno} } += -$linetotal;
1237 $form->{expense_inventory} .= " " . $ref->{expense_accno};
1238 $ref->{inventory_accno} = ($form->{"inventory_accno_$row"}) ? $form->{"inventory_accno_$row"} : $ref->{inventory_accno};
1240 $form->{amount}{ $form->{id} }{ $ref->{inventory_accno} } -= -$linetotal;
1241 $form->{expense_inventory} .= " " . $ref->{inventory_accno};
1247 last if (($totalqty -= $qty) <= 0);
1252 $main::lxdebug->leave_sub();
1257 sub reverse_invoice {
1258 $main::lxdebug->enter_sub();
1260 my ($dbh, $form) = @_;
1262 # reverse inventory items
1264 qq|SELECT i.id, i.parts_id, i.qty, i.assemblyitem, p.assembly, p.inventory_accno_id
1266 JOIN parts p ON (i.parts_id = p.id)
1267 WHERE i.trans_id = ?|;
1268 my $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{"id"}));
1270 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1272 if ($ref->{inventory_accno_id} || $ref->{assembly}) {
1274 # if the invoice item is not an assemblyitem adjust parts onhand
1275 if (!$ref->{assemblyitem}) {
1277 # adjust onhand in parts table
1278 $form->update_balance($dbh, "parts", "onhand", qq|id = $ref->{parts_id}|, $ref->{qty});
1281 # loop if it is an assembly
1282 next if ($ref->{assembly});
1284 # de-allocated purchases
1286 qq|SELECT i.id, i.trans_id, i.allocated
1288 WHERE (i.parts_id = ?) AND (i.allocated > 0)
1289 ORDER BY i.trans_id DESC|;
1290 my $sth2 = prepare_execute_query($form, $dbh, $query, conv_i($ref->{"parts_id"}));
1292 while (my $inhref = $sth2->fetchrow_hashref(NAME_lc)) {
1294 if (($ref->{qty} - $inhref->{allocated}) > 0) {
1295 $qty = $inhref->{allocated};
1299 $form->update_balance($dbh, "invoice", "allocated", qq|id = $inhref->{id}|, $qty * -1);
1301 last if (($ref->{qty} -= $qty) <= 0);
1310 @values = (conv_i($form->{id}));
1311 do_query($form, $dbh, qq|DELETE FROM acc_trans WHERE trans_id = ?|, @values);
1312 do_query($form, $dbh, qq|DELETE FROM invoice WHERE trans_id = ?|, @values);
1314 if ($form->{lizenzen}) {
1316 qq|DELETE FROM licenseinvoice
1317 WHERE trans_id in (SELECT id FROM invoice WHERE trans_id = ?)|;
1318 do_query($form, $dbh, $query, @values);
1321 do_query($form, $dbh, qq|DELETE FROM shipto WHERE (trans_id = ?) AND (module = 'AR')|, @values);
1323 $main::lxdebug->leave_sub();
1326 sub delete_invoice {
1327 $main::lxdebug->enter_sub();
1329 my ($self, $myconfig, $form, $spool) = @_;
1331 # connect to database
1332 my $dbh = $form->dbconnect_noauto($myconfig);
1334 &reverse_invoice($dbh, $form);
1336 my @values = (conv_i($form->{id}));
1339 do_query($form, $dbh, qq|DELETE FROM ar WHERE id = ?|, @values);
1341 # delete spool files
1342 my @spoolfiles = selectall_array_query($form, $dbh, qq|SELECT spoolfile FROM status WHERE trans_id = ?|, @values);
1344 # delete status entries
1345 do_query($form, $dbh, qq|DELETE FROM status WHERE trans_id = ?|, @values);
1347 my $rc = $dbh->commit;
1351 map { unlink "$spool/$_" if -f "$spool/$_"; } @{ $spoolfiles };
1354 $main::lxdebug->leave_sub();
1359 sub retrieve_invoice {
1360 $main::lxdebug->enter_sub();
1362 my ($self, $myconfig, $form) = @_;
1364 # connect to database
1365 my $dbh = $form->dbconnect_noauto($myconfig);
1367 my ($sth, $ref, $query);
1369 my $query_transdate = ", current_date AS invdate" if !$form->{id};
1373 (SELECT c.accno FROM chart c
1374 WHERE d.inventory_accno_id = c.id) AS inventory_accno,
1375 (SELECT c.accno FROM chart c
1376 WHERE d.income_accno_id = c.id) AS income_accno,
1377 (SELECT c.accno FROM chart c
1378 WHERE d.expense_accno_id = c.id) AS expense_accno,
1379 (SELECT c.accno FROM chart c
1380 WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
1381 (SELECT c.accno FROM chart c
1382 WHERE d.fxloss_accno_id = c.id) AS fxloss_accno,
1383 d.curr AS currencies
1387 $ref = selectfirst_hashref_query($form, $dbh, $query);
1388 map { $form->{$_} = $ref->{$_} } keys %{ $ref };
1391 my $id = conv_i($form->{id});
1396 a.invnumber, a.ordnumber, a.quonumber, a.cusordnumber,
1397 a.orddate, a.quodate, a.globalproject_id,
1398 a.transdate AS invdate, a.deliverydate, a.paid, a.storno, a.gldate,
1399 a.shippingpoint, a.shipvia, a.terms, a.notes, a.intnotes, a.taxzone_id,
1400 a.duedate, a.taxincluded, a.curr AS currency, a.shipto_id, a.cp_id,
1401 a.employee_id, a.salesman_id, a.payment_id,
1402 a.language_id, a.delivery_customer_id, a.delivery_vendor_id, a.type,
1403 a.transaction_description,
1406 LEFT JOIN employee e ON (e.id = a.employee_id)
1408 $ref = selectfirst_hashref_query($form, $dbh, $query, $id);
1409 map { $form->{$_} = $ref->{$_} } keys %{ $ref };
1412 $form->{exchangerate} =
1413 $form->get_exchangerate($dbh, $form->{currency}, $form->{invdate}, "buy");
1416 $query = qq|SELECT * FROM shipto WHERE (trans_id = ?) AND (module = 'AR')|;
1417 $ref = selectfirst_hashref_query($form, $dbh, $query, $id);
1419 map { $form->{$_} = $ref->{$_} } keys %{ $ref };
1421 foreach my $vc (qw(customer vendor)) {
1422 next if !$form->{"delivery_${vc}_id"};
1423 ($form->{"delivery_${vc}_string"})
1424 = selectrow_query($form, $dbh, qq|SELECT name FROM customer WHERE id = ?|, $id);
1427 # get printed, emailed
1429 qq|SELECT printed, emailed, spoolfile, formname
1431 WHERE trans_id = ?|;
1432 $sth = prepare_execute_query($form, $dbh, $query, $id);
1434 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1435 $form->{printed} .= "$ref->{formname} " if $ref->{printed};
1436 $form->{emailed} .= "$ref->{formname} " if $ref->{emailed};
1437 $form->{queued} .= "$ref->{formname} $ref->{spoolfile} "
1438 if $ref->{spoolfile};
1441 map { $form->{$_} =~ s/ +$//g } qw(printed emailed queued);
1444 $form->{deliverydate} ? $dbh->quote($form->{deliverydate}) :
1445 $form->{invdate} ? $dbh->quote($form->{invdate}) :
1448 my $taxzone_id = $form->{taxzone_id} *= 1;
1449 $taxzone_id = 0 if (0 > $taxzone_id) || (3 < $taxzone_id);
1451 # retrieve individual items
1454 c1.accno AS inventory_accno,
1455 c1.new_chart_id AS inventory_new_chart,
1456 date($transdate) - c1.valid_from AS inventory_valid,
1458 c2.accno AS income_accno,
1459 c2.new_chart_id AS income_new_chart,
1460 date($transdate) - c2.valid_from as income_valid,
1462 c3.accno AS expense_accno,
1463 c3.new_chart_id AS expense_new_chart,
1464 date($transdate) - c3.valid_from AS expense_valid,
1466 i.description, i.longdescription, i.qty, i.fxsellprice AS sellprice,
1467 i.discount, i.parts_id AS id, i.unit, i.deliverydate,
1468 i.project_id, i.serialnumber, i.id AS invoice_pos, i.pricegroup_id,
1469 i.ordnumber, i.transdate, i.cusordnumber, i.subtotal,
1471 p.partnumber, p.assembly, p.bin, p.notes AS partnotes,
1472 p.inventory_accno_id AS part_inventory_accno_id, p.formel,
1479 LEFT JOIN parts p ON (i.parts_id = p.id)
1480 LEFT JOIN project pr ON (i.project_id = pr.id)
1481 LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1482 LEFT JOIN pricegroup prg ON (i.pricegroup_id = prg.id)
1484 LEFT JOIN chart c1 ON
1485 ((SELECT inventory_accno_id
1486 FROM buchungsgruppen
1487 WHERE id = p.buchungsgruppen_id) = c1.id)
1488 LEFT JOIN chart c2 ON
1489 ((SELECT income_accno_id_${taxzone_id}
1490 FROM buchungsgruppen
1491 WHERE id=p.buchungsgruppen_id) = c2.id)
1492 LEFT JOIN chart c3 ON
1493 ((SELECT expense_accno_id_${taxzone_id}
1494 FROM buchungsgruppen
1495 WHERE id = p.buchungsgruppen_id) = c3.id)
1497 WHERE (i.trans_id = ?)
1498 AND NOT (i.assemblyitem = '1')
1501 $sth = prepare_execute_query($form, $dbh, $query, $id);
1503 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1504 if (!$ref->{"part_inventory_accno_id"}) {
1505 map({ delete($ref->{$_}); } qw(inventory_accno inventory_new_chart inventory_valid));
1507 delete($ref->{"part_inventory_accno_id"});
1509 foreach my $type (qw(inventory income expense)) {
1510 while ($ref->{"${type}_new_chart"} && ($ref->{"${type}_valid"} >=0)) {
1512 qq|SELECT accno, new_chart_id, date($transdate) - valid_from
1515 ($ref->{"${type}_accno"},
1516 $ref->{"${type}_new_chart"},
1517 $ref->{"${type}_valid"})
1518 = selectrow_query($form, $dbh, $query, $ref->{"${type}_new_chart"});
1522 # get tax rates and description
1524 ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
1526 qq|SELECT c.accno, t.taxdescription, t.rate, t.taxnumber
1528 LEFT JOIN chart c ON (c.id = t.chart_id)
1532 WHERE tk.chart_id = (SELECT id FROM chart WHERE accno = ?)
1533 AND startdate <= $transdate
1534 ORDER BY startdate DESC
1537 my $stw = prepare_execute_query($form, $dbh, $query, $accno_id);
1538 $ref->{taxaccounts} = "";
1540 while ($ptr = $stw->fetchrow_hashref(NAME_lc)) {
1542 # if ($customertax{$ref->{accno}}) {
1543 if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
1547 $ref->{taxaccounts} .= "$ptr->{accno} ";
1549 if (!($form->{taxaccounts} =~ /$ptr->{accno}/)) {
1550 $form->{"$ptr->{accno}_rate"} = $ptr->{rate};
1551 $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
1552 $form->{"$ptr->{accno}_taxnumber"} = $ptr->{taxnumber};
1553 $form->{taxaccounts} .= "$ptr->{accno} ";
1558 if ($form->{lizenzen}) {
1560 qq|SELECT l.licensenumber, l.id AS licenseid
1561 FROM license l, licenseinvoice li
1562 WHERE l.id = li.license_id AND li.trans_id = ?|;
1563 my ($licensenumber, $licenseid)
1564 = selectrow_query($form, $dbh, $query, conv_i($ref->{invoice_pos}));
1565 $ref->{lizenzen} = "<option value=\"$licenseid\">$licensenumber</option>";
1568 $ref->{qty} *= -1 if $form->{type} eq "credit_note";
1570 chop $ref->{taxaccounts};
1571 push @{ $form->{invoice_details} }, $ref;
1576 Common::webdav_folder($form) if ($main::webdav);
1579 my $rc = $dbh->commit;
1582 $main::lxdebug->leave_sub();
1588 $main::lxdebug->enter_sub();
1590 my ($self, $myconfig, $form) = @_;
1592 # connect to database
1593 my $dbh = $form->dbconnect($myconfig);
1595 my $dateformat = $myconfig->{dateformat};
1596 $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
1598 my (@values, $duedate, $ref, $query);
1600 if ($form->{invdate}) {
1601 $duedate = "to_date(?, '$dateformat')";
1602 push @values, $form->{invdate};
1604 $duedate = "current_date";
1607 my $cid = conv_i($form->{customer_id});
1612 c.name AS customer, c.discount, c.creditlimit, c.terms,
1613 c.email, c.cc, c.bcc, c.language_id, c.payment_id AS customer_payment_id,
1614 c.street, c.zipcode, c.city, c.country,
1615 c.notes AS intnotes, c.klass as customer_klass, c.taxzone_id, c.salesman_id,
1616 $duedate + COALESCE(pt.terms_netto, 0) AS duedate,
1617 b.discount AS tradediscount, b.description AS business
1619 LEFT JOIN business b ON (b.id = c.business_id)
1620 LEFT JOIN payment_terms pt ON (c.payment_id = pt.id)
1623 $ref = selectfirst_hashref_query($form, $dbh, $query, @values);
1624 map { $form->{$_} = $ref->{$_} } keys %$ref;
1627 qq|SELECT sum(amount - paid) AS dunning_amount
1629 WHERE (paid < amount)
1630 AND (customer_id = ?)
1631 AND (dunning_config_id IS NOT NULL)|;
1632 $ref = selectfirst_hashref_query($form, $dbh, $query, $cid);
1633 map { $form->{$_} = $ref->{$_} } keys %$ref;
1636 qq|SELECT dnn.dunning_description AS max_dunning_level
1637 FROM dunning_config dnn
1638 WHERE id IN (SELECT dunning_config_id
1640 WHERE (paid < amount) AND (customer_id = ?) AND (dunning_config_id IS NOT NULL))
1641 ORDER BY dunning_level DESC LIMIT 1|;
1642 $ref = selectfirst_hashref_query($form, $dbh, $query, $cid);
1643 map { $form->{$_} = $ref->{$_} } keys %$ref;
1645 #check whether payment_terms are better than old payment_terms
1646 if (($form->{payment_id} ne "") && ($form->{customer_payment_id} ne "")) {
1649 (SELECT ranking FROM payment_terms WHERE id = ?),
1650 (SELECT ranking FROM payment_terms WHERE id = ?)|;
1651 my ($old_ranking, $new_ranking)
1652 = selectrow_query($form, $dbh, $query, conv_i($form->{payment_id}), conv_i($form->{customer_payment_id}));
1653 if ($new_ranking > $old_ranking) {
1654 $form->{payment_id} = $form->{customer_payment_id};
1658 if ($form->{payment_id} eq "") {
1659 $form->{payment_id} = $form->{customer_payment_id};
1662 $form->{creditremaining} = $form->{creditlimit};
1663 $query = qq|SELECT SUM(amount - paid) FROM ar WHERE customer_id = ?|;
1664 my ($value) = selectrow_query($form, $dbh, $query, $cid);
1665 $form->{creditremaining} -= $value;
1669 (SELECT e.buy FROM exchangerate e
1670 WHERE e.curr = o.curr
1671 AND e.transdate = o.transdate)
1673 WHERE o.customer_id = ?
1674 AND o.quotation = '0'
1675 AND o.closed = '0'|;
1676 $sth = prepare_execute_query($form, $dbh, $query, $cid);
1678 while (my ($amount, $exch) = $sth->fetchrow_array) {
1679 $exch = 1 unless $exch;
1680 $form->{creditremaining} -= $amount * $exch;
1684 # get shipto if we did not converted an order or invoice
1685 if (!$form->{shipto}) {
1686 map { delete $form->{$_} }
1687 qw(shiptoname shiptodepartment_1 shiptodepartment_2
1688 shiptostreet shiptozipcode shiptocity shiptocountry
1689 shiptocontact shiptophone shiptofax shiptoemail);
1691 $query = qq|SELECT * FROM shipto WHERE trans_id = ? AND module = 'CT'|;
1692 $ref = selectfirst_hashref_query($form, $dbh, $query, $cid);
1694 map { $form->{$_} = $ref->{$_} } keys %$ref;
1697 # setup last accounts used for this customer
1698 if (!$form->{id} && $form->{type} !~ /_(order|quotation)/) {
1700 qq|SELECT c.id, c.accno, c.description, c.link, c.category
1702 JOIN acc_trans ac ON (ac.chart_id = c.id)
1703 JOIN ar a ON (a.id = ac.trans_id)
1704 WHERE a.customer_id = ?
1705 AND NOT (c.link LIKE '%_tax%' OR c.link LIKE '%_paid%')
1706 AND a.id IN (SELECT max(a2.id) FROM ar a2 WHERE a2.customer_id = ?)|;
1707 $sth = prepare_execute_query($form, $dbh, $query, $cid, $cid);
1710 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1711 if ($ref->{category} eq 'I') {
1713 $form->{"AR_amount_$i"} = "$ref->{accno}--$ref->{description}";
1715 if ($form->{initial_transdate}) {
1717 qq|SELECT tk.tax_id, t.rate
1719 LEFT JOIN tax t ON tk.tax_id = t.id
1720 WHERE (tk.chart_id = ?) AND (startdate <= ?)
1721 ORDER BY tk.startdate DESC
1723 my ($tax_id, $rate) =
1724 selectrow_query($form, $dbh, $tax_query, $ref->{id},
1725 $form->{initial_transdate});
1726 $form->{"taxchart_$i"} = "${tax_id}--${rate}";
1729 if ($ref->{category} eq 'A') {
1730 $form->{ARselected} = $form->{AR_1} = $ref->{accno};
1734 $form->{rowcount} = $i if ($i && !$form->{type});
1739 $main::lxdebug->leave_sub();
1743 $main::lxdebug->enter_sub();
1745 my ($self, $myconfig, $form) = @_;
1747 # connect to database
1748 my $dbh = $form->dbconnect($myconfig);
1750 my $i = $form->{rowcount};
1752 my $where = qq|NOT p.obsolete = '1'|;
1755 foreach my $column (qw(p.partnumber p.description pgpartsgroup)) {
1756 my ($table, $field) = split m/\./, $column;
1757 next if !$form->{"${field}_${i}"};
1758 $where .= qq| AND lower(${column}) ILIKE ?|;
1759 push @values, '%' . $form->{"${field}_${i}"} . '%';
1762 if ($form->{"description_$i"}) {
1763 $where .= qq| ORDER BY p.description|;
1765 $where .= qq| ORDER BY p.partnumber|;
1769 if ($form->{type} eq "invoice") {
1771 $form->{deliverydate} ? $dbh->quote($form->{deliverydate}) :
1772 $form->{invdate} ? $dbh->quote($form->{invdate}) :
1776 $form->{transdate} ? $dbh->quote($form->{transdate}) :
1780 my $taxzone_id = $form->{taxzone_id} * 1;
1781 $taxzone_id = 0 if (0 > $taxzone_id) || (3 < $taxzone_id);
1785 p.id, p.partnumber, p.description, p.sellprice,
1786 p.listprice, p.inventory_accno_id,
1788 c1.accno AS inventory_accno,
1789 c1.new_chart_id AS inventory_new_chart,
1790 date($transdate) - c1.valid_from AS inventory_valid,
1792 c2.accno AS income_accno,
1793 c2.new_chart_id AS income_new_chart,
1794 date($transdate) - c2.valid_from AS income_valid,
1796 c3.accno AS expense_accno,
1797 c3.new_chart_id AS expense_new_chart,
1798 date($transdate) - c3.valid_from AS expense_valid,
1800 p.unit, p.assembly, p.bin, p.onhand,
1801 p.notes AS partnotes, p.notes AS longdescription,
1802 p.not_discountable, p.formel, p.payment_id AS part_payment_id,
1807 LEFT JOIN chart c1 ON
1808 ((SELECT inventory_accno_id
1809 FROM buchungsgruppen
1810 WHERE id = p.buchungsgruppen_id) = c1.id)
1811 LEFT JOIN chart c2 ON
1812 ((SELECT income_accno_id_${taxzone_id}
1813 FROM buchungsgruppen
1814 WHERE id = p.buchungsgruppen_id) = c2.id)
1815 LEFT JOIN chart c3 ON
1816 ((SELECT expense_accno_id_${taxzone_id}
1817 FROM buchungsgruppen
1818 WHERE id = p.buchungsgruppen_id) = c3.id)
1819 LEFT JOIN partsgroup pg ON (pg.id = p.partsgroup_id)
1821 my $sth = prepare_execute_query($form, $dbh, $query, @values);
1823 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1825 # In der Buchungsgruppe ist immer ein Bestandskonto verknuepft, auch wenn
1826 # es sich um eine Dienstleistung handelt. Bei Dienstleistungen muss das
1827 # Buchungskonto also aus dem Ergebnis rausgenommen werden.
1828 if (!$ref->{inventory_accno_id}) {
1829 map({ delete($ref->{"inventory_${_}"}); } qw(accno new_chart valid));
1831 delete($ref->{inventory_accno_id});
1833 foreach my $type (qw(inventory income expense)) {
1834 while ($ref->{"${type}_new_chart"} && ($ref->{"${type}_valid"} >=0)) {
1836 qq|SELECT accno, new_chart_id, date($transdate) - valid_from
1839 ($ref->{"${type}_accno"},
1840 $ref->{"${type}_new_chart"},
1841 $ref->{"${type}_valid"})
1842 = selectrow_query($form, $dbh, $query, $ref->{"${type}_new_chart"});
1846 #check whether payment_terms are better than old payment_terms
1847 if (($form->{payment_id} ne "") && ($form->{part_payment_id} ne "")) {
1850 (SELECT ranking FROM payment_terms WHERE id = ?),
1851 (SELECT ranking FROM payment_terms WHERE id = ?)|;
1852 my ($old_ranking, $new_ranking)
1853 = selectrow_query($form, $dbh, $query, conv_i($form->{payment_id}), conv_i($form->{part_payment_id}));
1854 if ($new_ranking > $old_ranking) {
1855 $form->{payment_id} = $form->{customer_payment_id};
1859 if ($form->{payment_id} eq "") {
1860 $form->{payment_id} = $form->{part_payment_id};
1863 # get tax rates and description
1864 $accno_id = ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
1866 qq|SELECT c.accno, t.taxdescription, t.rate, t.taxnumber
1868 LEFT JOIN chart c ON (c.id = t.chart_id)
1872 WHERE tk.chart_id = (SELECT id from chart WHERE accno = ?)
1874 ORDER BY startdate DESC
1877 @values = ($accno_id, $transdate);
1878 $stw = $dbh->prepare($query);
1879 $stw->execute(@values) || $form->dberror($query);
1881 $ref->{taxaccounts} = "";
1883 while ($ptr = $stw->fetchrow_hashref(NAME_lc)) {
1885 # if ($customertax{$ref->{accno}}) {
1886 if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
1890 $ref->{taxaccounts} .= "$ptr->{accno} ";
1892 if (!($form->{taxaccounts} =~ /$ptr->{accno}/)) {
1893 $form->{"$ptr->{accno}_rate"} = $ptr->{rate};
1894 $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
1895 $form->{"$ptr->{accno}_taxnumber"} = $ptr->{taxnumber};
1896 $form->{taxaccounts} .= "$ptr->{accno} ";
1902 chop $ref->{taxaccounts};
1903 if ($form->{language_id}) {
1905 qq|SELECT tr.translation, tr.longdescription
1907 WHERE tr.language_id = ? AND tr.parts_id = ?|;
1908 @values = (conv_i($form->{language_id}), conv_i($ref->{id}));
1909 my ($translation, $longdescription) = selectrow_query($form, $dbh, $query, @values);
1910 if ($translation ne "") {
1911 $ref->{description} = $translation;
1912 $ref->{longdescription} = $longdescription;
1916 qq|SELECT tr.translation, tr.longdescription
1918 WHERE tr.language_id IN
1921 WHERE article_code = (SELECT article_code FROM language WHERE id = ?))
1924 @values = (conv_i($form->{language_id}), conv_i($ref->{id}));
1925 my ($translation, $longdescription) = selectrow_query($form, $dbh, $query, @values);
1926 if ($translation ne "") {
1927 $ref->{description} = $translation;
1928 $ref->{longdescription} = $longdescription;
1933 push @{ $form->{item_list} }, $ref;
1935 if ($form->{lizenzen}) {
1936 if ($ref->{inventory_accno} > 0) {
1940 WHERE l.parts_id = ? AND NOT l.id IN (SELECT li.license_id FROM licenseinvoice li)|;
1941 my $stw = prepare_execute_query($form, $dbh, $query, conv_i($ref->{id}));
1942 while (my $ptr = $stw->fetchrow_hashref(NAME_lc)) {
1943 push @{ $form->{LIZENZEN}{ $ref->{id} } }, $ptr;
1952 $main::lxdebug->leave_sub();
1955 ##########################
1956 # get pricegroups from database
1957 # build up selected pricegroup
1958 # if an exchange rate - change price
1961 sub get_pricegroups_for_parts {
1963 $main::lxdebug->enter_sub();
1965 my ($self, $myconfig, $form) = @_;
1967 my $dbh = $form->dbconnect($myconfig);
1969 $form->{"PRICES"} = {};
1973 my $dimension_units = AM->retrieve_units($myconfig, $form, "dimension");
1974 my $service_units = AM->retrieve_units($myconfig, $form, "service");
1975 my $all_units = AM->retrieve_units($myconfig, $form);
1976 while (($form->{"id_$i"}) or ($form->{"new_id_$i"})) {
1977 $form->{"PRICES"}{$i} = [];
1979 $id = $form->{"id_$i"};
1981 if (!($form->{"id_$i"}) and $form->{"new_id_$i"}) {
1983 $id = $form->{"new_id_$i"};
1986 ($price, $selectedpricegroup_id) = split(/--/,
1987 $form->{"sellprice_pg_$i"});
1989 $pricegroup_old = $form->{"pricegroup_old_$i"};
1990 $form->{"new_pricegroup_$i"} = $selectedpricegroup_id;
1991 $form->{"old_pricegroup_$i"} = $pricegroup_old;
1993 $price_new = $form->{"price_new_$i"};
1994 $price_old = $form->{"price_old_$i"};
1996 if (!$form->{"unit_old_$i"}) {
1997 # Neue Ware aus der Datenbank. In diesem Fall ist unit_$i die
1998 # Einheit, wie sie in den Stammdaten hinterlegt wurde.
1999 # Es sollte also angenommen werden, dass diese ausgewaehlt war.
2000 $form->{"unit_old_$i"} = $form->{"unit_$i"};
2003 # Die zuletzt ausgewaehlte mit der aktuell ausgewaehlten Einheit
2004 # vergleichen und bei Unterschied den Preis entsprechend umrechnen.
2005 $form->{"selected_unit_$i"} = $form->{"unit_$i"} unless ($form->{"selected_unit_$i"});
2007 my $check_units = $form->{"inventory_accno_$i"} ? $dimension_units : $service_units;
2008 if (!$check_units->{$form->{"selected_unit_$i"}} ||
2009 ($check_units->{$form->{"selected_unit_$i"}}->{"base_unit"} ne
2010 $all_units->{$form->{"unit_old_$i"}}->{"base_unit"})) {
2011 # Die ausgewaehlte Einheit ist fuer diesen Artikel nicht gueltig
2012 # (z.B. Dimensionseinheit war ausgewaehlt, es handelt sich aber
2013 # um eine Dienstleistung). Dann keinerlei Umrechnung vornehmen.
2014 $form->{"unit_old_$i"} = $form->{"selected_unit_$i"} = $form->{"unit_$i"};
2019 if ($form->{"unit_old_$i"} ne $form->{"selected_unit_$i"}) {
2020 if (defined($all_units->{$form->{"unit_old_$i"}}->{"factor"}) &&
2021 $all_units->{$form->{"unit_old_$i"}}->{"factor"}) {
2022 $basefactor = $all_units->{$form->{"selected_unit_$i"}}->{"factor"} /
2023 $all_units->{$form->{"unit_old_$i"}}->{"factor"};
2027 if (!$form->{"basefactor_$i"}) {
2028 $form->{"basefactor_$i"} = 1;
2034 (SELECT p.sellprice FROM parts p WHERE p.id = ?) AS default_sellprice,
2035 (SELECT pg.pricegroup FROM pricegroup pg WHERE id = pricegroup_id) AS pricegroup,
2045 (SELECT sellprice FROM parts WHERE id = ?) AS default_sellprice,
2047 (SELECT DISTINCT sellprice FROM parts where id = ?) AS price,
2048 'selected' AS selected
2051 ORDER BY pricegroup|;
2052 @values = (conv_i($id), conv_i($id), conv_i($id), conv_i($id));
2053 my $pkq = prepare_execute_query($form, $dbh, $query, @values);
2055 while ($pkr = $pkq->fetchrow_hashref(NAME_lc)) {
2057 $pkr->{selected} = '';
2059 # if there is an exchange rate change price
2060 if (($form->{exchangerate} * 1) != 0) {
2062 $pkr->{price} /= $form->{exchangerate};
2065 $pkr->{price} *= $form->{"basefactor_$i"};
2067 $pkr->{price} *= $basefactor;
2069 $pkr->{price} = $form->format_amount($myconfig, $pkr->{price}, 5);
2071 if ($selectedpricegroup_id eq undef) {
2072 if ($pkr->{pricegroup_id} eq $form->{customer_klass}) {
2074 $pkr->{selected} = ' selected';
2076 # no customer pricesgroup set
2077 if ($pkr->{price} == $pkr->{default_sellprice}) {
2079 $pkr->{price} = $form->{"sellprice_$i"};
2083 $form->{"sellprice_$i"} = $pkr->{price};
2086 } elsif ($pkr->{price} == $pkr->{default_sellprice}) {
2087 $pkr->{price} = $form->{"sellprice_$i"};
2088 $pkr->{selected} = ' selected';
2092 if ($selectedpricegroup_id or $selectedpricegroup_id == 0) {
2093 if ($selectedpricegroup_id ne $pricegroup_old) {
2094 if ($pkr->{pricegroup_id} eq $selectedpricegroup_id) {
2095 $pkr->{selected} = ' selected';
2097 } elsif (($price_new != $form->{"sellprice_$i"}) and ($price_new ne 0)) {
2098 if ($pkr->{pricegroup_id} == 0) {
2099 $pkr->{price} = $form->{"sellprice_$i"};
2100 $pkr->{selected} = ' selected';
2102 } elsif ($pkr->{pricegroup_id} eq $selectedpricegroup_id) {
2103 $pkr->{selected} = ' selected';
2104 if ( ($pkr->{pricegroup_id} == 0)
2105 and ($pkr->{price} == $form->{"sellprice_$i"})) {
2106 # $pkr->{price} = $form->{"sellprice_$i"};
2108 $pkr->{price} = $form->{"sellprice_$i"};
2112 push @{ $form->{PRICES}{$i} }, $pkr;
2115 $form->{"basefactor_$i"} *= $basefactor;
2124 $main::lxdebug->leave_sub();
2128 $main::lxdebug->enter_sub();
2130 my ($self, $myconfig, $form, $table) = @_;
2132 $main::lxdebug->leave_sub() and return 0 unless ($form->{id});
2134 # make sure there's no funny stuff in $table
2135 # ToDO: die when this happens and throw an error
2136 $main::lxdebug->leave_sub() and return 0 if ($table =~ /\W/);
2138 my $dbh = $form->dbconnect($myconfig);
2140 my $query = qq|SELECT storno FROM $table WHERE id = ?|;
2141 my ($result) = selectrow_query($form, $dbh, $query, $form->{id});
2145 $main::lxdebug->leave_sub();