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