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