Patch für Bug 878.
[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 first);
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->{reqdatefrom}) {
148     $query .= qq| AND o.reqdate >= ?|;
149     push(@values, conv_date($form->{reqdatefrom}));
150   }
151
152   if($form->{reqdateto}) {
153     $query .= qq| AND o.reqdate <= ?|;
154     push(@values, conv_date($form->{reqdateto}));
155   }
156
157   if ($form->{transaction_description}) {
158     $query .= qq| AND o.transaction_description ILIKE ?|;
159     push(@values, '%' . $form->{transaction_description} . '%');
160   }
161
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",
167     "id"                      => "o.id",
168     "ordnumber"               => "o.ordnumber",
169     "quonumber"               => "o.quonumber",
170     "name"                    => "ct.name",
171     "employee"                => "e.name",
172     "salesman"                => "e.name",
173     "shipvia"                 => "o.shipvia",
174     "transaction_description" => "o.transaction_description"
175   );
176   if ($form->{sort} && grep($form->{sort}, keys(%allowed_sort_columns))) {
177     $sortorder = $allowed_sort_columns{$form->{sort}} . " ${sortdir}";
178   }
179   $query .= qq| ORDER by | . $sortorder;
180
181   my $sth = $dbh->prepare($query);
182   $sth->execute(@values) ||
183     $form->dberror($query . " (" . join(", ", @values) . ")");
184
185   my %id = ();
186   $form->{OE} = [];
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};
191   }
192
193   $sth->finish;
194   $dbh->disconnect;
195
196   $main::lxdebug->leave_sub();
197 }
198
199 sub transactions_for_todo_list {
200   $main::lxdebug->enter_sub();
201
202   my $self     = shift;
203   my %params   = @_;
204
205   my $myconfig = \%main::myconfig;
206   my $form     = $main::form;
207
208   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
209
210   my $query    = qq|SELECT id FROM employee WHERE login = ?|;
211   my ($e_id)   = selectrow_query($form, $dbh, $query, $form->{login});
212
213   $query       =
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,
216          c.name AS customer,
217          v.name AS vendor,
218          e.name AS employee
219        FROM oe
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)
228        ORDER BY transdate|;
229
230   my $quotations = selectall_hashref_query($form, $dbh, $query, $e_id, $e_id);
231
232   $main::lxdebug->leave_sub();
233
234   return $quotations;
235 }
236
237 sub save {
238   $main::lxdebug->enter_sub();
239
240   my ($self, $myconfig, $form) = @_;
241
242   # connect to database, turn off autocommit
243   my $dbh = $form->dbconnect_noauto($myconfig);
244
245   my ($query, @values, $sth, $null);
246   my $exchangerate = 0;
247
248   my $all_units = AM->retrieve_units($myconfig, $form);
249   $form->{all_units} = $all_units;
250
251   $form->{employee_id} = (split /--/, $form->{employee})[1] if !$form->{employee_id};
252   unless ($form->{employee_id}) {
253     $form->get_employee($dbh);
254   }
255
256   my $ml = ($form->{type} eq 'sales_order') ? 1 : -1;
257
258   if ($form->{id}) {
259
260     $query = qq|DELETE FROM orderitems WHERE trans_id = ?|;
261     do_query($form, $dbh, $query, $form->{id});
262
263     $query = qq|DELETE FROM shipto | .
264              qq|WHERE trans_id = ? AND module = 'OE'|;
265     do_query($form, $dbh, $query, $form->{id});
266
267   } else {
268
269     $query = qq|SELECT nextval('id')|;
270     ($form->{id}) = selectrow_query($form, $dbh, $query);
271
272     $query = qq|INSERT INTO oe (id, ordnumber, employee_id) VALUES (?, '', ?)|;
273     do_query($form, $dbh, $query, $form->{id}, $form->{employee_id});
274   }
275
276   my $amount    = 0;
277   my $linetotal = 0;
278   my $discount  = 0;
279   my $project_id;
280   my $reqdate;
281   my $taxrate;
282   my $taxamount = 0;
283   my $fxsellprice;
284   my %taxbase;
285   my @taxaccounts;
286   my %taxaccounts;
287   my $netamount = 0;
288
289   $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
290   my %price_factors = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
291   my $price_factor;
292
293   for my $i (1 .. $form->{rowcount}) {
294
295     map({ $form->{"${_}_$i"} = $form->parse_amount($myconfig, $form->{"${_}_$i"}) } qw(qty ship));
296
297     if ($form->{"id_$i"}) {
298
299       # get item baseunit
300       $query = qq|SELECT unit FROM parts WHERE id = ?|;
301       my ($item_unit) = selectrow_query($form, $dbh, $query, $form->{"id_$i"});
302
303       my $basefactor = 1;
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};
307       }
308       my $baseqty = $form->{"qty_$i"} * $basefactor;
309
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;
313
314       # set values to 0 if nothing entered
315       $form->{"discount_$i"} = $form->parse_amount($myconfig, $form->{"discount_$i"}) / 100;
316
317       $form->{"sellprice_$i"} = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
318       $fxsellprice = $form->{"sellprice_$i"};
319
320       my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
321       $dec = length($dec);
322       my $decimalplaces = ($dec > 2) ? $dec : 2;
323
324       $discount = $form->round_amount($form->{"sellprice_$i"} * $form->{"discount_$i"}, $decimalplaces);
325       $form->{"sellprice_$i"} = $form->round_amount($form->{"sellprice_$i"} - $discount, $decimalplaces);
326
327       $form->{"inventory_accno_$i"} *= 1;
328       $form->{"expense_accno_$i"}   *= 1;
329
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);
332
333       @taxaccounts = split(/ /, $form->{"taxaccounts_$i"});
334       $taxrate     = 0;
335       $taxdiff     = 0;
336
337       map { $taxrate += $form->{"${_}_rate"} } @taxaccounts;
338
339       if ($form->{taxincluded}) {
340         $taxamount = $linetotal * $taxrate / (1 + $taxrate);
341         $taxbase   = $linetotal - $taxamount;
342
343         # we are not keeping a natural price, do not round
344         $form->{"sellprice_$i"} =
345           $form->{"sellprice_$i"} * (1 / (1 + $taxrate));
346       } else {
347         $taxamount = $linetotal * $taxrate;
348         $taxbase   = $linetotal;
349       }
350
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;
358           }
359           $taxaccounts{ $taxaccounts[0] } += $taxdiff;
360         } else {
361           foreach $item (@taxaccounts) {
362             $taxaccounts{$item} += $linetotal * $form->{"${item}_rate"};
363             $taxbase{$item}     += $taxbase;
364           }
365         }
366       } else {
367         foreach $item (@taxaccounts) {
368           $taxaccounts{$item} += $taxamount * $form->{"${item}_rate"} / $taxrate;
369           $taxbase{$item} += $taxbase;
370         }
371       }
372
373       $netamount += $form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor;
374
375       $reqdate = ($form->{"reqdate_$i"}) ? $form->{"reqdate_$i"} : undef;
376
377       # get pricegroup_id and save ist
378       ($null, my $pricegroup_id) = split(/--/, $form->{"sellprice_pg_$i"});
379       $pricegroup_id *= 1;
380
381       # save detail record in orderitems table
382       @values = ();
383       $query = qq|INSERT INTO orderitems (|;
384       if ($form->{"orderitems_id_$i"}) {
385         $query .= "id, ";
386       }
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) | .
391                 qq|VALUES (|;
392       if($form->{"orderitems_id_$i"}) {
393         $query .= qq|?,|;
394         push(@values, $form->{"orderitems_id_$i"});
395       }
396       $query .= qq|?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,
397                    (SELECT factor FROM price_factors WHERE id = ?), ?)|;
398       push(@values,
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);
412
413       $form->{"sellprice_$i"} = $fxsellprice;
414       $form->{"discount_$i"} *= 100;
415     }
416   }
417
418   $reqdate = ($form->{reqdate}) ? $form->{reqdate} : undef;
419
420   # add up the tax
421   my $tax = 0;
422   map { $tax += $form->round_amount($taxaccounts{$_}, 2) } keys %taxaccounts;
423
424   $amount = $form->round_amount($netamount + $tax, 2);
425   $netamount = $form->round_amount($netamount, 2);
426
427   if ($form->{currency} eq $form->{defaultcurrency}) {
428     $form->{exchangerate} = 1;
429   } else {
430     $exchangerate = $form->check_exchangerate($myconfig, $form->{currency}, $form->{transdate}, ($form->{vc} eq 'customer') ? 'buy' : 'sell');
431   }
432
433   $form->{exchangerate} = $exchangerate || $form->parse_amount($myconfig, $form->{exchangerate});
434
435   my $quotation = $form->{type} =~ /_order$/ ? 'f' : 't';
436
437   ($null, $form->{department_id}) = split(/--/, $form->{department}) if $form->{department};
438
439   # save OE record
440   $query =
441     qq|UPDATE oe SET
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 = ?
448        WHERE id = ?|;
449
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);
469
470   $form->{ordtotal} = $amount;
471
472   # add shipto
473   $form->{name} = $form->{ $form->{vc} };
474   $form->{name} =~ s/--\Q$form->{"$form->{vc}_id"}\E//;
475
476   if (!$form->{shipto_id}) {
477     $form->add_shipto($dbh, $form->{id}, "OE");
478   }
479
480   # save printed, emailed, queued
481   $form->save_status($dbh);
482
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};
488
489   if (scalar @convert_from_oe_ids) {
490     RecordLinks->create_links('dbh'        => $dbh,
491                               'mode'       => 'ids',
492                               'from_table' => 'oe',
493                               'from_ids'   => \@convert_from_oe_ids,
494                               'to_table'   => 'oe',
495                               'to_id'      => $form->{id},
496       );
497
498     $self->_close_quotations_rfqs('dbh'     => $dbh,
499                                   'from_id' => \@convert_from_oe_ids,
500                                   'to_id'   => $form->{id});
501   }
502
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);
506     }
507     if ($form->{vc} eq 'vendor') {
508       $form->update_exchangerate($dbh, $form->{currency}, $form->{transdate}, 0, $form->{exchangerate});
509     }
510   }
511
512   $form->{saved_xyznumber} = $form->{$form->{type} =~ /_quotation$/ ?
513                                        "quonumber" : "ordnumber"};
514
515   Common::webdav_folder($form) if ($main::webdav);
516
517   my $rc = $dbh->commit;
518   $dbh->disconnect;
519
520   $main::lxdebug->leave_sub();
521
522   return $rc;
523 }
524
525 sub _close_quotations_rfqs {
526   $main::lxdebug->enter_sub();
527
528   my $self     = shift;
529   my %params   = @_;
530
531   Common::check_params(\%params, qw(from_id to_id));
532
533   my $myconfig = \%main::myconfig;
534   my $form     = $main::form;
535
536   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
537
538   my $query    = qq|SELECT quotation FROM oe WHERE id = ?|;
539   my $sth      = prepare_query($form, $dbh, $query);
540
541   do_statement($form, $sth, $query, conv_i($params{to_id}));
542
543   my ($quotation) = $sth->fetchrow_array();
544
545   if ($quotation) {
546     $main::lxdebug->leave_sub();
547     return;
548   }
549
550   my @close_ids;
551
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);
557   }
558
559   $sth->finish();
560
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);
564
565     $dbh->commit() unless ($params{dbh});
566   }
567
568   $main::lxdebug->leave_sub();
569 }
570
571 sub delete {
572   $main::lxdebug->enter_sub();
573
574   my ($self, $myconfig, $form, $spool) = @_;
575
576   # connect to database
577   my $dbh = $form->dbconnect_noauto($myconfig);
578
579   # delete spool files
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);
585
586   my $spoolfile;
587   my @spoolfiles = ();
588
589   while (($spoolfile) = $sth->fetchrow_array) {
590     push @spoolfiles, $spoolfile;
591   }
592   $sth->finish;
593
594   # delete-values
595   @values = (conv_i($form->{id}));
596
597   # delete status entries
598   $query = qq|DELETE FROM status | .
599            qq|WHERE trans_id = ?|;
600   do_query($form, $dbh, $query, @values);
601
602   # delete OE record
603   $query = qq|DELETE FROM oe | .
604            qq|WHERE id = ?|;
605   do_query($form, $dbh, $query, @values);
606
607   # delete individual entries
608   $query = qq|DELETE FROM orderitems | .
609            qq|WHERE trans_id = ?|;
610   do_query($form, $dbh, $query, @values);
611
612   $query = qq|DELETE FROM shipto | .
613            qq|WHERE trans_id = ? AND module = 'OE'|;
614   do_query($form, $dbh, $query, @values);
615
616   my $rc = $dbh->commit;
617   $dbh->disconnect;
618
619   if ($rc) {
620     foreach $spoolfile (@spoolfiles) {
621       unlink "$spool/$spoolfile" if $spoolfile;
622     }
623   }
624
625   $main::lxdebug->leave_sub();
626
627   return $rc;
628 }
629
630 sub retrieve {
631   $main::lxdebug->enter_sub();
632
633   my ($self, $myconfig, $form) = @_;
634
635   # connect to database
636   my $dbh = $form->dbconnect_noauto($myconfig);
637
638   my ($query, $query_add, @values, @ids, $sth);
639
640   # translate the ids (given by id_# and trans_id_#) into one array of ids, so we can join them later
641   map {
642     push @ids, $form->{"trans_id_$_"}
643       if ($form->{"multi_id_$_"} and $form->{"trans_id_$_"})
644   } (1 .. $form->{"rowcount"});
645
646   if ($form->{rowcount} && scalar @ids) {
647     $form->{convert_from_oe_ids} = join ' ', @ids;
648   }
649
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];
653     undef @ids;
654   }
655
656   my $query_add = '';
657   if (!$form->{id}) {
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|;
661   }
662
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,
669               d.curr AS currencies
670               $query_add
671               FROM defaults d|;
672   my $ref = selectfirst_hashref_query($form, $dbh, $query);
673   map { $form->{$_} = $ref->{$_} } keys %$ref;
674
675   ($form->{currency}) = split(/:/, $form->{currencies}) unless ($form->{currency});
676
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/);
682
683   my $vc = $form->{vc} eq "customer" ? "customer" : "vendor";
684
685   if ($form->{id} or @ids) {
686
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
691     $query =
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
700          FROM oe o
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) | .
704         ($form->{id}
705          ? "WHERE o.id = ?"
706          : "WHERE o.id IN (" . join(', ', map("? ", @ids)) . ")"
707         );
708     @values = $form->{id} ? ($form->{id}) : @ids;
709     $sth = prepare_execute_query($form, $dbh, $query, @values);
710
711     $ref = $sth->fetchrow_hashref(NAME_lc);
712     map { $form->{$_} = $ref->{$_} } keys %$ref;
713
714     $form->{saved_xyznumber} = $form->{$form->{type} =~ /_quotation$/ ?
715                                          "quonumber" : "ordnumber"};
716
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;
720     }
721
722     # if not given, fill transdate with current_date
723     $form->{transdate} = $form->current_date($myconfig)
724       unless $form->{transdate};
725
726     $sth->finish;
727
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});
731     }
732
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});
736     }
737
738     # shipto and pinted/mailed/queued status makes only sense for single id retrieve
739     if (!@ids) {
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});
742
743       $ref = $sth->fetchrow_hashref(NAME_lc);
744       delete($ref->{id});
745       map { $form->{$_} = $ref->{$_} } keys %$ref;
746       $sth->finish;
747
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});
751
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};
756       }
757       $sth->finish;
758       map { $form->{$_} =~ s/ +$//g } qw(printed emailed queued);
759     }    # if !@ids
760
761     my %oid = ('Pg'     => 'oid',
762                'Oracle' => 'rowid');
763
764     my $transdate = $form->{transdate} ? $dbh->quote($form->{transdate}) : "current_date";
765
766     $form->{taxzone_id} = 0 unless ($form->{taxzone_id});
767
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.
771     $query =
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
784          FROM orderitems o
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) | .
792       ($form->{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}}|;
796
797     @ids = $form->{id} ? ($form->{id}) : @ids;
798     $sth = prepare_execute_query($form, $dbh, $query, @values);
799
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));
803       }
804       delete($ref->{"part_inventory_accno_id"});
805
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|
811         if (@ids);
812       map { delete $ref->{$_} } qw|ordnumber_oe transdate_oe cusordnumber_oe|;
813
814
815
816       while ($ref->{inventory_new_chart} && ($ref->{inventory_valid} >= 0)) {
817         my $query =
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);
824       }
825
826       while ($ref->{income_new_chart} && ($ref->{income_valid} >= 0)) {
827         my $query =
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);
834       }
835
836       while ($ref->{expense_new_chart} && ($ref->{expense_valid} >= 0)) {
837         my $query =
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);
844       }
845
846       # delete orderitems_id in collective orders, so that they get cloned no matter what
847       delete $ref->{orderitems_id} if (@ids);
848
849       # get tax rates and description
850       $accno_id = ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
851       $query =
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} = "";
860       my $i = 0;
861       while ($ptr = $stw->fetchrow_hashref(NAME_lc)) {
862         if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
863           $i++;
864           $ptr->{accno} = $i;
865         }
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} ";
872         }
873
874       }
875
876       chop $ref->{taxaccounts};
877       push @{ $form->{form_details} }, $ref;
878       $stw->finish;
879     }
880     $sth->finish;
881
882   } else {
883
884     # get last name used
885     $form->lastname_used($dbh, $myconfig, $form->{vc})
886       unless $form->{"$form->{vc}_id"};
887
888   }
889
890   $form->{exchangerate} = $form->get_exchangerate($dbh, $form->{currency}, $form->{transdate}, ($form->{vc} eq 'customer') ? "buy" : "sell");
891
892   Common::webdav_folder($form) if ($main::webdav);
893
894   my $rc = $dbh->commit;
895   $dbh->disconnect;
896
897   $main::lxdebug->leave_sub();
898
899   return $rc;
900 }
901
902 sub order_details {
903   $main::lxdebug->enter_sub();
904
905   my ($self, $myconfig, $form) = @_;
906
907   # connect to database
908   my $dbh = $form->dbconnect($myconfig);
909   my $query;
910   my @values = ();
911   my $sth;
912   my $nodiscount;
913   my $yesdiscount;
914   my $nodiscount_subtotal = 0;
915   my $discount_subtotal = 0;
916   my $item;
917   my $i;
918   my @partsgroup = ();
919   my $partsgroup;
920   my $position = 0;
921   my $subtotal_header = 0;
922   my $subposition = 0;
923
924   my %oid = ('Pg'     => 'oid',
925              'Oracle' => 'rowid');
926
927   my (@project_ids, %projectnumbers);
928
929   push(@project_ids, $form->{"globalproject_id"}) if ($form->{"globalproject_id"});
930
931   $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS',
932                    'departments'   => 'ALL_DEPARTMENTS');
933   my %price_factors;
934
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});
939   }
940
941   # lookup department
942   $form->{department} = ( first { $_->{id} eq $form->{department_id} } @{ $form->{ALL_DEPARTMENTS} } )->{description} || '';
943
944   # sort items by partsgroup
945   for $i (1 .. $form->{rowcount}) {
946     $partsgroup = "";
947     if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
948       $partsgroup = $form->{"partsgroup_$i"};
949     }
950     push @partsgroup, [$i, $partsgroup];
951     push(@project_ids, $form->{"project_id_$i"}) if ($form->{"project_id_$i"});
952   }
953
954   if (@project_ids) {
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};
960     }
961     $sth->finish();
962   }
963
964   $form->{"globalprojectnumber"} = $projectnumbers{$form->{"globalproject_id"}};
965
966   $form->{discount} = [];
967
968   IC->prepare_parts_for_printing();
969
970   my @arrays =
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);
976
977   my $sameitem = "";
978   foreach $item (sort { $a->[1] cmp $b->[1] } @partsgroup) {
979     $i = $item->[0];
980
981     if ($item->[1] ne $sameitem) {
982       push(@{ $form->{description} }, qq|$item->[1]|);
983       $sameitem = $item->[1];
984
985       map({ push(@{ $form->{$_} }, "") } grep({ $_ ne "description" } @arrays));
986     }
987
988     $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
989
990     if ($form->{"id_$i"} != 0) {
991
992       # add number, description and qty to $form->{number}, ....
993
994       if ($form->{"subtotal_$i"} && !$subtotal_header) {
995         $subtotal_header = $i;
996         $position = int($position);
997         $subposition = 0;
998         $position++;
999       } elsif ($subtotal_header) {
1000         $subposition += 1;
1001         $position = int($position);
1002         $position = $position.".".$subposition;
1003       } else {
1004         $position = int($position);
1005         $position++;
1006       }
1007
1008       my $price_factor = $price_factors{$form->{"price_factor_id_$i"}} || { 'factor' => 1 };
1009
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"};
1026
1027       my $sellprice     = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
1028       my ($dec)         = ($sellprice =~ /\.(\d+)/);
1029       my $decimalplaces = max 2, length($dec);
1030
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),
1035                                                      $decimalplaces);
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);
1038
1039       push @{ $form->{netprice} }, ($form->{"netprice_$i"} != 0) ? $form->format_amount($myconfig, $form->{"netprice_$i"}, $decimalplaces) : '';
1040
1041       $linetotal = ($linetotal != 0) ? $linetotal : '';
1042
1043       push @{ $form->{discount} },  ($discount  != 0) ? $form->format_amount($myconfig, $discount * -1, 2) : '';
1044       push @{ $form->{p_discount} }, $form->{"discount_$i"};
1045
1046       $form->{ordtotal}         += $linetotal;
1047       $form->{nodiscount_total} += $nodiscount_linetotal;
1048       $form->{discount_total}   += $discount;
1049
1050       if ($subtotal_header) {
1051         $discount_subtotal   += $linetotal;
1052         $nodiscount_subtotal += $nodiscount_linetotal;
1053       }
1054
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);
1058
1059         $discount_subtotal   = 0;
1060         $nodiscount_subtotal = 0;
1061         $subtotal_header     = 0;
1062
1063       } else {
1064         push @{ $form->{discount_sub} },   "";
1065         push @{ $form->{nodiscount_sub} }, "";
1066       }
1067
1068       if (!$form->{"discount_$i"}) {
1069         $nodiscount += $linetotal;
1070       }
1071
1072       push @{ $form->{linetotal} }, $form->format_amount($myconfig, $linetotal, 2);
1073       push @{ $form->{nodiscount_linetotal} }, $form->format_amount($myconfig, $nodiscount_linetotal, 2);
1074
1075       push(@{ $form->{projectnumber} }, $projectnumbers{$form->{"project_id_$i"}});
1076
1077       my ($taxamount, $taxbase);
1078       my $taxrate = 0;
1079
1080       map { $taxrate += $form->{"${_}_rate"} } split(/ /, $form->{"taxaccounts_$i"});
1081
1082       if ($form->{taxincluded}) {
1083
1084         # calculate tax
1085         $taxamount = $linetotal * $taxrate / (1 + $taxrate);
1086         $taxbase = $linetotal / (1 + $taxrate);
1087       } else {
1088         $taxamount = $linetotal * $taxrate;
1089         $taxbase   = $linetotal;
1090       }
1091
1092       if ($taxamount != 0) {
1093         foreach my $accno (split / /, $form->{"taxaccounts_$i"}) {
1094           $taxaccounts{$accno} += $taxamount * $form->{"${accno}_rate"} / $taxrate;
1095           $taxbase{$accno}     += $taxbase;
1096         }
1097       }
1098
1099       $tax_rate = $taxrate * 100;
1100       push(@{ $form->{tax_rate} }, qq|$tax_rate|);
1101
1102       if ($form->{"assembly_$i"}) {
1103         $sameitem = "";
1104
1105         # get parts and push them onto the stack
1106         my $sortorder = "";
1107         if ($form->{groupitems}) {
1108           $sortorder = qq|ORDER BY pg.partsgroup, a.$oid{$myconfig->{dbdriver}}|;
1109         } else {
1110           $sortorder = qq|ORDER BY a.$oid{$myconfig->{dbdriver}}|;
1111         }
1112
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);
1123
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);
1129           }
1130
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));
1133         }
1134         $sth->finish;
1135       }
1136
1137     }
1138   }
1139
1140   my $tax = 0;
1141   foreach $item (sort keys %taxaccounts) {
1142     push(@{ $form->{taxbase} },
1143          $form->format_amount($myconfig, $taxbase{$item}, 2));
1144
1145     $tax += $taxamount = $form->round_amount($taxaccounts{$item}, 2);
1146
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"});
1152   }
1153
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);
1158
1159   if($form->{taxincluded}) {
1160     $form->{subtotal} = $form->format_amount($myconfig, $form->{ordtotal} - $tax, 2);
1161   } else {
1162     $form->{subtotal} = $form->format_amount($myconfig, $form->{ordtotal}, 2);
1163   }
1164
1165   $form->{ordtotal} = ($form->{taxincluded}) ? $form->{ordtotal} : $form->{ordtotal} + $tax;
1166
1167   # format amounts
1168   $form->{quototal} = $form->{ordtotal} = $form->format_amount($myconfig, $form->{ordtotal}, 2);
1169
1170   if ($form->{type} =~ /_quotation/) {
1171     $form->set_payment_options($myconfig, $form->{quodate});
1172   } else {
1173     $form->set_payment_options($myconfig, $form->{orddate});
1174   }
1175
1176   $form->{username} = $myconfig->{name};
1177
1178   $dbh->disconnect;
1179
1180   $main::lxdebug->leave_sub();
1181 }
1182
1183 sub project_description {
1184   $main::lxdebug->enter_sub();
1185
1186   my ($self, $dbh, $id) = @_;
1187
1188   my $query = qq|SELECT description FROM project WHERE id = ?|;
1189   my ($value) = selectrow_query($form, $dbh, $query, $id);
1190
1191   $main::lxdebug->leave_sub();
1192
1193   return $value;
1194 }
1195
1196 1;