Bei verschachtelten Schleifen in der inneren Schleife eine andere Schleifenvariable...
[kivitendo-erp.git] / SL / OE.pm
1 #====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2004
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (C) 1999-2003
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #  Contributors:
16 #
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.
21 #
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 #======================================================================
30 #
31 # Order entry module
32 # Quotation
33 #======================================================================
34
35 package OE;
36
37 use List::Util qw(max);
38
39 use SL::AM;
40 use SL::Common;
41 use SL::DBUtils;
42 use SL::IC;
43
44 sub transactions {
45   $main::lxdebug->enter_sub();
46
47   my ($self, $myconfig, $form) = @_;
48
49   # connect to database
50   my $dbh = $form->dbconnect($myconfig);
51
52   my $query;
53   my $ordnumber = 'ordnumber';
54   my $quotation = '0';
55
56   my @values;
57   my $where;
58
59   my $rate = ($form->{vc} eq 'customer') ? 'buy' : 'sell';
60
61   if ($form->{type} =~ /_quotation$/) {
62     $quotation = '1';
63     $ordnumber = 'quonumber';
64   }
65
66   my $vc = $form->{vc} eq "customer" ? "customer" : "vendor";
67
68   $query =
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 | .
77     qq|FROM oe o | .
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);
86
87   my ($null, $department_id) = split /--/, $form->{department};
88   if ($department_id) {
89     $query .= qq| AND o.department_id = ?|;
90     push(@values, $department_id);
91   }
92
93   if ($form->{"project_id"}) {
94     $query .=
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"});
99   }
100
101   if ($form->{"${vc}_id"}) {
102     $query .= " AND o.${vc}_id = ?";
103     push(@values, $form->{"${vc}_id"});
104
105   } elsif ($form->{$vc}) {
106     $query .= " AND ct.name ILIKE ?";
107     push(@values, '%' . $form->{$vc} . '%');
108   }
109
110   if ($form->{employee_id}) {
111     $query .= " AND o.employee_id = ?";
112     push @values, conv_i($form->{employee_id});
113   }
114   
115   if ($form->{salesman_id}) {
116     $query .= " AND o.salesman_id = ?";
117     push @values, conv_i($form->{salesman_id});
118   }
119
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'";
124   }
125
126   if (($form->{"notdelivered"} || $form->{"delivered"}) &&
127       ($form->{"notdelivered"} ne $form->{"delivered"})) {
128     $query .= $form->{"delivered"} ?
129       " AND o.delivered " : " AND NOT o.delivered";
130   }
131
132   if ($form->{$ordnumber}) {
133     $query .= qq| AND o.$ordnumber ILIKE ?|;
134     push(@values, '%' . $form->{$ordnumber} . '%');
135   }
136
137   if($form->{transdatefrom}) {
138     $query .= qq| AND o.transdate >= ?|;
139     push(@values, conv_date($form->{transdatefrom}));
140   }
141
142   if($form->{transdateto}) {
143     $query .= qq| AND o.transdate <= ?|;
144     push(@values, conv_date($form->{transdateto}));
145   }
146
147   if ($form->{transaction_description}) {
148     $query .= qq| AND o.transaction_description ILIKE ?|;
149     push(@values, '%' . $form->{transaction_description} . '%');
150   }
151
152   my $sortdir   = !defined $form->{sortdir} ? 'ASC' : $form->{sortdir} ? 'ASC' : 'DESC';
153   my $sortorder = join(', ', map { "${_} ${sortdir} " } ("o.id", $form->sort_columns("transdate", $ordnumber, "name")));
154   my %allowed_sort_columns = (
155     "transdate"               => "o.transdate",
156     "reqdate"                 => "o.reqdate",
157     "id"                      => "o.id",
158     "ordnumber"               => "o.ordnumber",
159     "quonumber"               => "o.quonumber",
160     "name"                    => "ct.name",
161     "employee"                => "e.name",
162     "salesman"                => "e.name",
163     "shipvia"                 => "o.shipvia",
164     "transaction_description" => "o.transaction_description"
165   );
166   if ($form->{sort} && grep($form->{sort}, keys(%allowed_sort_columns))) {
167     $sortorder = $allowed_sort_columns{$form->{sort}} . " ${sortdir}";
168   }
169   $query .= qq| ORDER by | . $sortorder;
170
171   my $sth = $dbh->prepare($query);
172   $sth->execute(@values) ||
173     $form->dberror($query . " (" . join(", ", @values) . ")");
174
175   my %id = ();
176   $form->{OE} = [];
177   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
178     $ref->{exchangerate} = 1 unless $ref->{exchangerate};
179     push @{ $form->{OE} }, $ref if $ref->{id} != $id{ $ref->{id} };
180     $id{ $ref->{id} } = $ref->{id};
181   }
182
183   $sth->finish;
184   $dbh->disconnect;
185
186   $main::lxdebug->leave_sub();
187 }
188
189 sub transactions_for_todo_list {
190   $main::lxdebug->enter_sub();
191
192   my $self     = shift;
193   my %params   = @_;
194
195   my $myconfig = \%main::myconfig;
196   my $form     = $main::form;
197
198   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
199
200   my $query    = qq|SELECT id FROM employee WHERE login = ?|;
201   my ($e_id)   = selectrow_query($form, $dbh, $query, $form->{login});
202
203   $query       =
204     qq|SELECT oe.id, oe.transdate, oe.reqdate, oe.quonumber, oe.transaction_description, oe.amount,
205          CASE WHEN (COALESCE(oe.customer_id, 0) = 0) THEN 'vendor' ELSE 'customer' END AS vc,
206          c.name AS customer,
207          v.name AS vendor,
208          e.name AS employee
209        FROM oe
210        LEFT JOIN customer c ON (oe.customer_id = c.id)
211        LEFT JOIN vendor v   ON (oe.vendor_id   = v.id)
212        LEFT JOIN employee e ON (oe.employee_id = e.id)
213        WHERE (COALESCE(quotation, FALSE) = TRUE)
214          AND (COALESCE(closed,    FALSE) = FALSE)
215          AND ((oe.employee_id = ?) OR (oe.salesman_id = ?))
216          AND NOT (oe.reqdate ISNULL)
217          AND (oe.reqdate < current_date)
218        ORDER BY transdate|;
219
220   my $quotations = selectall_hashref_query($form, $dbh, $query, $e_id, $e_id);
221
222   $main::lxdebug->leave_sub();
223
224   return $quotations;
225 }
226
227 sub save {
228   $main::lxdebug->enter_sub();
229
230   my ($self, $myconfig, $form) = @_;
231
232   # connect to database, turn off autocommit
233   my $dbh = $form->dbconnect_noauto($myconfig);
234
235   my ($query, @values, $sth, $null);
236   my $exchangerate = 0;
237
238   my $all_units = AM->retrieve_units($myconfig, $form);
239   $form->{all_units} = $all_units;
240
241   $form->{employee_id} = (split /--/, $form->{employee})[1] if !$form->{employee_id};
242   unless ($form->{employee_id}) {
243     $form->get_employee($dbh);
244   }
245
246   my $ml = ($form->{type} eq 'sales_order') ? 1 : -1;
247
248   if ($form->{id}) {
249
250     $query = qq|DELETE FROM orderitems WHERE trans_id = ?|;
251     do_query($form, $dbh, $query, $form->{id});
252
253     $query = qq|DELETE FROM shipto | .
254              qq|WHERE trans_id = ? AND module = 'OE'|;
255     do_query($form, $dbh, $query, $form->{id});
256
257   } else {
258
259     $query = qq|SELECT nextval('id')|;
260     ($form->{id}) = selectrow_query($form, $dbh, $query);
261
262     $query = qq|INSERT INTO oe (id, ordnumber, employee_id) VALUES (?, '', ?)|;
263     do_query($form, $dbh, $query, $form->{id}, $form->{employee_id});
264   }
265
266   my $amount    = 0;
267   my $linetotal = 0;
268   my $discount  = 0;
269   my $project_id;
270   my $reqdate;
271   my $taxrate;
272   my $taxamount = 0;
273   my $fxsellprice;
274   my %taxbase;
275   my @taxaccounts;
276   my %taxaccounts;
277   my $netamount = 0;
278
279   $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
280   my %price_factors = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
281   my $price_factor;
282
283   for my $i (1 .. $form->{rowcount}) {
284
285     map({ $form->{"${_}_$i"} = $form->parse_amount($myconfig, $form->{"${_}_$i"}) } qw(qty ship));
286
287     if ($form->{"id_$i"}) {
288
289       # get item baseunit
290       $query = qq|SELECT unit FROM parts WHERE id = ?|;
291       my ($item_unit) = selectrow_query($form, $dbh, $query, $form->{"id_$i"});
292
293       my $basefactor = 1;
294       if (defined($all_units->{$item_unit}->{factor}) &&
295           (($all_units->{$item_unit}->{factor} * 1) != 0)) {
296         $basefactor = $all_units->{$form->{"unit_$i"}}->{factor} / $all_units->{$item_unit}->{factor};
297       }
298       my $baseqty = $form->{"qty_$i"} * $basefactor;
299
300       $form->{"marge_percent_$i"} = $form->parse_amount($myconfig, $form->{"marge_percent_$i"}) * 1;
301       $form->{"marge_total_$i"} = $form->parse_amount($myconfig, $form->{"marge_total_$i"}) * 1;
302       $form->{"lastcost_$i"} = $form->{"lastcost_$i"} * 1;
303
304       # set values to 0 if nothing entered
305       $form->{"discount_$i"} = $form->parse_amount($myconfig, $form->{"discount_$i"}) / 100;
306
307       $form->{"sellprice_$i"} = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
308       $fxsellprice = $form->{"sellprice_$i"};
309
310       my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
311       $dec = length($dec);
312       my $decimalplaces = ($dec > 2) ? $dec : 2;
313
314       $discount = $form->round_amount($form->{"sellprice_$i"} * $form->{"discount_$i"}, $decimalplaces);
315       $form->{"sellprice_$i"} = $form->round_amount($form->{"sellprice_$i"} - $discount, $decimalplaces);
316
317       $form->{"inventory_accno_$i"} *= 1;
318       $form->{"expense_accno_$i"}   *= 1;
319
320       $price_factor = $price_factors{ $form->{"price_factor_id_$i"} } || 1;
321       $linetotal    = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2);
322
323       @taxaccounts = split(/ /, $form->{"taxaccounts_$i"});
324       $taxrate     = 0;
325       $taxdiff     = 0;
326
327       map { $taxrate += $form->{"${_}_rate"} } @taxaccounts;
328
329       if ($form->{taxincluded}) {
330         $taxamount = $linetotal * $taxrate / (1 + $taxrate);
331         $taxbase   = $linetotal - $taxamount;
332
333         # we are not keeping a natural price, do not round
334         $form->{"sellprice_$i"} =
335           $form->{"sellprice_$i"} * (1 / (1 + $taxrate));
336       } else {
337         $taxamount = $linetotal * $taxrate;
338         $taxbase   = $linetotal;
339       }
340
341       if ($form->round_amount($taxrate, 7) == 0) {
342         if ($form->{taxincluded}) {
343           foreach $item (@taxaccounts) {
344             $taxamount = $form->round_amount($linetotal * $form->{"${item}_rate"} / (1 + abs($form->{"${item}_rate"})), 2);
345             $taxaccounts{$item} += $taxamount;
346             $taxdiff            += $taxamount;
347             $taxbase{$item}     += $taxbase;
348           }
349           $taxaccounts{ $taxaccounts[0] } += $taxdiff;
350         } else {
351           foreach $item (@taxaccounts) {
352             $taxaccounts{$item} += $linetotal * $form->{"${item}_rate"};
353             $taxbase{$item}     += $taxbase;
354           }
355         }
356       } else {
357         foreach $item (@taxaccounts) {
358           $taxaccounts{$item} += $taxamount * $form->{"${item}_rate"} / $taxrate;
359           $taxbase{$item} += $taxbase;
360         }
361       }
362
363       $netamount += $form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor;
364
365       $reqdate = ($form->{"reqdate_$i"}) ? $form->{"reqdate_$i"} : undef;
366
367       # get pricegroup_id and save ist
368       ($null, my $pricegroup_id) = split(/--/, $form->{"sellprice_pg_$i"});
369       $pricegroup_id *= 1;
370
371       # save detail record in orderitems table
372       @values = ();
373       $query = qq|INSERT INTO orderitems (|;
374       if ($form->{"orderitems_id_$i"}) {
375         $query .= "id, ";
376       }
377       $query .= qq|trans_id, parts_id, description, longdescription, qty, base_qty, | .
378                 qq|sellprice, discount, unit, reqdate, project_id, serialnumber, ship, | .
379                 qq|pricegroup_id, ordnumber, transdate, cusordnumber, subtotal, | .
380                 qq|marge_percent, marge_total, lastcost, price_factor_id, price_factor, marge_price_factor) | .
381                 qq|VALUES (|;
382       if($form->{"orderitems_id_$i"}) {
383         $query .= qq|?,|;
384         push(@values, $form->{"orderitems_id_$i"});
385       }
386       $query .= qq|?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,
387                    (SELECT factor FROM price_factors WHERE id = ?), ?)|;
388       push(@values,
389            conv_i($form->{id}), conv_i($form->{"id_$i"}),
390            $form->{"description_$i"}, $form->{"longdescription_$i"},
391            $form->{"qty_$i"}, $baseqty,
392            $fxsellprice, $form->{"discount_$i"},
393            $form->{"unit_$i"}, conv_date($reqdate), conv_i($form->{"project_id_$i"}),
394            $form->{"serialnumber_$i"}, $form->{"ship_$i"}, conv_i($pricegroup_id),
395            $form->{"ordnumber_$i"}, conv_date($form->{"transdate_$i"}),
396            $form->{"cusordnumber_$i"}, $form->{"subtotal_$i"} ? 't' : 'f',
397            $form->{"marge_percent_$i"}, $form->{"marge_total_$i"},
398            $form->{"lastcost_$i"},
399            conv_i($form->{"price_factor_id_$i"}), conv_i($form->{"price_factor_id_$i"}),
400            conv_i($form->{"marge_price_factor_$i"}));
401       do_query($form, $dbh, $query, @values);
402
403       $form->{"sellprice_$i"} = $fxsellprice;
404       $form->{"discount_$i"} *= 100;
405     }
406   }
407
408   $reqdate = ($form->{reqdate}) ? $form->{reqdate} : undef;
409
410   # add up the tax
411   my $tax = 0;
412   map { $tax += $form->round_amount($taxaccounts{$_}, 2) } keys %taxaccounts;
413
414   $amount = $form->round_amount($netamount + $tax, 2);
415   $netamount = $form->round_amount($netamount, 2);
416
417   if ($form->{currency} eq $form->{defaultcurrency}) {
418     $form->{exchangerate} = 1;
419   } else {
420     $exchangerate = $form->check_exchangerate($myconfig, $form->{currency}, $form->{transdate}, ($form->{vc} eq 'customer') ? 'buy' : 'sell');
421   }
422
423   $form->{exchangerate} = $exchangerate || $form->parse_amount($myconfig, $form->{exchangerate});
424
425   my $quotation = $form->{type} =~ /_order$/ ? 'f' : 't';
426
427   ($null, $form->{department_id}) = split(/--/, $form->{department}) if $form->{department};
428
429   # save OE record
430   $query =
431     qq|UPDATE oe SET
432          ordnumber = ?, quonumber = ?, cusordnumber = ?, transdate = ?, vendor_id = ?,
433          customer_id = ?, amount = ?, netamount = ?, reqdate = ?, taxincluded = ?,
434          shippingpoint = ?, shipvia = ?, notes = ?, intnotes = ?, curr = ?, closed = ?,
435          delivered = ?, proforma = ?, quotation = ?, department_id = ?, language_id = ?,
436          taxzone_id = ?, shipto_id = ?, payment_id = ?, delivery_vendor_id = ?, delivery_customer_id = ?,
437          globalproject_id = ?, employee_id = ?, salesman_id = ?, cp_id = ?, transaction_description = ?, marge_total = ?, marge_percent = ?
438        WHERE id = ?|;
439
440   @values = ($form->{ordnumber}, $form->{quonumber},
441              $form->{cusordnumber}, conv_date($form->{transdate}),
442              conv_i($form->{vendor_id}), conv_i($form->{customer_id}),
443              $amount, $netamount, conv_date($reqdate),
444              $form->{taxincluded} ? 't' : 'f', $form->{shippingpoint},
445              $form->{shipvia}, $form->{notes}, $form->{intnotes},
446              substr($form->{currency}, 0, 3), $form->{closed} ? 't' : 'f',
447              $form->{delivered} ? "t" : "f", $form->{proforma} ? 't' : 'f',
448              $quotation, conv_i($form->{department_id}),
449              conv_i($form->{language_id}), conv_i($form->{taxzone_id}),
450              conv_i($form->{shipto_id}), conv_i($form->{payment_id}),
451              conv_i($form->{delivery_vendor_id}),
452              conv_i($form->{delivery_customer_id}),
453              conv_i($form->{globalproject_id}), conv_i($form->{employee_id}),
454              conv_i($form->{salesman_id}), conv_i($form->{cp_id}),
455              $form->{transaction_description},
456              $form->{marge_total} * 1, $form->{marge_percent} * 1,
457              conv_i($form->{id}));
458   do_query($form, $dbh, $query, @values);
459
460   $form->{ordtotal} = $amount;
461
462   # add shipto
463   $form->{name} = $form->{ $form->{vc} };
464   $form->{name} =~ s/--\Q$form->{"$form->{vc}_id"}\E//;
465
466   if (!$form->{shipto_id}) {
467     $form->add_shipto($dbh, $form->{id}, "OE");
468   }
469
470   # save printed, emailed, queued
471   $form->save_status($dbh);
472
473   # Link this record to the records it was created from.
474   $form->{convert_from_oe_ids} =~ s/^\s+//;
475   $form->{convert_from_oe_ids} =~ s/\s+$//;
476   my @convert_from_oe_ids      =  split m/\s+/, $form->{convert_from_oe_ids};
477   delete $form->{convert_from_oe_ids};
478
479   if (scalar @convert_from_oe_ids) {
480     RecordLinks->create_links('dbh'        => $dbh,
481                               'mode'       => 'ids',
482                               'from_table' => 'oe',
483                               'from_ids'   => \@convert_from_oe_ids,
484                               'to_table'   => 'oe',
485                               'to_id'      => $form->{id},
486       );
487
488     $self->_close_quotations_rfqs('dbh'     => $dbh,
489                                   'from_id' => \@convert_from_oe_ids,
490                                   'to_id'   => $form->{id});
491   }
492
493   if (($form->{currency} ne $form->{defaultcurrency}) && !$exchangerate) {
494     if ($form->{vc} eq 'customer') {
495       $form->update_exchangerate($dbh, $form->{currency}, $form->{transdate}, $form->{exchangerate}, 0);
496     }
497     if ($form->{vc} eq 'vendor') {
498       $form->update_exchangerate($dbh, $form->{currency}, $form->{transdate}, 0, $form->{exchangerate});
499     }
500   }
501
502   $form->{saved_xyznumber} = $form->{$form->{type} =~ /_quotation$/ ?
503                                        "quonumber" : "ordnumber"};
504
505   Common::webdav_folder($form) if ($main::webdav);
506
507   my $rc = $dbh->commit;
508   $dbh->disconnect;
509
510   $main::lxdebug->leave_sub();
511
512   return $rc;
513 }
514
515 sub _close_quotations_rfqs {
516   $main::lxdebug->enter_sub();
517
518   my $self     = shift;
519   my %params   = @_;
520
521   Common::check_params(\%params, qw(from_id to_id));
522
523   my $myconfig = \%main::myconfig;
524   my $form     = $main::form;
525
526   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
527
528   my $query    = qq|SELECT quotation FROM oe WHERE id = ?|;
529   my $sth      = prepare_query($form, $dbh, $query);
530
531   do_statement($form, $sth, $query, conv_i($params{to_id}));
532
533   my ($quotation) = $sth->fetchrow_array();
534
535   if ($quotation) {
536     $main::lxdebug->leave_sub();
537     return;
538   }
539
540   my @close_ids;
541
542   foreach my $from_id (@{ $params{from_id} }) {
543     $from_id = conv_i($from_id);
544     do_statement($form, $sth, $query, $from_id);
545     ($quotation) = $sth->fetchrow_array();
546     push @close_ids, $from_id if ($quotation);
547   }
548
549   $sth->finish();
550
551   if (scalar @close_ids) {
552     $query = qq|UPDATE oe SET closed = TRUE WHERE id IN (| . join(', ', ('?') x scalar @close_ids) . qq|)|;
553     do_query($form, $dbh, $query, @close_ids);
554
555     $dbh->commit() unless ($params{dbh});
556   }
557
558   $main::lxdebug->leave_sub();
559 }
560
561 sub delete {
562   $main::lxdebug->enter_sub();
563
564   my ($self, $myconfig, $form, $spool) = @_;
565
566   # connect to database
567   my $dbh = $form->dbconnect_noauto($myconfig);
568
569   # delete spool files
570   my $query = qq|SELECT s.spoolfile FROM status s | .
571               qq|WHERE s.trans_id = ?|;
572   my @values = (conv_i($form->{id}));
573   $sth = $dbh->prepare($query);
574   $sth->execute(@values) || $self->dberror($query);
575
576   my $spoolfile;
577   my @spoolfiles = ();
578
579   while (($spoolfile) = $sth->fetchrow_array) {
580     push @spoolfiles, $spoolfile;
581   }
582   $sth->finish;
583
584   # delete-values
585   @values = (conv_i($form->{id}));
586
587   # delete status entries
588   $query = qq|DELETE FROM status | .
589            qq|WHERE trans_id = ?|;
590   do_query($form, $dbh, $query, @values);
591
592   # delete OE record
593   $query = qq|DELETE FROM oe | .
594            qq|WHERE id = ?|;
595   do_query($form, $dbh, $query, @values);
596
597   # delete individual entries
598   $query = qq|DELETE FROM orderitems | .
599            qq|WHERE trans_id = ?|;
600   do_query($form, $dbh, $query, @values);
601
602   $query = qq|DELETE FROM shipto | .
603            qq|WHERE trans_id = ? AND module = 'OE'|;
604   do_query($form, $dbh, $query, @values);
605
606   my $rc = $dbh->commit;
607   $dbh->disconnect;
608
609   if ($rc) {
610     foreach $spoolfile (@spoolfiles) {
611       unlink "$spool/$spoolfile" if $spoolfile;
612     }
613   }
614
615   $main::lxdebug->leave_sub();
616
617   return $rc;
618 }
619
620 sub retrieve {
621   $main::lxdebug->enter_sub();
622
623   my ($self, $myconfig, $form) = @_;
624
625   # connect to database
626   my $dbh = $form->dbconnect_noauto($myconfig);
627
628   my ($query, $query_add, @values, @ids, $sth);
629
630   # translate the ids (given by id_# and trans_id_#) into one array of ids, so we can join them later
631   map {
632     push @ids, $form->{"trans_id_$_"}
633       if ($form->{"multi_id_$_"} and $form->{"trans_id_$_"})
634   } (1 .. $form->{"rowcount"});
635
636   if ($form->{rowcount} && scalar @ids) {
637     $form->{convert_from_oe_ids} = join ' ', @ids;
638   }
639
640   # if called in multi id mode, and still only got one id, switch back to single id
641   if ($form->{"rowcount"} and $#ids == 0) {
642     $form->{"id"} = $ids[0];
643     undef @ids;
644   }
645
646   my $query_add = '';
647   if (!$form->{id}) {
648     my $wday         = (localtime(time))[6];
649     my $next_workday = $wday == 5 ? 3 : $wday == 6 ? 2 : 1;
650     $query_add       = qq|, current_date AS transdate, date(current_date + interval '${next_workday} days') AS reqdate|;
651   }
652
653   # get default accounts
654   $query = qq|SELECT (SELECT c.accno FROM chart c WHERE d.inventory_accno_id = c.id) AS inventory_accno,
655                      (SELECT c.accno FROM chart c WHERE d.income_accno_id    = c.id) AS income_accno,
656                      (SELECT c.accno FROM chart c WHERE d.expense_accno_id   = c.id) AS expense_accno,
657                      (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id    = c.id) AS fxgain_accno,
658                      (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id    = c.id) AS fxloss_accno,
659               d.curr AS currencies
660               $query_add
661               FROM defaults d|;
662   my $ref = selectfirst_hashref_query($form, $dbh, $query);
663   map { $form->{$_} = $ref->{$_} } keys %$ref;
664
665   ($form->{currency}) = split(/:/, $form->{currencies}) unless ($form->{currency});
666
667   # set reqdate if this is an invoice->order conversion. If someone knows a better check to ensure
668   # we come from invoices, feel free.
669   $form->{reqdate} = $form->{deliverydate}
670     if (    $form->{deliverydate}
671         and $form->{callback} =~ /action=ar_transactions/);
672
673   my $vc = $form->{vc} eq "customer" ? "customer" : "vendor";
674
675   if ($form->{id} or @ids) {
676
677     # retrieve order for single id
678     # NOTE: this query is intended to fetch all information only ONCE.
679     # so if any of these infos is important (or even different) for any item,
680     # it will be killed out and then has to be fetched from the item scope query further down
681     $query =
682       qq|SELECT o.cp_id, o.ordnumber, o.transdate, o.reqdate,
683            o.taxincluded, o.shippingpoint, o.shipvia, o.notes, o.intnotes,
684            o.curr AS currency, e.name AS employee, o.employee_id, o.salesman_id,
685            o.${vc}_id, cv.name AS ${vc}, o.amount AS invtotal,
686            o.closed, o.reqdate, o.quonumber, o.department_id, o.cusordnumber,
687            d.description AS department, o.payment_id, o.language_id, o.taxzone_id,
688            o.delivery_customer_id, o.delivery_vendor_id, o.proforma, o.shipto_id,
689            o.globalproject_id, o.delivered, o.transaction_description
690          FROM oe o
691          JOIN ${vc} cv ON (o.${vc}_id = cv.id)
692          LEFT JOIN employee e ON (o.employee_id = e.id)
693          LEFT JOIN department d ON (o.department_id = d.id) | .
694         ($form->{id} 
695          ? "WHERE o.id = ?" 
696          : "WHERE o.id IN (" . join(', ', map("? ", @ids)) . ")"
697         );
698     @values = $form->{id} ? ($form->{id}) : @ids;
699     $sth = prepare_execute_query($form, $dbh, $query, @values);
700
701     $ref = $sth->fetchrow_hashref(NAME_lc);
702     map { $form->{$_} = $ref->{$_} } keys %$ref;
703
704     $form->{saved_xyznumber} = $form->{$form->{type} =~ /_quotation$/ ?
705                                          "quonumber" : "ordnumber"};
706
707     # set all entries for multiple ids blank that yield different information
708     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
709       map { $form->{$_} = '' if ($ref->{$_} ne $form->{$_}) } keys %$ref;
710     }
711
712     # if not given, fill transdate with current_date
713     $form->{transdate} = $form->current_date($myconfig)
714       unless $form->{transdate};
715
716     $sth->finish;
717
718     if ($form->{delivery_customer_id}) {
719       $query = qq|SELECT name FROM customer WHERE id = ?|;
720       ($form->{delivery_customer_string}) = selectrow_query($form, $dbh, $query, $form->{delivery_customer_id});
721     }
722
723     if ($form->{delivery_vendor_id}) {
724       $query = qq|SELECT name FROM customer WHERE id = ?|;
725       ($form->{delivery_vendor_string}) = selectrow_query($form, $dbh, $query, $form->{delivery_vendor_id});
726     }
727
728     # shipto and pinted/mailed/queued status makes only sense for single id retrieve
729     if (!@ids) {
730       $query = qq|SELECT s.* FROM shipto s WHERE s.trans_id = ? AND s.module = 'OE'|;
731       $sth = prepare_execute_query($form, $dbh, $query, $form->{id});
732
733       $ref = $sth->fetchrow_hashref(NAME_lc);
734       delete($ref->{id});
735       map { $form->{$_} = $ref->{$_} } keys %$ref;
736       $sth->finish;
737
738       # get printed, emailed and queued
739       $query = qq|SELECT s.printed, s.emailed, s.spoolfile, s.formname FROM status s WHERE s.trans_id = ?|;
740       $sth = prepare_execute_query($form, $dbh, $query, $form->{id});
741
742       while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
743         $form->{printed} .= "$ref->{formname} " if $ref->{printed};
744         $form->{emailed} .= "$ref->{formname} " if $ref->{emailed};
745         $form->{queued}  .= "$ref->{formname} $ref->{spoolfile} " if $ref->{spoolfile};
746       }
747       $sth->finish;
748       map { $form->{$_} =~ s/ +$//g } qw(printed emailed queued);
749     }    # if !@ids
750
751     my %oid = ('Pg'     => 'oid',
752                'Oracle' => 'rowid');
753
754     my $transdate = $form->{transdate} ? $dbh->quote($form->{transdate}) : "current_date";
755
756     $form->{taxzone_id} = 0 unless ($form->{taxzone_id});
757
758     # retrieve individual items
759     # this query looks up all information about the items
760     # stuff different from the whole will not be overwritten, but saved with a suffix.
761     $query =
762       qq|SELECT o.id AS orderitems_id,
763            c1.accno AS inventory_accno, c1.new_chart_id AS inventory_new_chart, date($transdate) - c1.valid_from as inventory_valid, 
764            c2.accno AS income_accno,    c2.new_chart_id AS income_new_chart,    date($transdate) - c2.valid_from as income_valid,
765            c3.accno AS expense_accno,   c3.new_chart_id AS expense_new_chart,   date($transdate) - c3.valid_from as expense_valid,
766            oe.ordnumber AS ordnumber_oe, oe.transdate AS transdate_oe, oe.cusordnumber AS cusordnumber_oe,
767            p.partnumber, p.assembly, o.description, o.qty,
768            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,
769            o.reqdate, o.project_id, o.serialnumber, o.ship, o.lastcost,
770            o.ordnumber, o.transdate, o.cusordnumber, o.subtotal, o.longdescription,
771            o.price_factor_id, o.price_factor, o.marge_price_factor,
772            pr.projectnumber, p.formel,
773            pg.partsgroup, o.pricegroup_id, (SELECT pricegroup FROM pricegroup WHERE id=o.pricegroup_id) as pricegroup
774          FROM orderitems o
775          JOIN parts p ON (o.parts_id = p.id)
776          JOIN oe ON (o.trans_id = oe.id)
777          LEFT JOIN chart c1 ON ((SELECT inventory_accno_id                   FROM buchungsgruppen WHERE id=p.buchungsgruppen_id) = c1.id)
778          LEFT JOIN chart c2 ON ((SELECT income_accno_id_$form->{taxzone_id}  FROM buchungsgruppen WHERE id=p.buchungsgruppen_id) = c2.id)
779          LEFT JOIN chart c3 ON ((SELECT expense_accno_id_$form->{taxzone_id} FROM buchungsgruppen WHERE id=p.buchungsgruppen_id) = c3.id)
780          LEFT JOIN project pr ON (o.project_id = pr.id)
781          LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id) | .
782       ($form->{id}
783        ? qq|WHERE o.trans_id = ?|
784        : qq|WHERE o.trans_id IN (| . join(", ", map("?", @ids)) . qq|)|) .
785       qq|ORDER BY o.$oid{$myconfig->{dbdriver}}|;
786
787     @ids = $form->{id} ? ($form->{id}) : @ids;
788     $sth = prepare_execute_query($form, $dbh, $query, @values);
789
790     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
791       if (!$ref->{"part_inventory_accno_id"}) {
792         map({ delete($ref->{$_}); } qw(inventory_accno inventory_new_chart inventory_valid));
793       }
794       delete($ref->{"part_inventory_accno_id"});
795
796       # in collective order, copy global ordnumber, transdate, cusordnumber into item scope
797       #   unless already present there
798       # remove _oe entries afterwards
799       map { $ref->{$_} = $ref->{"${_}_oe"} if ($ref->{$_} eq '') }
800         qw|ordnumber transdate cusordnumber|
801         if (@ids);
802       map { delete $ref->{$_} } qw|ordnumber_oe transdate_oe cusordnumber_oe|;
803
804
805
806       while ($ref->{inventory_new_chart} && ($ref->{inventory_valid} >= 0)) {
807         my $query =
808           qq|SELECT accno AS inventory_accno, | .
809           qq|  new_chart_id AS inventory_new_chart, | .
810           qq|  date($transdate) - valid_from AS inventory_valid | .
811           qq|FROM chart WHERE id = $ref->{inventory_new_chart}|;
812         ($ref->{inventory_accno}, $ref->{inventory_new_chart},
813          $ref->{inventory_valid}) = selectrow_query($form, $dbh, $query);
814       }
815
816       while ($ref->{income_new_chart} && ($ref->{income_valid} >= 0)) {
817         my $query =
818           qq|SELECT accno AS income_accno, | .
819           qq|  new_chart_id AS income_new_chart, | .
820           qq|  date($transdate) - valid_from AS income_valid | .
821           qq|FROM chart WHERE id = $ref->{income_new_chart}|;
822         ($ref->{income_accno}, $ref->{income_new_chart},
823          $ref->{income_valid}) = selectrow_query($form, $dbh, $query);
824       }
825
826       while ($ref->{expense_new_chart} && ($ref->{expense_valid} >= 0)) {
827         my $query =
828           qq|SELECT accno AS expense_accno, | .
829           qq|  new_chart_id AS expense_new_chart, | .
830           qq|  date($transdate) - valid_from AS expense_valid | .
831           qq|FROM chart WHERE id = $ref->{expense_new_chart}|;
832         ($ref->{expense_accno}, $ref->{expense_new_chart},
833          $ref->{expense_valid}) = selectrow_query($form, $dbh, $query);
834       }
835
836       # delete orderitems_id in collective orders, so that they get cloned no matter what
837       delete $ref->{orderitems_id} if (@ids);
838
839       # get tax rates and description
840       $accno_id = ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
841       $query =
842         qq|SELECT c.accno, t.taxdescription, t.rate, t.taxnumber | .
843         qq|FROM tax t LEFT JOIN chart c on (c.id = t.chart_id) | .
844         qq|WHERE t.id IN (SELECT tk.tax_id FROM taxkeys tk | .
845         qq|               WHERE tk.chart_id = (SELECT id FROM chart WHERE accno = ?) | .
846         qq|                 AND startdate <= $transdate ORDER BY startdate DESC LIMIT 1) | .
847         qq|ORDER BY c.accno|;
848       $stw = prepare_execute_query($form, $dbh, $query, $accno_id);
849       $ref->{taxaccounts} = "";
850       my $i = 0;
851       while ($ptr = $stw->fetchrow_hashref(NAME_lc)) {
852         if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
853           $i++;
854           $ptr->{accno} = $i;
855         }
856         $ref->{taxaccounts} .= "$ptr->{accno} ";
857         if (!($form->{taxaccounts} =~ /\Q$ptr->{accno}\E/)) {
858           $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
859           $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
860           $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber};
861           $form->{taxaccounts} .= "$ptr->{accno} ";
862         }
863
864       }
865
866       chop $ref->{taxaccounts};
867       push @{ $form->{form_details} }, $ref;
868       $stw->finish;
869     }
870     $sth->finish;
871
872   } else {
873
874     # get last name used
875     $form->lastname_used($dbh, $myconfig, $form->{vc})
876       unless $form->{"$form->{vc}_id"};
877
878   }
879
880   $form->{exchangerate} = $form->get_exchangerate($dbh, $form->{currency}, $form->{transdate}, ($form->{vc} eq 'customer') ? "buy" : "sell");
881
882   Common::webdav_folder($form) if ($main::webdav);
883
884   my $rc = $dbh->commit;
885   $dbh->disconnect;
886
887   $main::lxdebug->leave_sub();
888
889   return $rc;
890 }
891
892 sub order_details {
893   $main::lxdebug->enter_sub();
894
895   my ($self, $myconfig, $form) = @_;
896
897   # connect to database
898   my $dbh = $form->dbconnect($myconfig);
899   my $query;
900   my @values = ();
901   my $sth;
902   my $nodiscount;
903   my $yesdiscount;
904   my $nodiscount_subtotal = 0;
905   my $discount_subtotal = 0;
906   my $item;
907   my $i;
908   my @partsgroup = ();
909   my $partsgroup;
910   my $position = 0;
911   my $subtotal_header = 0;
912   my $subposition = 0;
913
914   my %oid = ('Pg'     => 'oid',
915              'Oracle' => 'rowid');
916
917   my (@project_ids, %projectnumbers);
918
919   push(@project_ids, $form->{"globalproject_id"}) if ($form->{"globalproject_id"});
920
921   $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
922   my %price_factors;
923
924   foreach my $pfac (@{ $form->{ALL_PRICE_FACTORS} }) {
925     $price_factors{$pfac->{id}}  = $pfac;
926     $pfac->{factor}             *= 1;
927     $pfac->{formatted_factor}    = $form->format_amount($myconfig, $pfac->{factor});
928   }
929
930   # sort items by partsgroup
931   for $i (1 .. $form->{rowcount}) {
932     $partsgroup = "";
933     if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
934       $partsgroup = $form->{"partsgroup_$i"};
935     }
936     push @partsgroup, [$i, $partsgroup];
937     push(@project_ids, $form->{"project_id_$i"}) if ($form->{"project_id_$i"});
938   }
939
940   if (@project_ids) {
941     $query = "SELECT id, projectnumber FROM project WHERE id IN (" .
942       join(", ", map("?", @project_ids)) . ")";
943     $sth = prepare_execute_query($form, $dbh, $query, @project_ids);
944     while (my $ref = $sth->fetchrow_hashref()) {
945       $projectnumbers{$ref->{id}} = $ref->{projectnumber};
946     }
947     $sth->finish();
948   }
949
950   $form->{"globalprojectnumber"} = $projectnumbers{$form->{"globalproject_id"}};
951
952   $form->{discount} = [];
953
954   IC->prepare_parts_for_printing();
955
956   my @arrays =
957     qw(runningnumber number description longdescription qty ship unit bin
958        partnotes serialnumber reqdate sellprice listprice netprice
959        discount p_discount discount_sub nodiscount_sub
960        linetotal  nodiscount_linetotal tax_rate projectnumber
961        price_factor price_factor_name);
962
963   my $sameitem = "";
964   foreach $item (sort { $a->[1] cmp $b->[1] } @partsgroup) {
965     $i = $item->[0];
966
967     if ($item->[1] ne $sameitem) {
968       push(@{ $form->{description} }, qq|$item->[1]|);
969       $sameitem = $item->[1];
970
971       map({ push(@{ $form->{$_} }, "") } grep({ $_ ne "description" } @arrays));
972     }
973
974     $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
975
976     if ($form->{"id_$i"} != 0) {
977
978       # add number, description and qty to $form->{number}, ....
979
980       if ($form->{"subtotal_$i"} && !$subtotal_header) {
981         $subtotal_header = $i;
982         $position = int($position);
983         $subposition = 0;
984         $position++;
985       } elsif ($subtotal_header) {
986         $subposition += 1;
987         $position = int($position);
988         $position = $position.".".$subposition;
989       } else {
990         $position = int($position);
991         $position++;
992       }
993
994       my $price_factor = $price_factors{$form->{"price_factor_id_$i"}} || { 'factor' => 1 };
995
996       push @{ $form->{runningnumber} },     $position;
997       push @{ $form->{number} },            $form->{"partnumber_$i"};
998       push @{ $form->{description} },       $form->{"description_$i"};
999       push @{ $form->{longdescription} },   $form->{"longdescription_$i"};
1000       push @{ $form->{qty} },               $form->format_amount($myconfig, $form->{"qty_$i"});
1001       push @{ $form->{ship} },              $form->format_amount($myconfig, $form->{"ship_$i"});
1002       push @{ $form->{unit} },              $form->{"unit_$i"};
1003       push @{ $form->{bin} },               $form->{"bin_$i"};
1004       push @{ $form->{partnotes} },         $form->{"partnotes_$i"};
1005       push @{ $form->{serialnumber} },      $form->{"serialnumber_$i"};
1006       push @{ $form->{reqdate} },           $form->{"reqdate_$i"};
1007       push @{ $form->{sellprice} },         $form->{"sellprice_$i"};
1008       push @{ $form->{listprice} },         $form->{"listprice_$i"};
1009       push @{ $form->{price_factor} },      $price_factor->{formatted_factor};
1010       push @{ $form->{price_factor_name} }, $price_factor->{description};
1011
1012       my $sellprice     = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
1013       my ($dec)         = ($sellprice =~ /\.(\d+)/);
1014       my $decimalplaces = max 2, length($dec);
1015
1016       my $parsed_discount      = $form->parse_amount($myconfig, $form->{"discount_$i"});
1017       my $linetotal_exact      =                     $form->{"qty_$i"} * $sellprice * (100 - $parsed_discount) / 100 / $price_factor->{factor};
1018       my $linetotal            = $form->round_amount($linetotal_exact, 2);
1019       my $discount             = $form->round_amount($form->{"qty_$i"} * $sellprice * $parsed_discount / 100 / $price_factor->{factor} - ($linetotal - $linetotal_exact),
1020                                                      $decimalplaces);
1021       my $nodiscount_linetotal = $form->round_amount($form->{"qty_$i"} * $sellprice / $price_factor->{factor}, 2);
1022       $form->{"netprice_$i"}   = $form->round_amount($form->{"qty_$i"} ? ($linetotal / $form->{"qty_$i"}) : 0, 2);
1023
1024       push @{ $form->{netprice} }, ($form->{"netprice_$i"} != 0) ? $form->format_amount($myconfig, $form->{"netprice_$i"}, $decimalplaces) : '';
1025
1026       $linetotal = ($linetotal != 0) ? $linetotal : '';
1027
1028       push @{ $form->{discount} },  ($discount  != 0) ? $form->format_amount($myconfig, $discount * -1, 2) : '';
1029       push @{ $form->{p_discount} }, $form->{"discount_$i"};
1030
1031       $form->{ordtotal}         += $linetotal;
1032       $form->{nodiscount_total} += $nodiscount_linetotal;
1033       $form->{discount_total}   += $discount;
1034
1035       if ($subtotal_header) {
1036         $discount_subtotal   += $linetotal;
1037         $nodiscount_subtotal += $nodiscount_linetotal;
1038       }
1039
1040       if ($form->{"subtotal_$i"} && $subtotal_header && ($subtotal_header != $i)) {
1041         push @{ $form->{discount_sub} },   $form->format_amount($myconfig, $discount_subtotal,   2);
1042         push @{ $form->{nodiscount_sub} }, $form->format_amount($myconfig, $nodiscount_subtotal, 2);
1043
1044         $discount_subtotal   = 0;
1045         $nodiscount_subtotal = 0;
1046         $subtotal_header     = 0;
1047
1048       } else {
1049         push @{ $form->{discount_sub} },   "";
1050         push @{ $form->{nodiscount_sub} }, "";
1051       }
1052
1053       if (!$form->{"discount_$i"}) {
1054         $nodiscount += $linetotal;
1055       }
1056
1057       push @{ $form->{linetotal} }, $form->format_amount($myconfig, $linetotal, 2);
1058       push @{ $form->{nodiscount_linetotal} }, $form->format_amount($myconfig, $nodiscount_linetotal, 2);
1059
1060       push(@{ $form->{projectnumber} }, $projectnumbers{$form->{"project_id_$i"}});
1061
1062       my ($taxamount, $taxbase);
1063       my $taxrate = 0;
1064
1065       map { $taxrate += $form->{"${_}_rate"} } split(/ /, $form->{"taxaccounts_$i"});
1066
1067       if ($form->{taxincluded}) {
1068
1069         # calculate tax
1070         $taxamount = $linetotal * $taxrate / (1 + $taxrate);
1071         $taxbase = $linetotal / (1 + $taxrate);
1072       } else {
1073         $taxamount = $linetotal * $taxrate;
1074         $taxbase   = $linetotal;
1075       }
1076
1077       if ($taxamount != 0) {
1078         foreach my $accno (split / /, $form->{"taxaccounts_$i"}) {
1079           $taxaccounts{$accno} += $taxamount * $form->{"${accno}_rate"} / $taxrate;
1080           $taxbase{$accno}     += $taxbase;
1081         }
1082       }
1083
1084       $tax_rate = $taxrate * 100;
1085       push(@{ $form->{tax_rate} }, qq|$tax_rate|);
1086
1087       if ($form->{"assembly_$i"}) {
1088         $sameitem = "";
1089
1090         # get parts and push them onto the stack
1091         my $sortorder = "";
1092         if ($form->{groupitems}) {
1093           $sortorder = qq|ORDER BY pg.partsgroup, a.$oid{$myconfig->{dbdriver}}|;
1094         } else {
1095           $sortorder = qq|ORDER BY a.$oid{$myconfig->{dbdriver}}|;
1096         }
1097
1098         $query = qq|SELECT p.partnumber, p.description, p.unit, a.qty, | .
1099                        qq|pg.partsgroup | .
1100                        qq|FROM assembly a | .
1101                              qq|  JOIN parts p ON (a.parts_id = p.id) | .
1102                              qq|    LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id) | .
1103                              qq|    WHERE a.bom = '1' | .
1104                              qq|    AND a.id = ? | . $sortorder;
1105                     @values = ($form->{"id_$i"});
1106         $sth = $dbh->prepare($query);
1107         $sth->execute(@values) || $form->dberror($query);
1108
1109         while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1110           if ($form->{groupitems} && $ref->{partsgroup} ne $sameitem) {
1111             map({ push(@{ $form->{$_} }, "") } grep({ $_ ne "description" } @arrays));
1112             $sameitem = ($ref->{partsgroup}) ? $ref->{partsgroup} : "--";
1113             push(@{ $form->{description} }, $sameitem);
1114           }
1115
1116           push(@{ $form->{description} }, $form->format_amount($myconfig, $ref->{qty} * $form->{"qty_$i"}) . qq|, $ref->{partnumber}, $ref->{description}|); 
1117           map({ push(@{ $form->{$_} }, "") } grep({ $_ ne "description" } @arrays));
1118         }
1119         $sth->finish;
1120       }
1121
1122     }
1123   }
1124
1125   my $tax = 0;
1126   foreach $item (sort keys %taxaccounts) {
1127     push(@{ $form->{taxbase} },
1128          $form->format_amount($myconfig, $taxbase{$item}, 2));
1129
1130     $tax += $taxamount = $form->round_amount($taxaccounts{$item}, 2);
1131
1132     push(@{ $form->{tax} }, $form->format_amount($myconfig, $taxamount, 2));
1133     push(@{ $form->{taxdescription} }, $form->{"${item}_description"}  . q{ } . 100 * $form->{"${item}_rate"} . q{%});
1134     push(@{ $form->{taxrate} },
1135          $form->format_amount($myconfig, $form->{"${item}_rate"} * 100));
1136     push(@{ $form->{taxnumber} }, $form->{"${item}_taxnumber"});
1137   }
1138
1139   $form->{nodiscount_subtotal} = $form->format_amount($myconfig, $form->{nodiscount_total}, 2);
1140   $form->{discount_total}      = $form->format_amount($myconfig, $form->{discount_total}, 2);
1141   $form->{nodiscount}          = $form->format_amount($myconfig, $nodiscount, 2);
1142   $form->{yesdiscount}         = $form->format_amount($myconfig, $form->{nodiscount_total} - $nodiscount, 2);
1143
1144   if($form->{taxincluded}) {
1145     $form->{subtotal} = $form->format_amount($myconfig, $form->{ordtotal} - $tax, 2);
1146   } else {
1147     $form->{subtotal} = $form->format_amount($myconfig, $form->{ordtotal}, 2);
1148   }
1149
1150   $form->{ordtotal} = ($form->{taxincluded}) ? $form->{ordtotal} : $form->{ordtotal} + $tax;
1151
1152   # format amounts
1153   $form->{quototal} = $form->{ordtotal} = $form->format_amount($myconfig, $form->{ordtotal}, 2);
1154
1155   if ($form->{type} =~ /_quotation/) {
1156     $form->set_payment_options($myconfig, $form->{quodate});
1157   } else {
1158     $form->set_payment_options($myconfig, $form->{orddate});
1159   }
1160
1161   $form->{username} = $myconfig->{name};
1162
1163   $dbh->disconnect;
1164
1165   $main::lxdebug->leave_sub();
1166 }
1167
1168 sub project_description {
1169   $main::lxdebug->enter_sub();
1170
1171   my ($self, $dbh, $id) = @_;
1172
1173   my $query = qq|SELECT description FROM project WHERE id = ?|;
1174   my ($value) = selectrow_query($form, $dbh, $query, $id);
1175
1176   $main::lxdebug->leave_sub();
1177
1178   return $value;
1179 }
1180
1181 1;