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) 1999-2003
 
  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 #======================================================================
 
  33 #======================================================================
 
  37 use List::Util qw(max first);
 
  45   $main::lxdebug->enter_sub();
 
  47   my ($self, $myconfig, $form) = @_;
 
  50   my $dbh = $form->dbconnect($myconfig);
 
  53   my $ordnumber = 'ordnumber';
 
  59   my $rate = ($form->{vc} eq 'customer') ? 'buy' : 'sell';
 
  61   if ($form->{type} =~ /_quotation$/) {
 
  63     $ordnumber = 'quonumber';
 
  66   my $vc = $form->{vc} eq "customer" ? "customer" : "vendor";
 
  69     qq|SELECT o.id, o.ordnumber, o.transdate, o.reqdate, | .
 
  70     qq|  o.amount, ct.name, o.netamount, o.${vc}_id, o.globalproject_id, | .
 
  71     qq|  o.closed, o.delivered, o.quonumber, o.shippingpoint, o.shipvia, | .
 
  72     qq|  o.transaction_description, | .
 
  73     qq|  o.marge_total, o.marge_percent, | .
 
  74     qq|  ex.$rate AS exchangerate, | .
 
  75     qq|  pr.projectnumber AS globalprojectnumber, | .
 
  76     qq|  e.name AS employee, s.name AS salesman | .
 
  78     qq|JOIN $vc ct ON (o.${vc}_id = ct.id) | .
 
  79     qq|LEFT JOIN employee e ON (o.employee_id = e.id) | .
 
  80     qq|LEFT JOIN employee s ON (o.salesman_id = s.id) | .
 
  81     qq|LEFT JOIN exchangerate ex ON (ex.curr = o.curr | .
 
  82     qq|  AND ex.transdate = o.transdate) | .
 
  83     qq|LEFT JOIN project pr ON (o.globalproject_id = pr.id) | .
 
  84     qq|WHERE (o.quotation = ?) |;
 
  85   push(@values, $quotation);
 
  87   my ($null, $department_id) = split /--/, $form->{department};
 
  89     $query .= qq| AND o.department_id = ?|;
 
  90     push(@values, $department_id);
 
  93   if ($form->{"project_id"}) {
 
  95       qq|AND ((globalproject_id = ?) OR EXISTS | .
 
  96       qq|  (SELECT * FROM orderitems oi | .
 
  97       qq|   WHERE oi.project_id = ? AND oi.trans_id = o.id))|;
 
  98     push(@values, $form->{"project_id"}, $form->{"project_id"});
 
 101   if ($form->{"${vc}_id"}) {
 
 102     $query .= " AND o.${vc}_id = ?";
 
 103     push(@values, $form->{"${vc}_id"});
 
 105   } elsif ($form->{$vc}) {
 
 106     $query .= " AND ct.name ILIKE ?";
 
 107     push(@values, '%' . $form->{$vc} . '%');
 
 110   if ($form->{employee_id}) {
 
 111     $query .= " AND o.employee_id = ?";
 
 112     push @values, conv_i($form->{employee_id});
 
 115   if ($form->{salesman_id}) {
 
 116     $query .= " AND o.salesman_id = ?";
 
 117     push @values, conv_i($form->{salesman_id});
 
 120   if (!$form->{open} && !$form->{closed}) {
 
 121     $query .= " AND o.id = 0";
 
 122   } elsif (!($form->{open} && $form->{closed})) {
 
 123     $query .= ($form->{open}) ? " AND o.closed = '0'" : " AND o.closed = '1'";
 
 126   if (($form->{"notdelivered"} || $form->{"delivered"}) &&
 
 127       ($form->{"notdelivered"} ne $form->{"delivered"})) {
 
 128     $query .= $form->{"delivered"} ?
 
 129       " AND o.delivered " : " AND NOT o.delivered";
 
 132   if ($form->{$ordnumber}) {
 
 133     $query .= qq| AND o.$ordnumber ILIKE ?|;
 
 134     push(@values, '%' . $form->{$ordnumber} . '%');
 
 137   if($form->{transdatefrom}) {
 
 138     $query .= qq| AND o.transdate >= ?|;
 
 139     push(@values, conv_date($form->{transdatefrom}));
 
 142   if($form->{transdateto}) {
 
 143     $query .= qq| AND o.transdate <= ?|;
 
 144     push(@values, conv_date($form->{transdateto}));
 
 147   if($form->{reqdatefrom}) {
 
 148     $query .= qq| AND o.reqdate >= ?|;
 
 149     push(@values, conv_date($form->{reqdatefrom}));
 
 152   if($form->{reqdateto}) {
 
 153     $query .= qq| AND o.reqdate <= ?|;
 
 154     push(@values, conv_date($form->{reqdateto}));
 
 157   if ($form->{transaction_description}) {
 
 158     $query .= qq| AND o.transaction_description ILIKE ?|;
 
 159     push(@values, '%' . $form->{transaction_description} . '%');
 
 162   my $sortdir   = !defined $form->{sortdir} ? 'ASC' : $form->{sortdir} ? 'ASC' : 'DESC';
 
 163   my $sortorder = join(', ', map { "${_} ${sortdir} " } ("o.id", $form->sort_columns("transdate", $ordnumber, "name")));
 
 164   my %allowed_sort_columns = (
 
 165     "transdate"               => "o.transdate",
 
 166     "reqdate"                 => "o.reqdate",
 
 168     "ordnumber"               => "o.ordnumber",
 
 169     "quonumber"               => "o.quonumber",
 
 171     "employee"                => "e.name",
 
 172     "salesman"                => "e.name",
 
 173     "shipvia"                 => "o.shipvia",
 
 174     "transaction_description" => "o.transaction_description"
 
 176   if ($form->{sort} && grep($form->{sort}, keys(%allowed_sort_columns))) {
 
 177     $sortorder = $allowed_sort_columns{$form->{sort}} . " ${sortdir}";
 
 179   $query .= qq| ORDER by | . $sortorder;
 
 181   my $sth = $dbh->prepare($query);
 
 182   $sth->execute(@values) ||
 
 183     $form->dberror($query . " (" . join(", ", @values) . ")");
 
 187   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
 188     $ref->{exchangerate} = 1 unless $ref->{exchangerate};
 
 189     push @{ $form->{OE} }, $ref if $ref->{id} != $id{ $ref->{id} };
 
 190     $id{ $ref->{id} } = $ref->{id};
 
 196   $main::lxdebug->leave_sub();
 
 199 sub transactions_for_todo_list {
 
 200   $main::lxdebug->enter_sub();
 
 205   my $myconfig = \%main::myconfig;
 
 206   my $form     = $main::form;
 
 208   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
 
 210   my $query    = qq|SELECT id FROM employee WHERE login = ?|;
 
 211   my ($e_id)   = selectrow_query($form, $dbh, $query, $form->{login});
 
 214     qq|SELECT oe.id, oe.transdate, oe.reqdate, oe.quonumber, oe.transaction_description, oe.amount,
 
 215          CASE WHEN (COALESCE(oe.customer_id, 0) = 0) THEN 'vendor' ELSE 'customer' END AS vc,
 
 220        LEFT JOIN customer c ON (oe.customer_id = c.id)
 
 221        LEFT JOIN vendor v   ON (oe.vendor_id   = v.id)
 
 222        LEFT JOIN employee e ON (oe.employee_id = e.id)
 
 223        WHERE (COALESCE(quotation, FALSE) = TRUE)
 
 224          AND (COALESCE(closed,    FALSE) = FALSE)
 
 225          AND ((oe.employee_id = ?) OR (oe.salesman_id = ?))
 
 226          AND NOT (oe.reqdate ISNULL)
 
 227          AND (oe.reqdate < current_date)
 
 230   my $quotations = selectall_hashref_query($form, $dbh, $query, $e_id, $e_id);
 
 232   $main::lxdebug->leave_sub();
 
 238   $main::lxdebug->enter_sub();
 
 240   my ($self, $myconfig, $form) = @_;
 
 242   # connect to database, turn off autocommit
 
 243   my $dbh = $form->dbconnect_noauto($myconfig);
 
 245   my ($query, @values, $sth, $null);
 
 246   my $exchangerate = 0;
 
 248   my $all_units = AM->retrieve_units($myconfig, $form);
 
 249   $form->{all_units} = $all_units;
 
 251   $form->{employee_id} = (split /--/, $form->{employee})[1] if !$form->{employee_id};
 
 252   unless ($form->{employee_id}) {
 
 253     $form->get_employee($dbh);
 
 256   my $ml = ($form->{type} eq 'sales_order') ? 1 : -1;
 
 260     $query = qq|DELETE FROM orderitems WHERE trans_id = ?|;
 
 261     do_query($form, $dbh, $query, $form->{id});
 
 263     $query = qq|DELETE FROM shipto | .
 
 264              qq|WHERE trans_id = ? AND module = 'OE'|;
 
 265     do_query($form, $dbh, $query, $form->{id});
 
 269     $query = qq|SELECT nextval('id')|;
 
 270     ($form->{id}) = selectrow_query($form, $dbh, $query);
 
 272     $query = qq|INSERT INTO oe (id, ordnumber, employee_id) VALUES (?, '', ?)|;
 
 273     do_query($form, $dbh, $query, $form->{id}, $form->{employee_id});
 
 289   $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
 
 290   my %price_factors = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
 
 293   for my $i (1 .. $form->{rowcount}) {
 
 295     map({ $form->{"${_}_$i"} = $form->parse_amount($myconfig, $form->{"${_}_$i"}) } qw(qty ship));
 
 297     if ($form->{"id_$i"}) {
 
 300       $query = qq|SELECT unit FROM parts WHERE id = ?|;
 
 301       my ($item_unit) = selectrow_query($form, $dbh, $query, $form->{"id_$i"});
 
 304       if (defined($all_units->{$item_unit}->{factor}) &&
 
 305           (($all_units->{$item_unit}->{factor} * 1) != 0)) {
 
 306         $basefactor = $all_units->{$form->{"unit_$i"}}->{factor} / $all_units->{$item_unit}->{factor};
 
 308       my $baseqty = $form->{"qty_$i"} * $basefactor;
 
 310       $form->{"marge_percent_$i"} = $form->parse_amount($myconfig, $form->{"marge_percent_$i"}) * 1;
 
 311       $form->{"marge_total_$i"} = $form->parse_amount($myconfig, $form->{"marge_total_$i"}) * 1;
 
 312       $form->{"lastcost_$i"} = $form->{"lastcost_$i"} * 1;
 
 314       # set values to 0 if nothing entered
 
 315       $form->{"discount_$i"} = $form->parse_amount($myconfig, $form->{"discount_$i"}) / 100;
 
 317       $form->{"sellprice_$i"} = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
 
 318       $fxsellprice = $form->{"sellprice_$i"};
 
 320       my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 322       my $decimalplaces = ($dec > 2) ? $dec : 2;
 
 324       $discount = $form->round_amount($form->{"sellprice_$i"} * $form->{"discount_$i"}, $decimalplaces);
 
 325       $form->{"sellprice_$i"} = $form->round_amount($form->{"sellprice_$i"} - $discount, $decimalplaces);
 
 327       $form->{"inventory_accno_$i"} *= 1;
 
 328       $form->{"expense_accno_$i"}   *= 1;
 
 330       $price_factor = $price_factors{ $form->{"price_factor_id_$i"} } || 1;
 
 331       $linetotal    = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2);
 
 333       @taxaccounts = split(/ /, $form->{"taxaccounts_$i"});
 
 337       map { $taxrate += $form->{"${_}_rate"} } @taxaccounts;
 
 339       if ($form->{taxincluded}) {
 
 340         $taxamount = $linetotal * $taxrate / (1 + $taxrate);
 
 341         $taxbase   = $linetotal - $taxamount;
 
 343         # we are not keeping a natural price, do not round
 
 344         $form->{"sellprice_$i"} =
 
 345           $form->{"sellprice_$i"} * (1 / (1 + $taxrate));
 
 347         $taxamount = $linetotal * $taxrate;
 
 348         $taxbase   = $linetotal;
 
 351       if ($form->round_amount($taxrate, 7) == 0) {
 
 352         if ($form->{taxincluded}) {
 
 353           foreach $item (@taxaccounts) {
 
 354             $taxamount = $form->round_amount($linetotal * $form->{"${item}_rate"} / (1 + abs($form->{"${item}_rate"})), 2);
 
 355             $taxaccounts{$item} += $taxamount;
 
 356             $taxdiff            += $taxamount;
 
 357             $taxbase{$item}     += $taxbase;
 
 359           $taxaccounts{ $taxaccounts[0] } += $taxdiff;
 
 361           foreach $item (@taxaccounts) {
 
 362             $taxaccounts{$item} += $linetotal * $form->{"${item}_rate"};
 
 363             $taxbase{$item}     += $taxbase;
 
 367         foreach $item (@taxaccounts) {
 
 368           $taxaccounts{$item} += $taxamount * $form->{"${item}_rate"} / $taxrate;
 
 369           $taxbase{$item} += $taxbase;
 
 373       $netamount += $form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor;
 
 375       $reqdate = ($form->{"reqdate_$i"}) ? $form->{"reqdate_$i"} : undef;
 
 377       # get pricegroup_id and save ist
 
 378       ($null, my $pricegroup_id) = split(/--/, $form->{"sellprice_pg_$i"});
 
 381       # save detail record in orderitems table
 
 383       $query = qq|INSERT INTO orderitems (|;
 
 384       if ($form->{"orderitems_id_$i"}) {
 
 387       $query .= qq|trans_id, parts_id, description, longdescription, qty, base_qty, | .
 
 388                 qq|sellprice, discount, unit, reqdate, project_id, serialnumber, ship, | .
 
 389                 qq|pricegroup_id, ordnumber, transdate, cusordnumber, subtotal, | .
 
 390                 qq|marge_percent, marge_total, lastcost, price_factor_id, price_factor, marge_price_factor) | .
 
 392       if($form->{"orderitems_id_$i"}) {
 
 394         push(@values, $form->{"orderitems_id_$i"});
 
 396       $query .= qq|?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,
 
 397                    (SELECT factor FROM price_factors WHERE id = ?), ?)|;
 
 399            conv_i($form->{id}), conv_i($form->{"id_$i"}),
 
 400            $form->{"description_$i"}, $form->{"longdescription_$i"},
 
 401            $form->{"qty_$i"}, $baseqty,
 
 402            $fxsellprice, $form->{"discount_$i"},
 
 403            $form->{"unit_$i"}, conv_date($reqdate), conv_i($form->{"project_id_$i"}),
 
 404            $form->{"serialnumber_$i"}, $form->{"ship_$i"}, conv_i($pricegroup_id),
 
 405            $form->{"ordnumber_$i"}, conv_date($form->{"transdate_$i"}),
 
 406            $form->{"cusordnumber_$i"}, $form->{"subtotal_$i"} ? 't' : 'f',
 
 407            $form->{"marge_percent_$i"}, $form->{"marge_total_$i"},
 
 408            $form->{"lastcost_$i"},
 
 409            conv_i($form->{"price_factor_id_$i"}), conv_i($form->{"price_factor_id_$i"}),
 
 410            conv_i($form->{"marge_price_factor_$i"}));
 
 411       do_query($form, $dbh, $query, @values);
 
 413       $form->{"sellprice_$i"} = $fxsellprice;
 
 414       $form->{"discount_$i"} *= 100;
 
 418   $reqdate = ($form->{reqdate}) ? $form->{reqdate} : undef;
 
 422   map { $tax += $form->round_amount($taxaccounts{$_}, 2) } keys %taxaccounts;
 
 424   $amount = $form->round_amount($netamount + $tax, 2);
 
 425   $netamount = $form->round_amount($netamount, 2);
 
 427   if ($form->{currency} eq $form->{defaultcurrency}) {
 
 428     $form->{exchangerate} = 1;
 
 430     $exchangerate = $form->check_exchangerate($myconfig, $form->{currency}, $form->{transdate}, ($form->{vc} eq 'customer') ? 'buy' : 'sell');
 
 433   $form->{exchangerate} = $exchangerate || $form->parse_amount($myconfig, $form->{exchangerate});
 
 435   my $quotation = $form->{type} =~ /_order$/ ? 'f' : 't';
 
 437   ($null, $form->{department_id}) = split(/--/, $form->{department}) if $form->{department};
 
 442          ordnumber = ?, quonumber = ?, cusordnumber = ?, transdate = ?, vendor_id = ?,
 
 443          customer_id = ?, amount = ?, netamount = ?, reqdate = ?, taxincluded = ?,
 
 444          shippingpoint = ?, shipvia = ?, notes = ?, intnotes = ?, curr = ?, closed = ?,
 
 445          delivered = ?, proforma = ?, quotation = ?, department_id = ?, language_id = ?,
 
 446          taxzone_id = ?, shipto_id = ?, payment_id = ?, delivery_vendor_id = ?, delivery_customer_id = ?,
 
 447          globalproject_id = ?, employee_id = ?, salesman_id = ?, cp_id = ?, transaction_description = ?, marge_total = ?, marge_percent = ?
 
 450   @values = ($form->{ordnumber} || '', $form->{quonumber},
 
 451              $form->{cusordnumber}, conv_date($form->{transdate}),
 
 452              conv_i($form->{vendor_id}), conv_i($form->{customer_id}),
 
 453              $amount, $netamount, conv_date($reqdate),
 
 454              $form->{taxincluded} ? 't' : 'f', $form->{shippingpoint},
 
 455              $form->{shipvia}, $form->{notes}, $form->{intnotes},
 
 456              substr($form->{currency}, 0, 3), $form->{closed} ? 't' : 'f',
 
 457              $form->{delivered} ? "t" : "f", $form->{proforma} ? 't' : 'f',
 
 458              $quotation, conv_i($form->{department_id}),
 
 459              conv_i($form->{language_id}), conv_i($form->{taxzone_id}),
 
 460              conv_i($form->{shipto_id}), conv_i($form->{payment_id}),
 
 461              conv_i($form->{delivery_vendor_id}),
 
 462              conv_i($form->{delivery_customer_id}),
 
 463              conv_i($form->{globalproject_id}), conv_i($form->{employee_id}),
 
 464              conv_i($form->{salesman_id}), conv_i($form->{cp_id}),
 
 465              $form->{transaction_description},
 
 466              $form->{marge_total} * 1, $form->{marge_percent} * 1,
 
 467              conv_i($form->{id}));
 
 468   do_query($form, $dbh, $query, @values);
 
 470   $form->{ordtotal} = $amount;
 
 473   $form->{name} = $form->{ $form->{vc} };
 
 474   $form->{name} =~ s/--\Q$form->{"$form->{vc}_id"}\E//;
 
 476   if (!$form->{shipto_id}) {
 
 477     $form->add_shipto($dbh, $form->{id}, "OE");
 
 480   # save printed, emailed, queued
 
 481   $form->save_status($dbh);
 
 483   # Link this record to the records it was created from.
 
 484   $form->{convert_from_oe_ids} =~ s/^\s+//;
 
 485   $form->{convert_from_oe_ids} =~ s/\s+$//;
 
 486   my @convert_from_oe_ids      =  split m/\s+/, $form->{convert_from_oe_ids};
 
 487   delete $form->{convert_from_oe_ids};
 
 489   if (scalar @convert_from_oe_ids) {
 
 490     RecordLinks->create_links('dbh'        => $dbh,
 
 492                               'from_table' => 'oe',
 
 493                               'from_ids'   => \@convert_from_oe_ids,
 
 495                               'to_id'      => $form->{id},
 
 498     $self->_close_quotations_rfqs('dbh'     => $dbh,
 
 499                                   'from_id' => \@convert_from_oe_ids,
 
 500                                   'to_id'   => $form->{id});
 
 503   if (($form->{currency} ne $form->{defaultcurrency}) && !$exchangerate) {
 
 504     if ($form->{vc} eq 'customer') {
 
 505       $form->update_exchangerate($dbh, $form->{currency}, $form->{transdate}, $form->{exchangerate}, 0);
 
 507     if ($form->{vc} eq 'vendor') {
 
 508       $form->update_exchangerate($dbh, $form->{currency}, $form->{transdate}, 0, $form->{exchangerate});
 
 512   $form->{saved_xyznumber} = $form->{$form->{type} =~ /_quotation$/ ?
 
 513                                        "quonumber" : "ordnumber"};
 
 515   Common::webdav_folder($form) if ($main::webdav);
 
 517   my $rc = $dbh->commit;
 
 520   $main::lxdebug->leave_sub();
 
 525 sub _close_quotations_rfqs {
 
 526   $main::lxdebug->enter_sub();
 
 531   Common::check_params(\%params, qw(from_id to_id));
 
 533   my $myconfig = \%main::myconfig;
 
 534   my $form     = $main::form;
 
 536   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
 
 538   my $query    = qq|SELECT quotation FROM oe WHERE id = ?|;
 
 539   my $sth      = prepare_query($form, $dbh, $query);
 
 541   do_statement($form, $sth, $query, conv_i($params{to_id}));
 
 543   my ($quotation) = $sth->fetchrow_array();
 
 546     $main::lxdebug->leave_sub();
 
 552   foreach my $from_id (@{ $params{from_id} }) {
 
 553     $from_id = conv_i($from_id);
 
 554     do_statement($form, $sth, $query, $from_id);
 
 555     ($quotation) = $sth->fetchrow_array();
 
 556     push @close_ids, $from_id if ($quotation);
 
 561   if (scalar @close_ids) {
 
 562     $query = qq|UPDATE oe SET closed = TRUE WHERE id IN (| . join(', ', ('?') x scalar @close_ids) . qq|)|;
 
 563     do_query($form, $dbh, $query, @close_ids);
 
 565     $dbh->commit() unless ($params{dbh});
 
 568   $main::lxdebug->leave_sub();
 
 572   $main::lxdebug->enter_sub();
 
 574   my ($self, $myconfig, $form, $spool) = @_;
 
 576   # connect to database
 
 577   my $dbh = $form->dbconnect_noauto($myconfig);
 
 580   my $query = qq|SELECT s.spoolfile FROM status s | .
 
 581               qq|WHERE s.trans_id = ?|;
 
 582   my @values = (conv_i($form->{id}));
 
 583   $sth = $dbh->prepare($query);
 
 584   $sth->execute(@values) || $self->dberror($query);
 
 589   while (($spoolfile) = $sth->fetchrow_array) {
 
 590     push @spoolfiles, $spoolfile;
 
 595   @values = (conv_i($form->{id}));
 
 597   # delete status entries
 
 598   $query = qq|DELETE FROM status | .
 
 599            qq|WHERE trans_id = ?|;
 
 600   do_query($form, $dbh, $query, @values);
 
 603   $query = qq|DELETE FROM oe | .
 
 605   do_query($form, $dbh, $query, @values);
 
 607   # delete individual entries
 
 608   $query = qq|DELETE FROM orderitems | .
 
 609            qq|WHERE trans_id = ?|;
 
 610   do_query($form, $dbh, $query, @values);
 
 612   $query = qq|DELETE FROM shipto | .
 
 613            qq|WHERE trans_id = ? AND module = 'OE'|;
 
 614   do_query($form, $dbh, $query, @values);
 
 616   my $rc = $dbh->commit;
 
 620     foreach $spoolfile (@spoolfiles) {
 
 621       unlink "$spool/$spoolfile" if $spoolfile;
 
 625   $main::lxdebug->leave_sub();
 
 631   $main::lxdebug->enter_sub();
 
 633   my ($self, $myconfig, $form) = @_;
 
 635   # connect to database
 
 636   my $dbh = $form->dbconnect_noauto($myconfig);
 
 638   my ($query, $query_add, @values, @ids, $sth);
 
 640   # translate the ids (given by id_# and trans_id_#) into one array of ids, so we can join them later
 
 642     push @ids, $form->{"trans_id_$_"}
 
 643       if ($form->{"multi_id_$_"} and $form->{"trans_id_$_"})
 
 644   } (1 .. $form->{"rowcount"});
 
 646   if ($form->{rowcount} && scalar @ids) {
 
 647     $form->{convert_from_oe_ids} = join ' ', @ids;
 
 650   # if called in multi id mode, and still only got one id, switch back to single id
 
 651   if ($form->{"rowcount"} and $#ids == 0) {
 
 652     $form->{"id"} = $ids[0];
 
 658     my $wday         = (localtime(time))[6];
 
 659     my $next_workday = $wday == 5 ? 3 : $wday == 6 ? 2 : 1;
 
 660     $query_add       = qq|, current_date AS transdate, date(current_date + interval '${next_workday} days') AS reqdate|;
 
 663   # get default accounts
 
 664   $query = qq|SELECT (SELECT c.accno FROM chart c WHERE d.inventory_accno_id = c.id) AS inventory_accno,
 
 665                      (SELECT c.accno FROM chart c WHERE d.income_accno_id    = c.id) AS income_accno,
 
 666                      (SELECT c.accno FROM chart c WHERE d.expense_accno_id   = c.id) AS expense_accno,
 
 667                      (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id    = c.id) AS fxgain_accno,
 
 668                      (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id    = c.id) AS fxloss_accno,
 
 672   my $ref = selectfirst_hashref_query($form, $dbh, $query);
 
 673   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 675   ($form->{currency}) = split(/:/, $form->{currencies}) unless ($form->{currency});
 
 677   # set reqdate if this is an invoice->order conversion. If someone knows a better check to ensure
 
 678   # we come from invoices, feel free.
 
 679   $form->{reqdate} = $form->{deliverydate}
 
 680     if (    $form->{deliverydate}
 
 681         and $form->{callback} =~ /action=ar_transactions/);
 
 683   my $vc = $form->{vc} eq "customer" ? "customer" : "vendor";
 
 685   if ($form->{id} or @ids) {
 
 687     # retrieve order for single id
 
 688     # NOTE: this query is intended to fetch all information only ONCE.
 
 689     # so if any of these infos is important (or even different) for any item,
 
 690     # it will be killed out and then has to be fetched from the item scope query further down
 
 692       qq|SELECT o.cp_id, o.ordnumber, o.transdate, o.reqdate,
 
 693            o.taxincluded, o.shippingpoint, o.shipvia, o.notes, o.intnotes,
 
 694            o.curr AS currency, e.name AS employee, o.employee_id, o.salesman_id,
 
 695            o.${vc}_id, cv.name AS ${vc}, o.amount AS invtotal,
 
 696            o.closed, o.reqdate, o.quonumber, o.department_id, o.cusordnumber,
 
 697            d.description AS department, o.payment_id, o.language_id, o.taxzone_id,
 
 698            o.delivery_customer_id, o.delivery_vendor_id, o.proforma, o.shipto_id,
 
 699            o.globalproject_id, o.delivered, o.transaction_description
 
 701          JOIN ${vc} cv ON (o.${vc}_id = cv.id)
 
 702          LEFT JOIN employee e ON (o.employee_id = e.id)
 
 703          LEFT JOIN department d ON (o.department_id = d.id) | .
 
 706          : "WHERE o.id IN (" . join(', ', map("? ", @ids)) . ")"
 
 708     @values = $form->{id} ? ($form->{id}) : @ids;
 
 709     $sth = prepare_execute_query($form, $dbh, $query, @values);
 
 711     $ref = $sth->fetchrow_hashref(NAME_lc);
 
 712     map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 714     $form->{saved_xyznumber} = $form->{$form->{type} =~ /_quotation$/ ?
 
 715                                          "quonumber" : "ordnumber"};
 
 717     # set all entries for multiple ids blank that yield different information
 
 718     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
 719       map { $form->{$_} = '' if ($ref->{$_} ne $form->{$_}) } keys %$ref;
 
 722     # if not given, fill transdate with current_date
 
 723     $form->{transdate} = $form->current_date($myconfig)
 
 724       unless $form->{transdate};
 
 728     if ($form->{delivery_customer_id}) {
 
 729       $query = qq|SELECT name FROM customer WHERE id = ?|;
 
 730       ($form->{delivery_customer_string}) = selectrow_query($form, $dbh, $query, $form->{delivery_customer_id});
 
 733     if ($form->{delivery_vendor_id}) {
 
 734       $query = qq|SELECT name FROM customer WHERE id = ?|;
 
 735       ($form->{delivery_vendor_string}) = selectrow_query($form, $dbh, $query, $form->{delivery_vendor_id});
 
 738     # shipto and pinted/mailed/queued status makes only sense for single id retrieve
 
 740       $query = qq|SELECT s.* FROM shipto s WHERE s.trans_id = ? AND s.module = 'OE'|;
 
 741       $sth = prepare_execute_query($form, $dbh, $query, $form->{id});
 
 743       $ref = $sth->fetchrow_hashref(NAME_lc);
 
 745       map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 748       # get printed, emailed and queued
 
 749       $query = qq|SELECT s.printed, s.emailed, s.spoolfile, s.formname FROM status s WHERE s.trans_id = ?|;
 
 750       $sth = prepare_execute_query($form, $dbh, $query, $form->{id});
 
 752       while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
 753         $form->{printed} .= "$ref->{formname} " if $ref->{printed};
 
 754         $form->{emailed} .= "$ref->{formname} " if $ref->{emailed};
 
 755         $form->{queued}  .= "$ref->{formname} $ref->{spoolfile} " if $ref->{spoolfile};
 
 758       map { $form->{$_} =~ s/ +$//g } qw(printed emailed queued);
 
 761     my %oid = ('Pg'     => 'oid',
 
 762                'Oracle' => 'rowid');
 
 764     my $transdate = $form->{transdate} ? $dbh->quote($form->{transdate}) : "current_date";
 
 766     $form->{taxzone_id} = 0 unless ($form->{taxzone_id});
 
 768     # retrieve individual items
 
 769     # this query looks up all information about the items
 
 770     # stuff different from the whole will not be overwritten, but saved with a suffix.
 
 772       qq|SELECT o.id AS orderitems_id,
 
 773            c1.accno AS inventory_accno, c1.new_chart_id AS inventory_new_chart, date($transdate) - c1.valid_from as inventory_valid,
 
 774            c2.accno AS income_accno,    c2.new_chart_id AS income_new_chart,    date($transdate) - c2.valid_from as income_valid,
 
 775            c3.accno AS expense_accno,   c3.new_chart_id AS expense_new_chart,   date($transdate) - c3.valid_from as expense_valid,
 
 776            oe.ordnumber AS ordnumber_oe, oe.transdate AS transdate_oe, oe.cusordnumber AS cusordnumber_oe,
 
 777            p.partnumber, p.assembly, o.description, o.qty,
 
 778            o.sellprice, o.parts_id AS id, o.unit, o.discount, p.bin, p.notes AS partnotes, p.inventory_accno_id AS part_inventory_accno_id,
 
 779            o.reqdate, o.project_id, o.serialnumber, o.ship, o.lastcost,
 
 780            o.ordnumber, o.transdate, o.cusordnumber, o.subtotal, o.longdescription,
 
 781            o.price_factor_id, o.price_factor, o.marge_price_factor,
 
 782            pr.projectnumber, p.formel,
 
 783            pg.partsgroup, o.pricegroup_id, (SELECT pricegroup FROM pricegroup WHERE id=o.pricegroup_id) as pricegroup
 
 785          JOIN parts p ON (o.parts_id = p.id)
 
 786          JOIN oe ON (o.trans_id = oe.id)
 
 787          LEFT JOIN chart c1 ON ((SELECT inventory_accno_id                   FROM buchungsgruppen WHERE id=p.buchungsgruppen_id) = c1.id)
 
 788          LEFT JOIN chart c2 ON ((SELECT income_accno_id_$form->{taxzone_id}  FROM buchungsgruppen WHERE id=p.buchungsgruppen_id) = c2.id)
 
 789          LEFT JOIN chart c3 ON ((SELECT expense_accno_id_$form->{taxzone_id} FROM buchungsgruppen WHERE id=p.buchungsgruppen_id) = c3.id)
 
 790          LEFT JOIN project pr ON (o.project_id = pr.id)
 
 791          LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id) | .
 
 793        ? qq|WHERE o.trans_id = ?|
 
 794        : qq|WHERE o.trans_id IN (| . join(", ", map("?", @ids)) . qq|)|) .
 
 795       qq|ORDER BY o.$oid{$myconfig->{dbdriver}}|;
 
 797     @ids = $form->{id} ? ($form->{id}) : @ids;
 
 798     $sth = prepare_execute_query($form, $dbh, $query, @values);
 
 800     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
 801       if (!$ref->{"part_inventory_accno_id"}) {
 
 802         map({ delete($ref->{$_}); } qw(inventory_accno inventory_new_chart inventory_valid));
 
 804       delete($ref->{"part_inventory_accno_id"});
 
 806       # in collective order, copy global ordnumber, transdate, cusordnumber into item scope
 
 807       #   unless already present there
 
 808       # remove _oe entries afterwards
 
 809       map { $ref->{$_} = $ref->{"${_}_oe"} if ($ref->{$_} eq '') }
 
 810         qw|ordnumber transdate cusordnumber|
 
 812       map { delete $ref->{$_} } qw|ordnumber_oe transdate_oe cusordnumber_oe|;
 
 816       while ($ref->{inventory_new_chart} && ($ref->{inventory_valid} >= 0)) {
 
 818           qq|SELECT accno AS inventory_accno, | .
 
 819           qq|  new_chart_id AS inventory_new_chart, | .
 
 820           qq|  date($transdate) - valid_from AS inventory_valid | .
 
 821           qq|FROM chart WHERE id = $ref->{inventory_new_chart}|;
 
 822         ($ref->{inventory_accno}, $ref->{inventory_new_chart},
 
 823          $ref->{inventory_valid}) = selectrow_query($form, $dbh, $query);
 
 826       while ($ref->{income_new_chart} && ($ref->{income_valid} >= 0)) {
 
 828           qq|SELECT accno AS income_accno, | .
 
 829           qq|  new_chart_id AS income_new_chart, | .
 
 830           qq|  date($transdate) - valid_from AS income_valid | .
 
 831           qq|FROM chart WHERE id = $ref->{income_new_chart}|;
 
 832         ($ref->{income_accno}, $ref->{income_new_chart},
 
 833          $ref->{income_valid}) = selectrow_query($form, $dbh, $query);
 
 836       while ($ref->{expense_new_chart} && ($ref->{expense_valid} >= 0)) {
 
 838           qq|SELECT accno AS expense_accno, | .
 
 839           qq|  new_chart_id AS expense_new_chart, | .
 
 840           qq|  date($transdate) - valid_from AS expense_valid | .
 
 841           qq|FROM chart WHERE id = $ref->{expense_new_chart}|;
 
 842         ($ref->{expense_accno}, $ref->{expense_new_chart},
 
 843          $ref->{expense_valid}) = selectrow_query($form, $dbh, $query);
 
 846       # delete orderitems_id in collective orders, so that they get cloned no matter what
 
 847       delete $ref->{orderitems_id} if (@ids);
 
 849       # get tax rates and description
 
 850       $accno_id = ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
 
 852         qq|SELECT c.accno, t.taxdescription, t.rate, t.taxnumber | .
 
 853         qq|FROM tax t LEFT JOIN chart c on (c.id = t.chart_id) | .
 
 854         qq|WHERE t.id IN (SELECT tk.tax_id FROM taxkeys tk | .
 
 855         qq|               WHERE tk.chart_id = (SELECT id FROM chart WHERE accno = ?) | .
 
 856         qq|                 AND startdate <= $transdate ORDER BY startdate DESC LIMIT 1) | .
 
 857         qq|ORDER BY c.accno|;
 
 858       $stw = prepare_execute_query($form, $dbh, $query, $accno_id);
 
 859       $ref->{taxaccounts} = "";
 
 861       while ($ptr = $stw->fetchrow_hashref(NAME_lc)) {
 
 862         if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
 
 866         $ref->{taxaccounts} .= "$ptr->{accno} ";
 
 867         if (!($form->{taxaccounts} =~ /\Q$ptr->{accno}\E/)) {
 
 868           $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
 
 869           $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
 
 870           $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber};
 
 871           $form->{taxaccounts} .= "$ptr->{accno} ";
 
 876       chop $ref->{taxaccounts};
 
 877       push @{ $form->{form_details} }, $ref;
 
 885     $form->lastname_used($dbh, $myconfig, $form->{vc})
 
 886       unless $form->{"$form->{vc}_id"};
 
 890   $form->{exchangerate} = $form->get_exchangerate($dbh, $form->{currency}, $form->{transdate}, ($form->{vc} eq 'customer') ? "buy" : "sell");
 
 892   Common::webdav_folder($form) if ($main::webdav);
 
 894   my $rc = $dbh->commit;
 
 897   $main::lxdebug->leave_sub();
 
 903   $main::lxdebug->enter_sub();
 
 905   my ($self, $myconfig, $form) = @_;
 
 907   # connect to database
 
 908   my $dbh = $form->dbconnect($myconfig);
 
 914   my $nodiscount_subtotal = 0;
 
 915   my $discount_subtotal = 0;
 
 921   my $subtotal_header = 0;
 
 924   my %oid = ('Pg'     => 'oid',
 
 925              'Oracle' => 'rowid');
 
 927   my (@project_ids, %projectnumbers);
 
 929   push(@project_ids, $form->{"globalproject_id"}) if ($form->{"globalproject_id"});
 
 931   $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS',
 
 932                    'departments'   => 'ALL_DEPARTMENTS');
 
 935   foreach my $pfac (@{ $form->{ALL_PRICE_FACTORS} }) {
 
 936     $price_factors{$pfac->{id}}  = $pfac;
 
 937     $pfac->{factor}             *= 1;
 
 938     $pfac->{formatted_factor}    = $form->format_amount($myconfig, $pfac->{factor});
 
 942   $form->{department} = ( first { $_->{id} eq $form->{department_id} } @{ $form->{ALL_DEPARTMENTS} } )->{description} || '';
 
 944   # sort items by partsgroup
 
 945   for $i (1 .. $form->{rowcount}) {
 
 947     if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
 
 948       $partsgroup = $form->{"partsgroup_$i"};
 
 950     push @partsgroup, [$i, $partsgroup];
 
 951     push(@project_ids, $form->{"project_id_$i"}) if ($form->{"project_id_$i"});
 
 955     $query = "SELECT id, projectnumber FROM project WHERE id IN (" .
 
 956       join(", ", map("?", @project_ids)) . ")";
 
 957     $sth = prepare_execute_query($form, $dbh, $query, @project_ids);
 
 958     while (my $ref = $sth->fetchrow_hashref()) {
 
 959       $projectnumbers{$ref->{id}} = $ref->{projectnumber};
 
 964   $form->{"globalprojectnumber"} = $projectnumbers{$form->{"globalproject_id"}};
 
 966   $form->{discount} = [];
 
 968   IC->prepare_parts_for_printing();
 
 971     qw(runningnumber number description longdescription qty ship unit bin
 
 972        partnotes serialnumber reqdate sellprice listprice netprice
 
 973        discount p_discount discount_sub nodiscount_sub
 
 974        linetotal  nodiscount_linetotal tax_rate projectnumber
 
 975        price_factor price_factor_name partsgroup);
 
 978   foreach $item (sort { $a->[1] cmp $b->[1] } @partsgroup) {
 
 981     if ($item->[1] ne $sameitem) {
 
 982       push(@{ $form->{description} }, qq|$item->[1]|);
 
 983       $sameitem = $item->[1];
 
 985       map({ push(@{ $form->{$_} }, "") } grep({ $_ ne "description" } @arrays));
 
 988     $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
 
 990     if ($form->{"id_$i"} != 0) {
 
 992       # add number, description and qty to $form->{number}, ....
 
 994       if ($form->{"subtotal_$i"} && !$subtotal_header) {
 
 995         $subtotal_header = $i;
 
 996         $position = int($position);
 
 999       } elsif ($subtotal_header) {
 
1001         $position = int($position);
 
1002         $position = $position.".".$subposition;
 
1004         $position = int($position);
 
1008       my $price_factor = $price_factors{$form->{"price_factor_id_$i"}} || { 'factor' => 1 };
 
1010       push @{ $form->{runningnumber} },     $position;
 
1011       push @{ $form->{number} },            $form->{"partnumber_$i"};
 
1012       push @{ $form->{description} },       $form->{"description_$i"};
 
1013       push @{ $form->{longdescription} },   $form->{"longdescription_$i"};
 
1014       push @{ $form->{qty} },               $form->format_amount($myconfig, $form->{"qty_$i"});
 
1015       push @{ $form->{ship} },              $form->format_amount($myconfig, $form->{"ship_$i"});
 
1016       push @{ $form->{unit} },              $form->{"unit_$i"};
 
1017       push @{ $form->{bin} },               $form->{"bin_$i"};
 
1018       push @{ $form->{partnotes} },         $form->{"partnotes_$i"};
 
1019       push @{ $form->{serialnumber} },      $form->{"serialnumber_$i"};
 
1020       push @{ $form->{reqdate} },           $form->{"reqdate_$i"};
 
1021       push @{ $form->{sellprice} },         $form->{"sellprice_$i"};
 
1022       push @{ $form->{listprice} },         $form->{"listprice_$i"};
 
1023       push @{ $form->{price_factor} },      $price_factor->{formatted_factor};
 
1024       push @{ $form->{price_factor_name} }, $price_factor->{description};
 
1025       push @{ $form->{partsgroup} },        $form->{"partsgroup_$i"};
 
1027       my $sellprice     = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
 
1028       my ($dec)         = ($sellprice =~ /\.(\d+)/);
 
1029       my $decimalplaces = max 2, length($dec);
 
1031       my $parsed_discount      = $form->parse_amount($myconfig, $form->{"discount_$i"});
 
1032       my $linetotal_exact      =                     $form->{"qty_$i"} * $sellprice * (100 - $parsed_discount) / 100 / $price_factor->{factor};
 
1033       my $linetotal            = $form->round_amount($linetotal_exact, 2);
 
1034       my $discount             = $form->round_amount($form->{"qty_$i"} * $sellprice * $parsed_discount / 100 / $price_factor->{factor} - ($linetotal - $linetotal_exact),
 
1036       my $nodiscount_linetotal = $form->round_amount($form->{"qty_$i"} * $sellprice / $price_factor->{factor}, 2);
 
1037       $form->{"netprice_$i"}   = $form->round_amount($form->{"qty_$i"} ? ($linetotal / $form->{"qty_$i"}) : 0, 2);
 
1039       push @{ $form->{netprice} }, ($form->{"netprice_$i"} != 0) ? $form->format_amount($myconfig, $form->{"netprice_$i"}, $decimalplaces) : '';
 
1041       $linetotal = ($linetotal != 0) ? $linetotal : '';
 
1043       push @{ $form->{discount} },  ($discount  != 0) ? $form->format_amount($myconfig, $discount * -1, 2) : '';
 
1044       push @{ $form->{p_discount} }, $form->{"discount_$i"};
 
1046       $form->{ordtotal}         += $linetotal;
 
1047       $form->{nodiscount_total} += $nodiscount_linetotal;
 
1048       $form->{discount_total}   += $discount;
 
1050       if ($subtotal_header) {
 
1051         $discount_subtotal   += $linetotal;
 
1052         $nodiscount_subtotal += $nodiscount_linetotal;
 
1055       if ($form->{"subtotal_$i"} && $subtotal_header && ($subtotal_header != $i)) {
 
1056         push @{ $form->{discount_sub} },   $form->format_amount($myconfig, $discount_subtotal,   2);
 
1057         push @{ $form->{nodiscount_sub} }, $form->format_amount($myconfig, $nodiscount_subtotal, 2);
 
1059         $discount_subtotal   = 0;
 
1060         $nodiscount_subtotal = 0;
 
1061         $subtotal_header     = 0;
 
1064         push @{ $form->{discount_sub} },   "";
 
1065         push @{ $form->{nodiscount_sub} }, "";
 
1068       if (!$form->{"discount_$i"}) {
 
1069         $nodiscount += $linetotal;
 
1072       push @{ $form->{linetotal} }, $form->format_amount($myconfig, $linetotal, 2);
 
1073       push @{ $form->{nodiscount_linetotal} }, $form->format_amount($myconfig, $nodiscount_linetotal, 2);
 
1075       push(@{ $form->{projectnumber} }, $projectnumbers{$form->{"project_id_$i"}});
 
1077       my ($taxamount, $taxbase);
 
1080       map { $taxrate += $form->{"${_}_rate"} } split(/ /, $form->{"taxaccounts_$i"});
 
1082       if ($form->{taxincluded}) {
 
1085         $taxamount = $linetotal * $taxrate / (1 + $taxrate);
 
1086         $taxbase = $linetotal / (1 + $taxrate);
 
1088         $taxamount = $linetotal * $taxrate;
 
1089         $taxbase   = $linetotal;
 
1092       if ($taxamount != 0) {
 
1093         foreach my $accno (split / /, $form->{"taxaccounts_$i"}) {
 
1094           $taxaccounts{$accno} += $taxamount * $form->{"${accno}_rate"} / $taxrate;
 
1095           $taxbase{$accno}     += $taxbase;
 
1099       $tax_rate = $taxrate * 100;
 
1100       push(@{ $form->{tax_rate} }, qq|$tax_rate|);
 
1102       if ($form->{"assembly_$i"}) {
 
1105         # get parts and push them onto the stack
 
1107         if ($form->{groupitems}) {
 
1108           $sortorder = qq|ORDER BY pg.partsgroup, a.$oid{$myconfig->{dbdriver}}|;
 
1110           $sortorder = qq|ORDER BY a.$oid{$myconfig->{dbdriver}}|;
 
1113         $query = qq|SELECT p.partnumber, p.description, p.unit, a.qty, | .
 
1114                        qq|pg.partsgroup | .
 
1115                        qq|FROM assembly a | .
 
1116                              qq|  JOIN parts p ON (a.parts_id = p.id) | .
 
1117                              qq|    LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id) | .
 
1118                              qq|    WHERE a.bom = '1' | .
 
1119                              qq|    AND a.id = ? | . $sortorder;
 
1120                     @values = ($form->{"id_$i"});
 
1121         $sth = $dbh->prepare($query);
 
1122         $sth->execute(@values) || $form->dberror($query);
 
1124         while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1125           if ($form->{groupitems} && $ref->{partsgroup} ne $sameitem) {
 
1126             map({ push(@{ $form->{$_} }, "") } grep({ $_ ne "description" } @arrays));
 
1127             $sameitem = ($ref->{partsgroup}) ? $ref->{partsgroup} : "--";
 
1128             push(@{ $form->{description} }, $sameitem);
 
1131           push(@{ $form->{description} }, $form->format_amount($myconfig, $ref->{qty} * $form->{"qty_$i"}) . qq|, $ref->{partnumber}, $ref->{description}|);
 
1132           map({ push(@{ $form->{$_} }, "") } grep({ $_ ne "description" } @arrays));
 
1141   foreach $item (sort keys %taxaccounts) {
 
1142     push(@{ $form->{taxbase} },
 
1143          $form->format_amount($myconfig, $taxbase{$item}, 2));
 
1145     $tax += $taxamount = $form->round_amount($taxaccounts{$item}, 2);
 
1147     push(@{ $form->{tax} }, $form->format_amount($myconfig, $taxamount, 2));
 
1148     push(@{ $form->{taxdescription} }, $form->{"${item}_description"}  . q{ } . 100 * $form->{"${item}_rate"} . q{%});
 
1149     push(@{ $form->{taxrate} },
 
1150          $form->format_amount($myconfig, $form->{"${item}_rate"} * 100));
 
1151     push(@{ $form->{taxnumber} }, $form->{"${item}_taxnumber"});
 
1154   $form->{nodiscount_subtotal} = $form->format_amount($myconfig, $form->{nodiscount_total}, 2);
 
1155   $form->{discount_total}      = $form->format_amount($myconfig, $form->{discount_total}, 2);
 
1156   $form->{nodiscount}          = $form->format_amount($myconfig, $nodiscount, 2);
 
1157   $form->{yesdiscount}         = $form->format_amount($myconfig, $form->{nodiscount_total} - $nodiscount, 2);
 
1159   if($form->{taxincluded}) {
 
1160     $form->{subtotal} = $form->format_amount($myconfig, $form->{ordtotal} - $tax, 2);
 
1162     $form->{subtotal} = $form->format_amount($myconfig, $form->{ordtotal}, 2);
 
1165   $form->{ordtotal} = ($form->{taxincluded}) ? $form->{ordtotal} : $form->{ordtotal} + $tax;
 
1168   $form->{quototal} = $form->{ordtotal} = $form->format_amount($myconfig, $form->{ordtotal}, 2);
 
1170   if ($form->{type} =~ /_quotation/) {
 
1171     $form->set_payment_options($myconfig, $form->{quodate});
 
1173     $form->set_payment_options($myconfig, $form->{orddate});
 
1176   $form->{username} = $myconfig->{name};
 
1180   $main::lxdebug->leave_sub();
 
1183 sub project_description {
 
1184   $main::lxdebug->enter_sub();
 
1186   my ($self, $dbh, $id) = @_;
 
1188   my $query = qq|SELECT description FROM project WHERE id = ?|;
 
1189   my ($value) = selectrow_query($form, $dbh, $query, $id);
 
1191   $main::lxdebug->leave_sub();