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