ec4c3f00cd69dd511725a0133314f9c464a436bc
[kivitendo-erp.git] / SL / AM.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) 2001
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 # Administration module
32 #    Chart of Accounts
33 #    template routines
34 #    preferences
35 #
36 #======================================================================
37
38 package AM;
39
40 use Data::Dumper;
41 use SL::DBUtils;
42
43 sub get_account {
44   $main::lxdebug->enter_sub();
45
46   my ($self, $myconfig, $form) = @_;
47
48   # connect to database
49   my $dbh = $form->dbconnect($myconfig);
50   my $query = qq{
51     SELECT c.accno, c.description, c.charttype, c.category,
52       c.link, c.pos_bilanz, c.pos_eur, c.new_chart_id, c.valid_from,
53       c.pos_bwa, datevautomatik,
54       tk.taxkey_id, tk.pos_ustva, tk.tax_id,
55       tk.tax_id || '--' || tk.taxkey_id AS tax, tk.startdate
56     FROM chart c
57     LEFT JOIN taxkeys tk
58     ON (c.id=tk.chart_id AND tk.id =
59       (SELECT id FROM taxkeys
60        WHERE taxkeys.chart_id = c.id AND startdate <= current_date
61        ORDER BY startdate DESC LIMIT 1))
62     WHERE c.id = ?
63     };
64
65
66   $main::lxdebug->message(LXDebug::QUERY, "\$query=\n $query");
67   my $sth = $dbh->prepare($query);
68   $sth->execute($form->{id}) || $form->dberror($query . " ($form->{id})");
69
70   my $ref = $sth->fetchrow_hashref(NAME_lc);
71
72   foreach my $key (keys %$ref) {
73     $form->{"$key"} = $ref->{"$key"};
74   }
75
76   $sth->finish;
77
78   # get default accounts
79   $query = qq|SELECT inventory_accno_id, income_accno_id, expense_accno_id
80               FROM defaults|;
81   $main::lxdebug->message(LXDebug::QUERY, "\$query=\n $query");
82   $sth = $dbh->prepare($query);
83   $sth->execute || $form->dberror($query);
84
85   $ref = $sth->fetchrow_hashref(NAME_lc);
86
87   map { $form->{$_} = $ref->{$_} } keys %ref;
88
89   $sth->finish;
90
91
92
93   # get taxkeys and description
94   $query = qq{
95     SELECT
96       id,
97       (SELECT accno FROM chart WHERE id=tax.chart_id) AS chart_accno,
98       taxkey,
99       id||'--'||taxkey AS tax,
100       taxdescription,
101       rate
102     FROM tax ORDER BY taxkey
103   };
104   $main::lxdebug->message(LXDebug::QUERY, "\$query=\n $query");
105   $sth = $dbh->prepare($query);
106   $sth->execute || $form->dberror($query);
107
108   $form->{TAXKEY} = [];
109
110   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
111     push @{ $form->{TAXKEY} }, $ref;
112   }
113
114   $sth->finish;
115   if ($form->{id}) {
116     # get new accounts
117     $query = qq|SELECT id, accno,description
118                 FROM chart
119                 WHERE link = ?
120                 ORDER BY accno|;
121     $main::lxdebug->message(LXDebug::QUERY, "\$query=\n $query");
122     $sth = $dbh->prepare($query);
123     $sth->execute($form->{link}) || $form->dberror($query . " ($form->{link})");
124
125     $form->{NEWACCOUNT} = [];
126     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
127       push @{ $form->{NEWACCOUNT} }, $ref;
128     }
129
130     $sth->finish;
131
132     # get the taxkeys of account
133
134     $query = qq{
135       SELECT
136         tk.id,
137         tk.chart_id,
138         c.accno,
139         tk.tax_id,
140         t.taxdescription,
141         t.rate,
142         tk.taxkey_id,
143         tk.pos_ustva,
144         tk.startdate
145       FROM taxkeys tk
146       LEFT JOIN   tax t ON (t.id = tk.tax_id)
147       LEFT JOIN chart c ON (c.id = t.chart_id)
148
149       WHERE tk.chart_id = ?
150       ORDER BY startdate DESC
151     };
152     $main::lxdebug->message(LXDebug::QUERY, "\$query=\n $query");
153     $sth = $dbh->prepare($query);
154
155     $sth->execute($form->{id}) || $form->dberror($query . " ($form->{id})");
156
157     $form->{ACCOUNT_TAXKEYS} = [];
158
159     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
160       push @{ $form->{ACCOUNT_TAXKEYS} }, $ref;
161     }
162
163     $sth->finish;
164
165   }
166   # check if we have any transactions
167   $query = qq|SELECT a.trans_id FROM acc_trans a
168               WHERE a.chart_id = ?|;
169   $main::lxdebug->message(LXDebug::QUERY, "\$query=\n $query");
170   $sth = $dbh->prepare($query);
171   $sth->execute($form->{id}) || $form->dberror($query . " ($form->{id})");
172
173   ($form->{orphaned}) = $sth->fetchrow_array;
174   $form->{orphaned} = !$form->{orphaned};
175   $sth->finish;
176
177   # check if new account is active
178   $form->{new_chart_valid} = 0;
179   if ($form->{new_chart_id}) {
180     $query = qq|SELECT current_date-valid_from FROM chart
181                 WHERE id = ?|;
182     $main::lxdebug->message(LXDebug::QUERY, "\$query=\n $query");
183     my ($count) = selectrow_query($form, $dbh, $query, $form->{id});
184     if ($count >=0) {
185       $form->{new_chart_valid} = 1;
186     }
187     $sth->finish;
188   }
189
190   $dbh->disconnect;
191
192   $main::lxdebug->leave_sub();
193 }
194
195 sub save_account {
196   $main::lxdebug->enter_sub();
197
198   my ($self, $myconfig, $form) = @_;
199
200   # connect to database, turn off AutoCommit
201   my $dbh = $form->dbconnect_noauto($myconfig);
202
203   # sanity check, can't have AR with AR_...
204   if ($form->{AR} || $form->{AP} || $form->{IC}) {
205     map { delete $form->{$_} }
206       qw(AR_amount AR_tax AR_paid AP_amount AP_tax AP_paid IC_sale IC_cogs IC_taxpart IC_income IC_expense IC_taxservice CT_tax);
207   }
208
209   $form->{link} = "";
210   foreach my $item ($form->{AR},            $form->{AR_amount},
211                     $form->{AR_tax},        $form->{AR_paid},
212                     $form->{AP},            $form->{AP_amount},
213                     $form->{AP_tax},        $form->{AP_paid},
214                     $form->{IC},            $form->{IC_sale},
215                     $form->{IC_cogs},       $form->{IC_taxpart},
216                     $form->{IC_income},     $form->{IC_expense},
217                     $form->{IC_taxservice}, $form->{CT_tax}
218     ) {
219     $form->{link} .= "${item}:" if ($item);
220   }
221   chop $form->{link};
222
223   # strip blanks from accno
224   map { $form->{$_} =~ s/ //g; } qw(accno);
225
226   my ($query, $sth);
227
228   if ($form->{id} eq "NULL") {
229     $form->{id} = "";
230   }
231
232   my @values;
233
234   if ($form->{id}) {
235     $query = qq|UPDATE chart SET
236                   accno = ?,
237                   description = ?,
238                   charttype = ?,
239                   category = ?,
240                   link = ?,
241                   pos_bwa   = ?,
242                   pos_bilanz = ?,
243                   pos_eur = ?,
244                   new_chart_id = ?,
245                   valid_from = ?,
246                   datevautomatik = ?
247                 WHERE id = ?|;
248
249     @values = (
250                   $form->{accno},
251                   $form->{description},
252                   $form->{charttype},
253                   $form->{category},
254                   $form->{link},
255                   conv_i($form->{pos_bwa}),
256                   conv_i($form->{pos_bilanz}),
257                   conv_i($form->{pos_eur}),
258                   conv_i($form->{new_chart_id}),
259                   conv_date($form->{valid_from}),
260                   ($form->{datevautomatik} eq 'T') ? 'true':'false',
261                 $form->{id},
262     );
263
264   }
265   elsif ($form->{id} && !$form->{new_chart_valid}) {
266
267     $query = qq|
268                   UPDATE chart
269                   SET new_chart_id = ?,
270                   valid_from = ?
271                   WHERE id = ?
272              |;
273
274     @values = (
275                   conv_i($form->{new_chart_id}),
276                   conv_date($form->{valid_from}),
277                   $form->{id}
278               );
279   }
280   else {
281
282     $query = qq|
283                   INSERT INTO chart (
284                       accno,
285                       description,
286                       charttype,
287                       category,
288                       link,
289                       pos_bwa,
290                       pos_bilanz,
291                       pos_eur,
292                       new_chart_id,
293                       valid_from,
294                       datevautomatik )
295                   VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
296              |;
297
298     @values = (
299                       $form->{accno},
300                       $form->{description},
301                       $form->{charttype},
302                       $form->{category}, $form->{link},
303                       conv_i($form->{pos_bwa}),
304                       conv_i($form->{pos_bilanz}), conv_i($form->{pos_eur}),
305                       conv_i($form->{new_chart_id}),
306                       conv_date($form->{valid_from}),
307                       ($form->{datevautomatik} eq 'T') ? 'true':'false',
308               );
309
310   }
311
312   do_query($form, $dbh, $query, @values);
313
314   #Save Taxkeys
315
316   my @taxkeys = ();
317
318   my $MAX_TRIES = 10; # Maximum count of taxkeys in form
319   my $tk_count;
320
321   READTAXKEYS:
322   for $tk_count (0 .. $MAX_TRIES) {
323
324     # Loop control
325
326     # Check if the account already exists, else cancel
327     last READTAXKEYS if ( $form->{'id'} == 0);
328
329     # check if there is a startdate
330     if ( $form->{"taxkey_startdate_$tk_count"} eq '' ) {
331       $tk_count++;
332       next READTAXKEYS;
333     }
334
335     # check if there is at least one relation to pos_ustva or tax_id
336     if ( $form->{"taxkey_pos_ustva_$tk_count"} eq '' && $form->{"taxkey_tax_$tk_count"} == 0 ) {
337       $tk_count++;
338       next READTAXKEYS;
339     }
340
341     # Add valid taxkeys into the array
342     push @taxkeys ,
343       {
344         id        => ($form->{"taxkey_id_$tk_count"} eq 'NEW') ? conv_i('') : conv_i($form->{"taxkey_id_$tk_count"}),
345         tax_id    => conv_i($form->{"taxkey_tax_$tk_count"}),
346         startdate => conv_date($form->{"taxkey_startdate_$tk_count"}),
347         chart_id  => conv_i($form->{"id"}),
348         pos_ustva => $form->{"taxkey_pos_ustva_$tk_count"},
349         delete    => ( $form->{"taxkey_del_$tk_count"} eq 'delete' ) ? '1' : '',
350       };
351
352     $tk_count++;
353   }
354
355   TAXKEY:
356   for my $j (0 .. $#taxkeys){
357     if ( defined $taxkeys[$j]{'id'} ){
358       # delete Taxkey?
359
360       if ($taxkeys[$j]{'delete'}){
361         $query = qq{
362           DELETE FROM taxkeys WHERE id = ?
363         };
364
365         @values = ($taxkeys[$j]{'id'});
366
367         do_query($form, $dbh, $query, @values);
368
369         next TAXKEY;
370       }
371
372       # UPDATE Taxkey
373
374       $query = qq{
375         UPDATE taxkeys
376         SET taxkey_id = (SELECT taxkey FROM tax WHERE tax.id = ?),
377             chart_id  = ?,
378             tax_id    = ?,
379             pos_ustva = ?,
380             startdate = ?
381         WHERE id = ?
382       };
383       @values = (
384         $taxkeys[$j]{'tax_id'},
385         $taxkeys[$j]{'chart_id'},
386         $taxkeys[$j]{'tax_id'},
387         $taxkeys[$j]{'pos_ustva'},
388         $taxkeys[$j]{'startdate'},
389         $taxkeys[$j]{'id'},
390       );
391       do_query($form, $dbh, $query, @values);
392     }
393     else {
394       # INSERT Taxkey
395
396       $query = qq{
397         INSERT INTO taxkeys (
398           taxkey_id,
399           chart_id,
400           tax_id,
401           pos_ustva,
402           startdate
403         )
404         VALUES ((SELECT taxkey FROM tax WHERE tax.id = ?), ?, ?, ?, ?)
405       };
406       @values = (
407         $taxkeys[$j]{'tax_id'},
408         $taxkeys[$j]{'chart_id'},
409         $taxkeys[$j]{'tax_id'},
410         $taxkeys[$j]{'pos_ustva'},
411         $taxkeys[$j]{'startdate'},
412       );
413
414       do_query($form, $dbh, $query, @values);
415     }
416
417   }
418
419   # commit
420   my $rc = $dbh->commit;
421   $dbh->disconnect;
422
423   $main::lxdebug->leave_sub();
424
425   return $rc;
426 }
427
428 sub delete_account {
429   $main::lxdebug->enter_sub();
430
431   my ($self, $myconfig, $form) = @_;
432
433   # connect to database, turn off AutoCommit
434   my $dbh = $form->dbconnect_noauto($myconfig);
435
436   my $query = qq|SELECT count(*) FROM acc_trans a
437                  WHERE a.chart_id = ?|;
438   my ($count) = selectrow_query($form, $dbh, $query, $form->{id});
439
440   if ($count) {
441     $dbh->disconnect;
442     $main::lxdebug->leave_sub();
443     return;
444   }
445
446   # set inventory_accno_id, income_accno_id, expense_accno_id to defaults
447   foreach my $type (qw(inventory income expense)) {
448     $query =
449       qq|UPDATE parts | .
450       qq|SET ${type}_accno_id = (SELECT ${type}_accno_id FROM defaults) | .
451       qq|WHERE ${type}_accno_id = ?|;
452     do_query($form, $dbh, $query, $form->{id});
453   }
454
455   foreach my $table (qw(partstax customertax vendortax tax)) {
456     $query = qq|DELETE FROM $table
457                 WHERE chart_id = ?|;
458     do_query($form, $dbh, $query, $form->{id});
459   }
460
461   # delete chart of account record
462   $query = qq|DELETE FROM chart
463               WHERE id = ?|;
464   do_query($form, $dbh, $query, $form->{id});
465
466   # delete account taxkeys
467   $query = qq|DELETE FROM taxkeys
468               WHERE chart_id = ?|;
469   do_query($form, $dbh, $query, $form->{id});
470
471   # commit and redirect
472   my $rc = $dbh->commit;
473   $dbh->disconnect;
474
475   $main::lxdebug->leave_sub();
476
477   return $rc;
478 }
479
480 sub departments {
481   $main::lxdebug->enter_sub();
482
483   my ($self, $myconfig, $form) = @_;
484
485   # connect to database
486   my $dbh = $form->dbconnect($myconfig);
487
488   my $query = qq|SELECT d.id, d.description, d.role
489                  FROM department d
490                  ORDER BY 2|;
491
492   $sth = $dbh->prepare($query);
493   $sth->execute || $form->dberror($query);
494
495   $form->{ALL} = [];
496   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
497     push @{ $form->{ALL} }, $ref;
498   }
499
500   $sth->finish;
501   $dbh->disconnect;
502
503   $main::lxdebug->leave_sub();
504 }
505
506 sub get_department {
507   $main::lxdebug->enter_sub();
508
509   my ($self, $myconfig, $form) = @_;
510
511   # connect to database
512   my $dbh = $form->dbconnect($myconfig);
513
514   my $query = qq|SELECT d.description, d.role
515                  FROM department d
516                  WHERE d.id = ?|;
517   my $sth = $dbh->prepare($query);
518   $sth->execute($form->{id}) || $form->dberror($query . " ($form->{id})");
519
520   my $ref = $sth->fetchrow_hashref(NAME_lc);
521
522   map { $form->{$_} = $ref->{$_} } keys %$ref;
523
524   $sth->finish;
525
526   # see if it is in use
527   $query = qq|SELECT count(*) FROM dpt_trans d
528               WHERE d.department_id = ?|;
529   ($form->{orphaned}) = selectrow_query($form, $dbh, $query, $form->{id});
530
531   $form->{orphaned} = !$form->{orphaned};
532   $sth->finish;
533
534   $dbh->disconnect;
535
536   $main::lxdebug->leave_sub();
537 }
538
539 sub save_department {
540   $main::lxdebug->enter_sub();
541
542   my ($self, $myconfig, $form) = @_;
543
544   # connect to database
545   my $dbh = $form->dbconnect($myconfig);
546
547   my @values = ($form->{description}, $form->{role});
548   if ($form->{id}) {
549     $query = qq|UPDATE department SET
550                 description = ?, role = ?
551                 WHERE id = ?|;
552     push(@values, $form->{id});
553   } else {
554     $query = qq|INSERT INTO department
555                 (description, role)
556                 VALUES (?, ?)|;
557   }
558   do_query($form, $dbh, $query, @values);
559
560   $dbh->disconnect;
561
562   $main::lxdebug->leave_sub();
563 }
564
565 sub delete_department {
566   $main::lxdebug->enter_sub();
567
568   my ($self, $myconfig, $form) = @_;
569
570   # connect to database
571   my $dbh = $form->dbconnect($myconfig);
572
573   $query = qq|DELETE FROM department
574               WHERE id = ?|;
575   do_query($form, $dbh, $query, $form->{id});
576
577   $dbh->disconnect;
578
579   $main::lxdebug->leave_sub();
580 }
581
582 sub lead {
583   $main::lxdebug->enter_sub();
584
585   my ($self, $myconfig, $form) = @_;
586
587   # connect to database
588   my $dbh = $form->dbconnect($myconfig);
589
590   my $query = qq|SELECT id, lead
591                  FROM leads
592                  ORDER BY 2|;
593
594   $sth = $dbh->prepare($query);
595   $sth->execute || $form->dberror($query);
596
597   $form->{ALL};
598   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
599     push @{ $form->{ALL} }, $ref;
600   }
601
602   $sth->finish;
603   $dbh->disconnect;
604
605   $main::lxdebug->leave_sub();
606 }
607
608 sub get_lead {
609   $main::lxdebug->enter_sub();
610
611   my ($self, $myconfig, $form) = @_;
612
613   # connect to database
614   my $dbh = $form->dbconnect($myconfig);
615
616   my $query =
617     qq|SELECT l.id, l.lead | .
618     qq|FROM leads l | .
619     qq|WHERE l.id = ?|;
620   my $sth = $dbh->prepare($query);
621   $sth->execute($form->{id}) || $form->dberror($query . " ($form->{id})");
622
623   my $ref = $sth->fetchrow_hashref(NAME_lc);
624
625   map { $form->{$_} = $ref->{$_} } keys %$ref;
626
627   $sth->finish;
628
629   $dbh->disconnect;
630
631   $main::lxdebug->leave_sub();
632 }
633
634 sub save_lead {
635   $main::lxdebug->enter_sub();
636
637   my ($self, $myconfig, $form) = @_;
638
639   # connect to database
640   my $dbh = $form->dbconnect($myconfig);
641
642   my @values = ($form->{description});
643   # id is the old record
644   if ($form->{id}) {
645     $query = qq|UPDATE leads SET
646                 lead = ?
647                 WHERE id = ?|;
648     puhs(@values, $form->{id});
649   } else {
650     $query = qq|INSERT INTO leads
651                 (lead)
652                 VALUES (?)|;
653   }
654   do_query($form, $dbh, $query, @values);
655
656   $dbh->disconnect;
657
658   $main::lxdebug->leave_sub();
659 }
660
661 sub delete_lead {
662   $main::lxdebug->enter_sub();
663
664   my ($self, $myconfig, $form) = @_;
665
666   # connect to database
667   my $dbh = $form->dbconnect($myconfig);
668
669   $query = qq|DELETE FROM leads
670               WHERE id = ?|;
671   do_query($form, $dbh, $query, $form->{id});
672
673   $dbh->disconnect;
674
675   $main::lxdebug->leave_sub();
676 }
677
678 sub business {
679   $main::lxdebug->enter_sub();
680
681   my ($self, $myconfig, $form) = @_;
682
683   # connect to database
684   my $dbh = $form->dbconnect($myconfig);
685
686   my $query = qq|SELECT id, description, discount, customernumberinit
687                  FROM business
688                  ORDER BY 2|;
689
690   $sth = $dbh->prepare($query);
691   $sth->execute || $form->dberror($query);
692
693   $form->{ALL};
694   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
695     push @{ $form->{ALL} }, $ref;
696   }
697
698   $sth->finish;
699   $dbh->disconnect;
700
701   $main::lxdebug->leave_sub();
702 }
703
704 sub get_business {
705   $main::lxdebug->enter_sub();
706
707   my ($self, $myconfig, $form) = @_;
708
709   # connect to database
710   my $dbh = $form->dbconnect($myconfig);
711
712   my $query =
713     qq|SELECT b.description, b.discount, b.customernumberinit
714        FROM business b
715        WHERE b.id = ?|;
716   my $sth = $dbh->prepare($query);
717   $sth->execute($form->{id}) || $form->dberror($query . " ($form->{id})");
718
719   my $ref = $sth->fetchrow_hashref(NAME_lc);
720
721   map { $form->{$_} = $ref->{$_} } keys %$ref;
722
723   $sth->finish;
724
725   $dbh->disconnect;
726
727   $main::lxdebug->leave_sub();
728 }
729
730 sub save_business {
731   $main::lxdebug->enter_sub();
732
733   my ($self, $myconfig, $form) = @_;
734
735   # connect to database
736   my $dbh = $form->dbconnect($myconfig);
737
738   my @values = ($form->{description}, $form->{discount},
739                 $form->{customernumberinit});
740   # id is the old record
741   if ($form->{id}) {
742     $query = qq|UPDATE business SET
743                 description = ?,
744                 discount = ?,
745                 customernumberinit = ?
746                 WHERE id = ?|;
747     push(@values, $form->{id});
748   } else {
749     $query = qq|INSERT INTO business
750                 (description, discount, customernumberinit)
751                 VALUES (?, ?, ?)|;
752   }
753   do_query($form, $dbh, $query, @values);
754
755   $dbh->disconnect;
756
757   $main::lxdebug->leave_sub();
758 }
759
760 sub delete_business {
761   $main::lxdebug->enter_sub();
762
763   my ($self, $myconfig, $form) = @_;
764
765   # connect to database
766   my $dbh = $form->dbconnect($myconfig);
767
768   $query = qq|DELETE FROM business
769               WHERE id = ?|;
770   do_query($form, $dbh, $query, $form->{id});
771
772   $dbh->disconnect;
773
774   $main::lxdebug->leave_sub();
775 }
776
777
778 sub language {
779   $main::lxdebug->enter_sub();
780
781   my ($self, $myconfig, $form, $return_list) = @_;
782
783   # connect to database
784   my $dbh = $form->dbconnect($myconfig);
785
786   my $query =
787     "SELECT id, description, template_code, article_code, " .
788     "  output_numberformat, output_dateformat, output_longdates " .
789     "FROM language ORDER BY description";
790
791   $sth = $dbh->prepare($query);
792   $sth->execute || $form->dberror($query);
793
794   my $ary = [];
795
796   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
797     push(@{ $ary }, $ref);
798   }
799
800   $sth->finish;
801   $dbh->disconnect;
802
803   $main::lxdebug->leave_sub();
804
805   if ($return_list) {
806     return @{$ary};
807   } else {
808     $form->{ALL} = $ary;
809   }
810 }
811
812 sub get_language {
813   $main::lxdebug->enter_sub();
814
815   my ($self, $myconfig, $form) = @_;
816
817   # connect to database
818   my $dbh = $form->dbconnect($myconfig);
819
820   my $query =
821     "SELECT description, template_code, article_code, " .
822     "  output_numberformat, output_dateformat, output_longdates " .
823     "FROM language WHERE id = ?";
824   my $sth = $dbh->prepare($query);
825   $sth->execute($form->{"id"}) || $form->dberror($query . " ($form->{id})");
826
827   my $ref = $sth->fetchrow_hashref(NAME_lc);
828
829   map { $form->{$_} = $ref->{$_} } keys %$ref;
830
831   $sth->finish;
832
833   $dbh->disconnect;
834
835   $main::lxdebug->leave_sub();
836 }
837
838 sub get_language_details {
839   $main::lxdebug->enter_sub();
840
841   my ($self, $myconfig, $form, $id) = @_;
842
843   # connect to database
844   my $dbh = $form->dbconnect($myconfig);
845
846   my $query =
847     "SELECT template_code, " .
848     "  output_numberformat, output_dateformat, output_longdates " .
849     "FROM language WHERE id = ?";
850   my @res = selectrow_query($form, $dbh, $query, $id);
851   $dbh->disconnect;
852
853   $main::lxdebug->leave_sub();
854
855   return @res;
856 }
857
858 sub save_language {
859   $main::lxdebug->enter_sub();
860
861   my ($self, $myconfig, $form) = @_;
862
863   # connect to database
864   my $dbh = $form->dbconnect($myconfig);
865   my (@values, $query);
866
867   map({ push(@values, $form->{$_}); }
868       qw(description template_code article_code
869          output_numberformat output_dateformat output_longdates));
870
871   # id is the old record
872   if ($form->{id}) {
873     $query =
874       "UPDATE language SET " .
875       "  description = ?, template_code = ?, article_code = ?, " .
876       "  output_numberformat = ?, output_dateformat = ?, " .
877       "  output_longdates = ? " .
878       "WHERE id = ?";
879     push(@values, $form->{id});
880   } else {
881     $query =
882       "INSERT INTO language (" .
883       "  description, template_code, article_code, " .
884       "  output_numberformat, output_dateformat, output_longdates" .
885       ") VALUES (?, ?, ?, ?, ?, ?)";
886   }
887   do_query($form, $dbh, $query, @values);
888
889   $dbh->disconnect;
890
891   $main::lxdebug->leave_sub();
892 }
893
894 sub delete_language {
895   $main::lxdebug->enter_sub();
896
897   my ($self, $myconfig, $form) = @_;
898
899   # connect to database
900   my $dbh = $form->dbconnect_noauto($myconfig);
901
902   foreach my $table (qw(translation_payment_terms units_language)) {
903     my $query = qq|DELETE FROM $table WHERE language_id = ?|;
904     do_query($form, $dbh, $query, $form->{"id"});
905   }
906
907   $query = "DELETE FROM language WHERE id = ?";
908   do_query($form, $dbh, $query, $form->{"id"});
909
910   $dbh->commit();
911   $dbh->disconnect;
912
913   $main::lxdebug->leave_sub();
914 }
915
916
917 sub buchungsgruppe {
918   $main::lxdebug->enter_sub();
919
920   my ($self, $myconfig, $form) = @_;
921
922   # connect to database
923   my $dbh = $form->dbconnect($myconfig);
924
925   my $query = qq|SELECT id, description,
926                  inventory_accno_id,
927                  (SELECT accno FROM chart WHERE id = inventory_accno_id) AS inventory_accno,
928                  income_accno_id_0,
929                  (SELECT accno FROM chart WHERE id = income_accno_id_0) AS income_accno_0,
930                  expense_accno_id_0,
931                  (SELECT accno FROM chart WHERE id = expense_accno_id_0) AS expense_accno_0,
932                  income_accno_id_1,
933                  (SELECT accno FROM chart WHERE id = income_accno_id_1) AS income_accno_1,
934                  expense_accno_id_1,
935                  (SELECT accno FROM chart WHERE id = expense_accno_id_1) AS expense_accno_1,
936                  income_accno_id_2,
937                  (SELECT accno FROM chart WHERE id = income_accno_id_2) AS income_accno_2,
938                  expense_accno_id_2,
939                  (select accno FROM chart WHERE id = expense_accno_id_2) AS expense_accno_2,
940                  income_accno_id_3,
941                  (SELECT accno FROM chart WHERE id = income_accno_id_3) AS income_accno_3,
942                  expense_accno_id_3,
943                  (SELECT accno FROM chart WHERE id = expense_accno_id_3) AS expense_accno_3
944                  FROM buchungsgruppen
945                  ORDER BY sortkey|;
946
947   $sth = $dbh->prepare($query);
948   $sth->execute || $form->dberror($query);
949
950   $form->{ALL} = [];
951   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
952     push @{ $form->{ALL} }, $ref;
953   }
954
955   $sth->finish;
956   $dbh->disconnect;
957
958   $main::lxdebug->leave_sub();
959 }
960
961 sub get_buchungsgruppe {
962   $main::lxdebug->enter_sub();
963
964   my ($self, $myconfig, $form) = @_;
965
966   # connect to database
967   my $dbh = $form->dbconnect($myconfig);
968
969   if ($form->{id}) {
970     my $query =
971       qq|SELECT description, inventory_accno_id,
972          (SELECT accno FROM chart WHERE id = inventory_accno_id) AS inventory_accno,
973          income_accno_id_0,
974          (SELECT accno FROM chart WHERE id = income_accno_id_0) AS income_accno_0,
975          expense_accno_id_0,
976          (SELECT accno FROM chart WHERE id = expense_accno_id_0) AS expense_accno_0,
977          income_accno_id_1,
978          (SELECT accno FROM chart WHERE id = income_accno_id_1) AS income_accno_1,
979          expense_accno_id_1,
980          (SELECT accno FROM chart WHERE id = expense_accno_id_1) AS expense_accno_1,
981          income_accno_id_2,
982          (SELECT accno FROM chart WHERE id = income_accno_id_2) AS income_accno_2,
983          expense_accno_id_2,
984          (select accno FROM chart WHERE id = expense_accno_id_2) AS expense_accno_2,
985          income_accno_id_3,
986          (SELECT accno FROM chart WHERE id = income_accno_id_3) AS income_accno_3,
987          expense_accno_id_3,
988          (SELECT accno FROM chart WHERE id = expense_accno_id_3) AS expense_accno_3
989          FROM buchungsgruppen
990          WHERE id = ?|;
991     my $sth = $dbh->prepare($query);
992     $sth->execute($form->{id}) || $form->dberror($query . " ($form->{id})");
993
994     my $ref = $sth->fetchrow_hashref(NAME_lc);
995
996     map { $form->{$_} = $ref->{$_} } keys %$ref;
997
998     $sth->finish;
999
1000     my $query =
1001       qq|SELECT count(id) = 0 AS orphaned
1002          FROM parts
1003          WHERE buchungsgruppen_id = ?|;
1004     ($form->{orphaned}) = selectrow_query($form, $dbh, $query, $form->{id});
1005   }
1006
1007   $query = "SELECT inventory_accno_id, income_accno_id, expense_accno_id ".
1008     "FROM defaults";
1009   ($form->{"std_inventory_accno_id"}, $form->{"std_income_accno_id"},
1010    $form->{"std_expense_accno_id"}) = selectrow_query($form, $dbh, $query);
1011
1012   my $module = "IC";
1013   $query = qq|SELECT c.accno, c.description, c.link, c.id,
1014               d.inventory_accno_id, d.income_accno_id, d.expense_accno_id
1015               FROM chart c, defaults d
1016               WHERE c.link LIKE '%$module%'
1017               ORDER BY c.accno|;
1018
1019
1020   my $sth = $dbh->prepare($query);
1021   $sth->execute || $form->dberror($query);
1022   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1023     foreach my $key (split(/:/, $ref->{link})) {
1024       if (!$form->{"std_inventory_accno_id"} && ($key eq "IC")) {
1025         $form->{"std_inventory_accno_id"} = $ref->{"id"};
1026       }
1027       if ($key =~ /$module/) {
1028         if (   ($ref->{id} eq $ref->{inventory_accno_id})
1029             || ($ref->{id} eq $ref->{income_accno_id})
1030             || ($ref->{id} eq $ref->{expense_accno_id})) {
1031           push @{ $form->{"${module}_links"}{$key} },
1032             { accno       => $ref->{accno},
1033               description => $ref->{description},
1034               selected    => "selected",
1035               id          => $ref->{id} };
1036         } else {
1037           push @{ $form->{"${module}_links"}{$key} },
1038             { accno       => $ref->{accno},
1039               description => $ref->{description},
1040               selected    => "",
1041               id          => $ref->{id} };
1042         }
1043       }
1044     }
1045   }
1046   $sth->finish;
1047
1048
1049   $dbh->disconnect;
1050
1051   $main::lxdebug->leave_sub();
1052 }
1053
1054 sub save_buchungsgruppe {
1055   $main::lxdebug->enter_sub();
1056
1057   my ($self, $myconfig, $form) = @_;
1058
1059   # connect to database
1060   my $dbh = $form->dbconnect($myconfig);
1061
1062   my @values = ($form->{description}, $form->{inventory_accno_id},
1063                 $form->{income_accno_id_0}, $form->{expense_accno_id_0},
1064                 $form->{income_accno_id_1}, $form->{expense_accno_id_1},
1065                 $form->{income_accno_id_2}, $form->{expense_accno_id_2},
1066                 $form->{income_accno_id_3}, $form->{expense_accno_id_3});
1067
1068   my $query;
1069
1070   # id is the old record
1071   if ($form->{id}) {
1072     $query = qq|UPDATE buchungsgruppen SET
1073                 description = ?, inventory_accno_id = ?,
1074                 income_accno_id_0 = ?, expense_accno_id_0 = ?,
1075                 income_accno_id_1 = ?, expense_accno_id_1 = ?,
1076                 income_accno_id_2 = ?, expense_accno_id_2 = ?,
1077                 income_accno_id_3 = ?, expense_accno_id_3 = ?
1078                 WHERE id = ?|;
1079     push(@values, $form->{id});
1080   } else {
1081     $query = qq|SELECT COALESCE(MAX(sortkey) + 1, 1) FROM buchungsgruppen|;
1082     my ($sortkey) = $dbh->selectrow_array($query);
1083     $form->dberror($query) if ($dbh->err);
1084     push(@values, $sortkey);
1085     $query = qq|INSERT INTO buchungsgruppen
1086                 (description, inventory_accno_id,
1087                 income_accno_id_0, expense_accno_id_0,
1088                 income_accno_id_1, expense_accno_id_1,
1089                 income_accno_id_2, expense_accno_id_2,
1090                 income_accno_id_3, expense_accno_id_3,
1091                 sortkey)
1092                 VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
1093   }
1094   do_query($form, $dbh, $query, @values);
1095
1096   $dbh->disconnect;
1097
1098   $main::lxdebug->leave_sub();
1099 }
1100
1101 sub delete_buchungsgruppe {
1102   $main::lxdebug->enter_sub();
1103
1104   my ($self, $myconfig, $form) = @_;
1105
1106   # connect to database
1107   my $dbh = $form->dbconnect($myconfig);
1108
1109   $query = qq|DELETE FROM buchungsgruppen WHERE id = ?|;
1110   do_query($form, $dbh, $query, $form->{id});
1111
1112   $dbh->disconnect;
1113
1114   $main::lxdebug->leave_sub();
1115 }
1116
1117 sub swap_sortkeys {
1118   $main::lxdebug->enter_sub();
1119
1120   my ($self, $myconfig, $form, $table) = @_;
1121
1122   # connect to database
1123   my $dbh = $form->get_standard_dbh($myconfig);
1124
1125   my $query =
1126     qq|SELECT
1127        (SELECT sortkey FROM $table WHERE id = ?) AS sortkey1,
1128        (SELECT sortkey FROM $table WHERE id = ?) AS sortkey2|;
1129   my @values   = ($form->{"id1"}, $form->{"id2"});
1130   my @sortkeys = selectrow_query($form, $dbh, $query, @values);
1131
1132   $query  = qq|UPDATE $table SET sortkey = ? WHERE id = ?|;
1133   my $sth = prepare_query($form, $dbh, $query);
1134
1135   do_statement($form, $sth, $query, $sortkeys[1], $form->{"id1"});
1136   do_statement($form, $sth, $query, $sortkeys[0], $form->{"id2"});
1137
1138   $sth->finish();
1139
1140   $dbh->commit();
1141
1142   $main::lxdebug->leave_sub();
1143 }
1144
1145 sub printer {
1146   $main::lxdebug->enter_sub();
1147
1148   my ($self, $myconfig, $form) = @_;
1149
1150   # connect to database
1151   my $dbh = $form->dbconnect($myconfig);
1152
1153   my $query = qq|SELECT id, printer_description, template_code, printer_command
1154                  FROM printers
1155                  ORDER BY 2|;
1156
1157   $sth = $dbh->prepare($query);
1158   $sth->execute || $form->dberror($query);
1159
1160   $form->{"ALL"} = [];
1161   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1162     push @{ $form->{ALL} }, $ref;
1163   }
1164
1165   $sth->finish;
1166   $dbh->disconnect;
1167
1168   $main::lxdebug->leave_sub();
1169 }
1170
1171 sub get_printer {
1172   $main::lxdebug->enter_sub();
1173
1174   my ($self, $myconfig, $form) = @_;
1175
1176   # connect to database
1177   my $dbh = $form->dbconnect($myconfig);
1178
1179   my $query =
1180     qq|SELECT p.printer_description, p.template_code, p.printer_command
1181        FROM printers p
1182        WHERE p.id = ?|;
1183   my $sth = $dbh->prepare($query);
1184   $sth->execute($form->{id}) || $form->dberror($query . " ($form->{id})");
1185
1186   my $ref = $sth->fetchrow_hashref(NAME_lc);
1187
1188   map { $form->{$_} = $ref->{$_} } keys %$ref;
1189
1190   $sth->finish;
1191
1192   $dbh->disconnect;
1193
1194   $main::lxdebug->leave_sub();
1195 }
1196
1197 sub save_printer {
1198   $main::lxdebug->enter_sub();
1199
1200   my ($self, $myconfig, $form) = @_;
1201
1202   # connect to database
1203   my $dbh = $form->dbconnect($myconfig);
1204
1205   my @values = ($form->{printer_description},
1206                 $form->{template_code},
1207                 $form->{printer_command});
1208
1209   # id is the old record
1210   if ($form->{id}) {
1211     $query = qq|UPDATE printers SET
1212                 printer_description = ?, template_code = ?, printer_command = ?
1213                 WHERE id = ?|;
1214     push(@values, $form->{id});
1215   } else {
1216     $query = qq|INSERT INTO printers
1217                 (printer_description, template_code, printer_command)
1218                 VALUES (?, ?, ?)|;
1219   }
1220   do_query($form, $dbh, $query, @values);
1221
1222   $dbh->disconnect;
1223
1224   $main::lxdebug->leave_sub();
1225 }
1226
1227 sub delete_printer {
1228   $main::lxdebug->enter_sub();
1229
1230   my ($self, $myconfig, $form) = @_;
1231
1232   # connect to database
1233   my $dbh = $form->dbconnect($myconfig);
1234
1235   $query = qq|DELETE FROM printers
1236               WHERE id = ?|;
1237   do_query($form, $dbh, $query, $form->{id});
1238
1239   $dbh->disconnect;
1240
1241   $main::lxdebug->leave_sub();
1242 }
1243
1244 sub payment {
1245   $main::lxdebug->enter_sub();
1246
1247   my ($self, $myconfig, $form) = @_;
1248
1249   # connect to database
1250   my $dbh = $form->dbconnect($myconfig);
1251
1252   my $query = qq|SELECT * FROM payment_terms ORDER BY sortkey|;
1253
1254   $sth = $dbh->prepare($query);
1255   $sth->execute || $form->dberror($query);
1256
1257   $form->{ALL} = [];
1258   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1259     push @{ $form->{ALL} }, $ref;
1260   }
1261
1262   $sth->finish;
1263   $dbh->disconnect;
1264
1265   $main::lxdebug->leave_sub();
1266 }
1267
1268 sub get_payment {
1269   $main::lxdebug->enter_sub();
1270
1271   my ($self, $myconfig, $form) = @_;
1272
1273   # connect to database
1274   my $dbh = $form->dbconnect($myconfig);
1275
1276   my $query = qq|SELECT * FROM payment_terms WHERE id = ?|;
1277   my $sth = $dbh->prepare($query);
1278   $sth->execute($form->{"id"}) || $form->dberror($query . " ($form->{id})");
1279
1280   my $ref = $sth->fetchrow_hashref(NAME_lc);
1281   map { $form->{$_} = $ref->{$_} } keys %$ref;
1282   $sth->finish();
1283
1284   $query =
1285     qq|SELECT t.language_id, t.description_long, l.description AS language | .
1286     qq|FROM translation_payment_terms t | .
1287     qq|LEFT JOIN language l ON t.language_id = l.id | .
1288     qq|WHERE t.payment_terms_id = ? | .
1289     qq|UNION | .
1290     qq|SELECT l.id AS language_id, NULL AS description_long, | .
1291     qq|  l.description AS language | .
1292     qq|FROM language l|;
1293   $sth = $dbh->prepare($query);
1294   $sth->execute($form->{"id"}) || $form->dberror($query . " ($form->{id})");
1295
1296   my %mapping;
1297   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1298     $mapping{ $ref->{"language_id"} } = $ref
1299       unless (defined($mapping{ $ref->{"language_id"} }));
1300   }
1301   $sth->finish;
1302
1303   $form->{"TRANSLATION"} = [sort({ $a->{"language"} cmp $b->{"language"} }
1304                                  values(%mapping))];
1305
1306   $dbh->disconnect;
1307
1308   $main::lxdebug->leave_sub();
1309 }
1310
1311 sub save_payment {
1312   $main::lxdebug->enter_sub();
1313
1314   my ($self, $myconfig, $form) = @_;
1315
1316   # connect to database
1317   my $dbh = $form->dbconnect_noauto($myconfig);
1318
1319   my $query;
1320
1321   if (!$form->{id}) {
1322     $query = qq|SELECT nextval('id'), COALESCE(MAX(sortkey) + 1, 1) | .
1323       qq|FROM payment_terms|;
1324     my $sortkey;
1325     ($form->{id}, $sortkey) = selectrow_query($form, $dbh, $query);
1326
1327     $query = qq|INSERT INTO payment_terms (id, sortkey) VALUES (?, ?)|;
1328     do_query($form, $dbh, $query, $form->{id}, $sortkey);
1329
1330   } else {
1331     $query =
1332       qq|DELETE FROM translation_payment_terms | .
1333       qq|WHERE payment_terms_id = ?|;
1334     do_query($form, $dbh, $query, $form->{"id"});
1335   }
1336
1337   $query = qq|UPDATE payment_terms SET
1338               description = ?, description_long = ?,
1339               terms_netto = ?, terms_skonto = ?,
1340               percent_skonto = ?
1341               WHERE id = ?|;
1342   my @values = ($form->{description}, $form->{description_long},
1343                 $form->{terms_netto} * 1, $form->{terms_skonto} * 1,
1344                 $form->{percent_skonto} * 1,
1345                 $form->{id});
1346   do_query($form, $dbh, $query, @values);
1347
1348   $query = qq|SELECT id FROM language|;
1349   my @language_ids;
1350   my $sth = $dbh->prepare($query);
1351   $sth->execute() || $form->dberror($query);
1352
1353   while (my ($id) = $sth->fetchrow_array()) {
1354     push(@language_ids, $id);
1355   }
1356   $sth->finish();
1357
1358   $query =
1359     qq|INSERT INTO translation_payment_terms | .
1360     qq|(language_id, payment_terms_id, description_long) | .
1361     qq|VALUES (?, ?, ?)|;
1362   $sth = $dbh->prepare($query);
1363
1364   foreach my $language_id (@language_ids) {
1365     do_statement($form, $sth, $query, $language_id, $form->{"id"},
1366                  $form->{"description_long_${language_id}"});
1367   }
1368   $sth->finish();
1369
1370   $dbh->commit();
1371   $dbh->disconnect;
1372
1373   $main::lxdebug->leave_sub();
1374 }
1375
1376 sub delete_payment {
1377   $main::lxdebug->enter_sub();
1378
1379   my ($self, $myconfig, $form) = @_;
1380
1381   # connect to database
1382   my $dbh = $form->dbconnect_noauto($myconfig);
1383
1384   my $query =
1385     qq|DELETE FROM translation_payment_terms WHERE payment_terms_id = ?|;
1386   do_query($form, $dbh, $query, $form->{"id"});
1387
1388   $query = qq|DELETE FROM payment_terms WHERE id = ?|;
1389   do_query($form, $dbh, $query, $form->{"id"});
1390
1391   $dbh->commit();
1392   $dbh->disconnect;
1393
1394   $main::lxdebug->leave_sub();
1395 }
1396
1397
1398 sub prepare_template_filename {
1399   $main::lxdebug->enter_sub();
1400
1401   my ($self, $myconfig, $form) = @_;
1402
1403   my ($filename, $display_filename);
1404
1405   if ($form->{type} eq "stylesheet") {
1406     $filename = "css/$myconfig->{stylesheet}";
1407     $display_filename = $myconfig->{stylesheet};
1408
1409   } else {
1410     $filename = $form->{formname};
1411
1412     if ($form->{language}) {
1413       my ($id, $template_code) = split(/--/, $form->{language});
1414       $filename .= "_${template_code}";
1415     }
1416
1417     if ($form->{printer}) {
1418       my ($id, $template_code) = split(/--/, $form->{printer});
1419       $filename .= "_${template_code}";
1420     }
1421
1422     $filename .= "." . ($form->{format} eq "html" ? "html" : "tex");
1423     $filename =~ s|.*/||;
1424     $display_filename = $filename;
1425     $filename = "$myconfig->{templates}/$filename";
1426   }
1427
1428   $main::lxdebug->leave_sub();
1429
1430   return ($filename, $display_filename);
1431 }
1432
1433
1434 sub load_template {
1435   $main::lxdebug->enter_sub();
1436
1437   my ($self, $filename) = @_;
1438
1439   my ($content, $lines) = ("", 0);
1440
1441   local *TEMPLATE;
1442
1443   if (open(TEMPLATE, $filename)) {
1444     while (<TEMPLATE>) {
1445       $content .= $_;
1446       $lines++;
1447     }
1448     close(TEMPLATE);
1449   }
1450
1451   $main::lxdebug->leave_sub();
1452
1453   return ($content, $lines);
1454 }
1455
1456 sub save_template {
1457   $main::lxdebug->enter_sub();
1458
1459   my ($self, $filename, $content) = @_;
1460
1461   local *TEMPLATE;
1462
1463   my $error = "";
1464
1465   if (open(TEMPLATE, ">$filename")) {
1466     $content =~ s/\r\n/\n/g;
1467     print(TEMPLATE $content);
1468     close(TEMPLATE);
1469   } else {
1470     $error = $!;
1471   }
1472
1473   $main::lxdebug->leave_sub();
1474
1475   return $error;
1476 }
1477
1478 sub save_preferences {
1479   $main::lxdebug->enter_sub();
1480
1481   my ($self, $myconfig, $form, $memberfile, $userspath, $webdav) = @_;
1482
1483   map { ($form->{$_}) = split(/--/, $form->{$_}) }
1484     qw(inventory_accno income_accno expense_accno fxgain_accno fxloss_accno);
1485
1486   my @a;
1487   $form->{curr} =~ s/ //g;
1488   map { push(@a, uc pack "A3", $_) if $_ } split(/:/, $form->{curr});
1489   $form->{curr} = join ':', @a;
1490
1491   # connect to database
1492   my $dbh = $form->dbconnect_noauto($myconfig);
1493
1494   # these defaults are database wide
1495   # user specific variables are in myconfig
1496   # save defaults
1497   my $query =
1498     qq|UPDATE defaults SET | .
1499     qq|inventory_accno_id = (SELECT c.id FROM chart c WHERE c.accno = ?), | .
1500     qq|income_accno_id = (SELECT c.id FROM chart c WHERE c.accno = ?), | .
1501     qq|expense_accno_id = (SELECT c.id FROM chart c WHERE c.accno = ?), | .
1502     qq|fxgain_accno_id = (SELECT c.id FROM chart c WHERE c.accno = ?), | .
1503     qq|fxloss_accno_id = (SELECT c.id FROM chart c WHERE c.accno = ?), | .
1504     qq|invnumber = ?, | .
1505     qq|cnnumber  = ?, | .
1506     qq|sonumber = ?, | .
1507     qq|ponumber = ?, | .
1508     qq|sqnumber = ?, | .
1509     qq|rfqnumber = ?, | .
1510     qq|customernumber = ?, | .
1511     qq|vendornumber = ?, | .
1512     qq|articlenumber = ?, | .
1513     qq|servicenumber = ?, | .
1514     qq|yearend = ?, | .
1515     qq|curr = ?, | .
1516     qq|businessnumber = ?|;
1517   my @values = ($form->{inventory_accno}, $form->{income_accno},
1518                 $form->{expense_accno},
1519                 $form->{fxgain_accno}, $form->{fxloss_accno},
1520                 $form->{invnumber}, $form->{cnnumber},
1521                 $form->{sonumber}, $form->{ponumber},
1522                 $form->{sqnumber}, $form->{rfqnumber},
1523                 $form->{customernumber}, $form->{vendornumber},
1524                 $form->{articlenumber}, $form->{servicenumber},
1525                 $form->{yearend}, $form->{curr},
1526                 $form->{businessnumber});
1527   do_query($form, $dbh, $query, @values);
1528
1529   # update name
1530   $query = qq|UPDATE employee
1531               SET name = ?
1532               WHERE login = ?|;
1533   do_query($form, $dbh, $query, $form->{name}, $form->{login});
1534
1535   my $rc = $dbh->commit;
1536   $dbh->disconnect;
1537
1538   # save first currency in myconfig
1539   $form->{currency} = substr($form->{curr}, 0, 3);
1540
1541   my $myconfig = new User "$memberfile", "$form->{login}";
1542
1543   foreach my $item (keys %$form) {
1544     $myconfig->{$item} = $form->{$item};
1545   }
1546
1547   $myconfig->save_member($memberfile, $userspath);
1548
1549   if ($webdav) {
1550     @webdavdirs =
1551       qw(angebote bestellungen rechnungen anfragen lieferantenbestellungen einkaufsrechnungen);
1552     foreach $directory (@webdavdirs) {
1553       $file = "webdav/" . $directory . "/webdav-user";
1554       if ($myconfig->{$directory}) {
1555         open(HTACCESS, "$file") or die "cannot open webdav-user $!\n";
1556         while (<HTACCESS>) {
1557           ($login, $password) = split(/:/, $_);
1558           if ($login ne $form->{login}) {
1559             $newfile .= $_;
1560           }
1561         }
1562         close(HTACCESS);
1563         open(HTACCESS, "> $file") or die "cannot open webdav-user $!\n";
1564         $newfile .= $myconfig->{login} . ":" . $myconfig->{password} . "\n";
1565         print(HTACCESS $newfile);
1566         close(HTACCESS);
1567       } else {
1568         $form->{$directory} = 0;
1569         open(HTACCESS, "$file") or die "cannot open webdav-user $!\n";
1570         while (<HTACCESS>) {
1571           ($login, $password) = split(/:/, $_);
1572           if ($login ne $form->{login}) {
1573             $newfile .= $_;
1574           }
1575         }
1576         close(HTACCESS);
1577         open(HTACCESS, "> $file") or die "cannot open webdav-user $!\n";
1578         print(HTACCESS $newfile);
1579         close(HTACCESS);
1580       }
1581     }
1582   }
1583
1584   $main::lxdebug->leave_sub();
1585
1586   return $rc;
1587 }
1588
1589 sub defaultaccounts {
1590   $main::lxdebug->enter_sub();
1591
1592   my ($self, $myconfig, $form) = @_;
1593
1594   # connect to database
1595   my $dbh = $form->dbconnect($myconfig);
1596
1597   # get defaults from defaults table
1598   my $query = qq|SELECT * FROM defaults|;
1599   my $sth   = $dbh->prepare($query);
1600   $sth->execute || $form->dberror($query);
1601
1602   $form->{defaults}             = $sth->fetchrow_hashref(NAME_lc);
1603   $form->{defaults}{IC}         = $form->{defaults}{inventory_accno_id};
1604   $form->{defaults}{IC_income}  = $form->{defaults}{income_accno_id};
1605   $form->{defaults}{IC_expense} = $form->{defaults}{expense_accno_id};
1606   $form->{defaults}{FX_gain}    = $form->{defaults}{fxgain_accno_id};
1607   $form->{defaults}{FX_loss}    = $form->{defaults}{fxloss_accno_id};
1608
1609   $sth->finish;
1610
1611   $query = qq|SELECT c.id, c.accno, c.description, c.link
1612               FROM chart c
1613               WHERE c.link LIKE '%IC%'
1614               ORDER BY c.accno|;
1615   $sth = $dbh->prepare($query);
1616   $sth->execute || $self->dberror($query);
1617
1618   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1619     foreach my $key (split(/:/, $ref->{link})) {
1620       if ($key =~ /IC/) {
1621         $nkey = $key;
1622         if ($key =~ /cogs/) {
1623           $nkey = "IC_expense";
1624         }
1625         if ($key =~ /sale/) {
1626           $nkey = "IC_income";
1627         }
1628         %{ $form->{IC}{$nkey}{ $ref->{accno} } } = (
1629                                              id          => $ref->{id},
1630                                              description => $ref->{description}
1631         );
1632       }
1633     }
1634   }
1635   $sth->finish;
1636
1637   $query = qq|SELECT c.id, c.accno, c.description
1638               FROM chart c
1639               WHERE c.category = 'I'
1640               AND c.charttype = 'A'
1641               ORDER BY c.accno|;
1642   $sth = $dbh->prepare($query);
1643   $sth->execute || $self->dberror($query);
1644
1645   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1646     %{ $form->{IC}{FX_gain}{ $ref->{accno} } } = (
1647                                              id          => $ref->{id},
1648                                              description => $ref->{description}
1649     );
1650   }
1651   $sth->finish;
1652
1653   $query = qq|SELECT c.id, c.accno, c.description
1654               FROM chart c
1655               WHERE c.category = 'E'
1656               AND c.charttype = 'A'
1657               ORDER BY c.accno|;
1658   $sth = $dbh->prepare($query);
1659   $sth->execute || $self->dberror($query);
1660
1661   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1662     %{ $form->{IC}{FX_loss}{ $ref->{accno} } } = (
1663                                              id          => $ref->{id},
1664                                              description => $ref->{description}
1665     );
1666   }
1667   $sth->finish;
1668
1669   # now get the tax rates and numbers
1670   $query = qq|SELECT c.id, c.accno, c.description,
1671               t.rate * 100 AS rate, t.taxnumber
1672               FROM chart c, tax t
1673               WHERE c.id = t.chart_id|;
1674
1675   $sth = $dbh->prepare($query);
1676   $sth->execute || $form->dberror($query);
1677
1678   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1679     $form->{taxrates}{ $ref->{accno} }{id}          = $ref->{id};
1680     $form->{taxrates}{ $ref->{accno} }{description} = $ref->{description};
1681     $form->{taxrates}{ $ref->{accno} }{taxnumber}   = $ref->{taxnumber}
1682       if $ref->{taxnumber};
1683     $form->{taxrates}{ $ref->{accno} }{rate} = $ref->{rate} if $ref->{rate};
1684   }
1685
1686   $sth->finish;
1687   $dbh->disconnect;
1688
1689   $main::lxdebug->leave_sub();
1690 }
1691
1692 sub closedto {
1693   $main::lxdebug->enter_sub();
1694
1695   my ($self, $myconfig, $form) = @_;
1696
1697   my $dbh = $form->dbconnect($myconfig);
1698
1699   my $query = qq|SELECT closedto, revtrans FROM defaults|;
1700   my $sth   = $dbh->prepare($query);
1701   $sth->execute || $form->dberror($query);
1702
1703   ($form->{closedto}, $form->{revtrans}) = $sth->fetchrow_array;
1704
1705   $sth->finish;
1706
1707   $dbh->disconnect;
1708
1709   $main::lxdebug->leave_sub();
1710 }
1711
1712 sub closebooks {
1713   $main::lxdebug->enter_sub();
1714
1715   my ($self, $myconfig, $form) = @_;
1716
1717   my $dbh = $form->dbconnect($myconfig);
1718
1719   my ($query, @values);
1720
1721   if ($form->{revtrans}) {
1722     $query = qq|UPDATE defaults SET closedto = NULL, revtrans = '1'|;
1723
1724   } elsif ($form->{closedto}) {
1725     $query = qq|UPDATE defaults SET closedto = ?, revtrans = '0'|;
1726     @values = (conv_date($form->{closedto}));
1727
1728   } else {
1729     $query = qq|UPDATE defaults SET closedto = NULL, revtrans = '0'|;
1730   }
1731
1732   # set close in defaults
1733   do_query($form, $dbh, $query, @values);
1734
1735   $dbh->disconnect;
1736
1737   $main::lxdebug->leave_sub();
1738 }
1739
1740 sub get_base_unit {
1741   my ($self, $units, $unit_name, $factor) = @_;
1742
1743   $factor = 1 unless ($factor);
1744
1745   my $unit = $units->{$unit_name};
1746
1747   if (!defined($unit) || !$unit->{"base_unit"} ||
1748       ($unit_name eq $unit->{"base_unit"})) {
1749     return ($unit_name, $factor);
1750   }
1751
1752   return AM->get_base_unit($units, $unit->{"base_unit"}, $factor * $unit->{"factor"});
1753 }
1754
1755 sub retrieve_units {
1756   $main::lxdebug->enter_sub();
1757
1758   my ($self, $myconfig, $form, $type, $prefix) = @_;
1759
1760   my $dbh = $form->dbconnect($myconfig);
1761
1762   my $query = "SELECT *, base_unit AS original_base_unit FROM units";
1763   my @values;
1764   if ($type) {
1765     $query .= " WHERE (type = ?)";
1766     @values = ($type);
1767   }
1768
1769   my $sth = $dbh->prepare($query);
1770   $sth->execute(@values) || $form->dberror($query . " (" . join(", ", @values) . ")");
1771
1772   my $units = {};
1773   while (my $ref = $sth->fetchrow_hashref()) {
1774     $units->{$ref->{"name"}} = $ref;
1775   }
1776   $sth->finish();
1777
1778   my $query_lang = "SELECT id, template_code FROM language ORDER BY description";
1779   $sth = $dbh->prepare($query_lang);
1780   $sth->execute() || $form->dberror($query_lang);
1781   my @languages;
1782   while ($ref = $sth->fetchrow_hashref()) {
1783     push(@languages, $ref);
1784   }
1785   $sth->finish();
1786
1787   $query_lang = "SELECT ul.localized, ul.localized_plural, l.id, l.template_code " .
1788     "FROM units_language ul " .
1789     "LEFT JOIN language l ON ul.language_id = l.id " .
1790     "WHERE ul.unit = ?";
1791   $sth = $dbh->prepare($query_lang);
1792
1793   foreach my $unit (values(%{$units})) {
1794     ($unit->{"${prefix}base_unit"}, $unit->{"${prefix}factor"}) = AM->get_base_unit($units, $unit->{"name"});
1795
1796     $unit->{"LANGUAGES"} = {};
1797     foreach my $lang (@languages) {
1798       $unit->{"LANGUAGES"}->{$lang->{"template_code"}} = { "template_code" => $lang->{"template_code"} };
1799     }
1800
1801     $sth->execute($unit->{"name"}) || $form->dberror($query_lang . " (" . $unit->{"name"} . ")");
1802     while ($ref = $sth->fetchrow_hashref()) {
1803       map({ $unit->{"LANGUAGES"}->{$ref->{"template_code"}}->{$_} = $ref->{$_} } keys(%{$ref}));
1804     }
1805   }
1806   $sth->finish();
1807
1808   $dbh->disconnect();
1809
1810   $main::lxdebug->leave_sub();
1811
1812   return $units;
1813 }
1814
1815 sub translate_units {
1816   $main::lxdebug->enter_sub();
1817
1818   my ($self, $form, $template_code, $unit, $amount) = @_;
1819
1820   my $units = $self->retrieve_units(\%main::myconfig, $form);
1821
1822   my $h = $units->{$unit}->{"LANGUAGES"}->{$template_code};
1823   my $new_unit = $unit;
1824   if ($h) {
1825     if (($amount != 1) && $h->{"localized_plural"}) {
1826       $new_unit = $h->{"localized_plural"};
1827     } elsif ($h->{"localized"}) {
1828       $new_unit = $h->{"localized"};
1829     }
1830   }
1831
1832   $main::lxdebug->leave_sub();
1833
1834   return $new_unit;
1835 }
1836
1837 sub units_in_use {
1838   $main::lxdebug->enter_sub();
1839
1840   my ($self, $myconfig, $form, $units) = @_;
1841
1842   my $dbh = $form->dbconnect($myconfig);
1843
1844   map({ $_->{"in_use"} = 0; } values(%{$units}));
1845
1846   foreach my $unit (values(%{$units})) {
1847     my $base_unit = $unit->{"original_base_unit"};
1848     while ($base_unit) {
1849       $units->{$base_unit}->{"in_use"} = 1;
1850       $units->{$base_unit}->{"DEPENDING_UNITS"} = [] unless ($units->{$base_unit}->{"DEPENDING_UNITS"});
1851       push(@{$units->{$base_unit}->{"DEPENDING_UNITS"}}, $unit->{"name"});
1852       $base_unit = $units->{$base_unit}->{"original_base_unit"};
1853     }
1854   }
1855
1856   foreach my $unit (values(%{$units})) {
1857     map({ $_ = $dbh->quote($_); } @{$unit->{"DEPENDING_UNITS"}});
1858
1859     foreach my $table (qw(parts invoice orderitems)) {
1860       my $query = "SELECT COUNT(*) FROM $table WHERE unit ";
1861
1862       if (0 == scalar(@{$unit->{"DEPENDING_UNITS"}})) {
1863         $query .= "= " . $dbh->quote($unit->{"name"});
1864       } else {
1865         $query .= "IN (" . $dbh->quote($unit->{"name"}) . "," .
1866           join(",", map({ $dbh->quote($_) } @{$unit->{"DEPENDING_UNITS"}})) . ")";
1867       }
1868
1869       my ($count) = $dbh->selectrow_array($query);
1870       $form->dberror($query) if ($dbh->err);
1871
1872       if ($count) {
1873         $unit->{"in_use"} = 1;
1874         last;
1875       }
1876     }
1877   }
1878
1879   $dbh->disconnect();
1880
1881   $main::lxdebug->leave_sub();
1882 }
1883
1884 sub unit_select_data {
1885   $main::lxdebug->enter_sub();
1886
1887   my ($self, $units, $selected, $empty_entry) = @_;
1888
1889   my $select = [];
1890
1891   if ($empty_entry) {
1892     push(@{$select}, { "name" => "", "base_unit" => "", "factor" => "", "selected" => "" });
1893   }
1894
1895   foreach my $unit (sort({ $units->{$a}->{"sortkey"} <=> $units->{$b}->{"sortkey"} } keys(%{$units}))) {
1896     push(@{$select}, { "name" => $unit,
1897                        "base_unit" => $units->{$unit}->{"base_unit"},
1898                        "factor" => $units->{$unit}->{"factor"},
1899                        "selected" => ($unit eq $selected) ? "selected" : "" });
1900   }
1901
1902   $main::lxdebug->leave_sub();
1903
1904   return $select;
1905 }
1906
1907 sub unit_select_html {
1908   $main::lxdebug->enter_sub();
1909
1910   my ($self, $units, $name, $selected, $convertible_into) = @_;
1911
1912   my $select = "<select name=${name}>";
1913
1914   foreach my $unit (sort({ $units->{$a}->{"sortkey"} <=> $units->{$b}->{"sortkey"} } keys(%{$units}))) {
1915     if (!$convertible_into ||
1916         ($units->{$convertible_into} &&
1917          ($units->{$convertible_into}->{"base_unit"} eq $units->{$unit}->{"base_unit"}))) {
1918       $select .= "<option" . (($unit eq $selected) ? " selected" : "") . ">${unit}</option>";
1919     }
1920   }
1921   $select .= "</select>";
1922
1923   $main::lxdebug->leave_sub();
1924
1925   return $select;
1926 }
1927
1928 sub add_unit {
1929   $main::lxdebug->enter_sub();
1930
1931   my ($self, $myconfig, $form, $name, $base_unit, $factor, $type, $languages) = @_;
1932
1933   my $dbh = $form->dbconnect_noauto($myconfig);
1934
1935   my $query = qq|SELECT COALESCE(MAX(sortkey), 0) + 1 FROM units|;
1936   my ($sortkey) = selectrow_query($form, $dbh, $query);
1937
1938   $query = "INSERT INTO units (name, base_unit, factor, type, sortkey) " .
1939     "VALUES (?, ?, ?, ?, ?)";
1940   do_query($form, $dbh, $query, $name, $base_unit, $factor, $type, $sortkey);
1941
1942   if ($languages) {
1943     $query = "INSERT INTO units_language (unit, language_id, localized, localized_plural) VALUES (?, ?, ?, ?)";
1944     my $sth = $dbh->prepare($query);
1945     foreach my $lang (@{$languages}) {
1946       my @values = ($name, $lang->{"id"}, $lang->{"localized"}, $lang->{"localized_plural"});
1947       $sth->execute(@values) || $form->dberror($query . " (" . join(", ", @values) . ")");
1948     }
1949     $sth->finish();
1950   }
1951
1952   $dbh->commit();
1953   $dbh->disconnect();
1954
1955   $main::lxdebug->leave_sub();
1956 }
1957
1958 sub save_units {
1959   $main::lxdebug->enter_sub();
1960
1961   my ($self, $myconfig, $form, $type, $units, $delete_units) = @_;
1962
1963   my $dbh = $form->dbconnect_noauto($myconfig);
1964
1965   my ($base_unit, $unit, $sth, $query);
1966
1967   $query = "DELETE FROM units_language";
1968   $dbh->do($query) || $form->dberror($query);
1969
1970   if ($delete_units && (0 != scalar(@{$delete_units}))) {
1971     $query = "DELETE FROM units WHERE name IN (";
1972     map({ $query .= "?," } @{$delete_units});
1973     substr($query, -1, 1) = ")";
1974     $dbh->do($query, undef, @{$delete_units}) ||
1975       $form->dberror($query . " (" . join(", ", @{$delete_units}) . ")");
1976   }
1977
1978   $query = "UPDATE units SET name = ?, base_unit = ?, factor = ? WHERE name = ?";
1979   $sth = $dbh->prepare($query);
1980
1981   my $query_lang = "INSERT INTO units_language (unit, language_id, localized, localized_plural) VALUES (?, ?, ?, ?)";
1982   my $sth_lang = $dbh->prepare($query_lang);
1983
1984   foreach $unit (values(%{$units})) {
1985     $unit->{"depth"} = 0;
1986     my $base_unit = $unit;
1987     while ($base_unit->{"base_unit"}) {
1988       $unit->{"depth"}++;
1989       $base_unit = $units->{$base_unit->{"base_unit"}};
1990     }
1991   }
1992
1993   foreach $unit (sort({ $a->{"depth"} <=> $b->{"depth"} } values(%{$units}))) {
1994     if ($unit->{"LANGUAGES"}) {
1995       foreach my $lang (@{$unit->{"LANGUAGES"}}) {
1996         next unless ($lang->{"id"} && $lang->{"localized"});
1997         my @values = ($unit->{"name"}, $lang->{"id"}, $lang->{"localized"}, $lang->{"localized_plural"});
1998         $sth_lang->execute(@values) || $form->dberror($query_lang . " (" . join(", ", @values) . ")");
1999       }
2000     }
2001
2002     next if ($unit->{"unchanged_unit"});
2003
2004     my @values = ($unit->{"name"}, $unit->{"base_unit"}, $unit->{"factor"}, $unit->{"old_name"});
2005     $sth->execute(@values) || $form->dberror($query . " (" . join(", ", @values) . ")");
2006   }
2007
2008   $sth->finish();
2009   $sth_lang->finish();
2010   $dbh->commit();
2011   $dbh->disconnect();
2012
2013   $main::lxdebug->leave_sub();
2014 }
2015
2016 sub swap_units {
2017   $main::lxdebug->enter_sub();
2018
2019   my ($self, $myconfig, $form, $dir, $name_1, $unit_type) = @_;
2020
2021   my $dbh = $form->dbconnect_noauto($myconfig);
2022
2023   my $query;
2024
2025   $query = qq|SELECT sortkey FROM units WHERE name = ?|;
2026   my ($sortkey_1) = selectrow_query($form, $dbh, $query, $name_1);
2027
2028   $query =
2029     qq|SELECT sortkey FROM units | .
2030     qq|WHERE sortkey | . ($dir eq "down" ? ">" : "<") . qq| ? AND type = ? | .
2031     qq|ORDER BY sortkey | . ($dir eq "down" ? "ASC" : "DESC") . qq| LIMIT 1|;
2032   my ($sortkey_2) = selectrow_query($form, $dbh, $query, $sortkey_1, $unit_type);
2033
2034   if (defined($sortkey_1)) {
2035     $query = qq|SELECT name FROM units WHERE sortkey = ${sortkey_2}|;
2036     my ($name_2) = selectrow_query($form, $dbh, $query);
2037
2038     if (defined($name_2)) {
2039       $query = qq|UPDATE units SET sortkey = ? WHERE name = ?|;
2040       my $sth = $dbh->prepare($query);
2041
2042       do_statement($form, $sth, $query, $sortkey_1, $name_2);
2043       do_statement($form, $sth, $query, $sortkey_2, $name_1);
2044     }
2045   }
2046
2047   $dbh->commit();
2048   $dbh->disconnect();
2049
2050   $main::lxdebug->leave_sub();
2051 }
2052
2053 sub taxes {
2054   $main::lxdebug->enter_sub();
2055
2056   my ($self, $myconfig, $form) = @_;
2057
2058   # connect to database
2059   my $dbh = $form->dbconnect($myconfig);
2060
2061   my $query = qq|SELECT
2062                    t.id,
2063                    t.taxkey,
2064                    t.taxdescription,
2065                    round(t.rate * 100, 2) AS rate,
2066                    (SELECT accno FROM chart WHERE id = chart_id) AS taxnumber,
2067                    (SELECT description FROM chart WHERE id = chart_id) AS account_description
2068                  FROM tax t
2069                  ORDER BY taxkey|;
2070
2071   $sth = $dbh->prepare($query);
2072   $sth->execute || $form->dberror($query);
2073
2074   $form->{TAX} = [];
2075   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
2076     push @{ $form->{TAX} }, $ref;
2077   }
2078
2079   $sth->finish;
2080   $dbh->disconnect;
2081
2082   $main::lxdebug->leave_sub();
2083 }
2084
2085 sub get_tax_accounts {
2086   $main::lxdebug->enter_sub();
2087
2088   my ($self, $myconfig, $form) = @_;
2089
2090   my $dbh = $form->dbconnect($myconfig);
2091
2092   # get Accounts from chart
2093   my $query = qq{ SELECT
2094                  id,
2095                  accno || ' - ' || description AS taxaccount
2096                FROM chart
2097                WHERE link LIKE '%_tax%'
2098                ORDER BY accno
2099              };
2100
2101   $sth = $dbh->prepare($query);
2102   $sth->execute || $form->dberror($query);
2103
2104   $form->{ACCOUNTS} = [];
2105   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
2106     push @{ $form->{ACCOUNTS} }, $ref;
2107   }
2108
2109   $sth->finish;
2110
2111   $dbh->disconnect;
2112
2113   $main::lxdebug->leave_sub();
2114 }
2115
2116 sub get_tax {
2117   $main::lxdebug->enter_sub();
2118
2119   my ($self, $myconfig, $form) = @_;
2120
2121   # connect to database
2122   my $dbh = $form->dbconnect($myconfig);
2123
2124   my $query = qq|SELECT
2125                    taxkey,
2126                    taxdescription,
2127                    round(rate * 100, 2) AS rate,
2128                    chart_id
2129                  FROM tax
2130                  WHERE id = ? |;
2131
2132   my $sth = $dbh->prepare($query);
2133   $sth->execute($form->{id}) || $form->dberror($query . " ($form->{id})");
2134
2135   my $ref = $sth->fetchrow_hashref(NAME_lc);
2136
2137   map { $form->{$_} = $ref->{$_} } keys %$ref;
2138
2139   $sth->finish;
2140
2141   # see if it is used by a taxkey
2142   $query = qq|SELECT count(*) FROM taxkeys
2143               WHERE tax_id = ? AND chart_id >0|;
2144
2145   ($form->{orphaned}) = selectrow_query($form, $dbh, $query, $form->{id});
2146
2147   $form->{orphaned} = !$form->{orphaned};
2148   $sth->finish;
2149
2150   if (!$form->{orphaned} ) {
2151     $query = qq|SELECT DISTINCT c.id, c.accno
2152                 FROM taxkeys tk
2153                 JOIN   tax t ON (t.id = tk.tax_id)
2154                 JOIN chart c ON (c.id = tk.chart_id)
2155                 WHERE tk.tax_id = ?|;
2156
2157     $sth = $dbh->prepare($query);
2158     $sth->execute($form->{id}) || $form->dberror($query . " ($form->{id})");
2159
2160     $form->{TAXINUSE} = [];
2161     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
2162       push @{ $form->{TAXINUSE} }, $ref;
2163     }
2164
2165     $sth->finish;
2166   }
2167
2168   $dbh->disconnect;
2169
2170   $main::lxdebug->leave_sub();
2171 }
2172
2173 sub save_tax {
2174   $main::lxdebug->enter_sub();
2175
2176   my ($self, $myconfig, $form) = @_;
2177
2178   # connect to database
2179   my $dbh = $form->get_standard_dbh($myconfig);
2180
2181   $form->{rate} = $form->{rate} / 100;
2182
2183   my @values = ($form->{taxkey}, $form->{taxdescription}, $form->{rate}, $form->{chart_id}, $form->{chart_id} );
2184   if ($form->{id} ne "") {
2185     $query = qq|UPDATE tax SET
2186                   taxkey         = ?,
2187                   taxdescription = ?,
2188                   rate           = ?,
2189                   chart_id       = ?,
2190                   taxnumber      = (SELECT accno FROM chart WHERE id= ? )
2191                 WHERE id = ?|;
2192     push(@values, $form->{id});
2193
2194   } else {
2195     #ok
2196     $query = qq|INSERT INTO tax (
2197                   taxkey,
2198                   taxdescription,
2199                   rate,
2200                   chart_id,
2201                   taxnumber
2202                 )
2203                 VALUES (?, ?, ?, ?, (SELECT accno FROM chart WHERE id = ?) )|;
2204   }
2205   do_query($form, $dbh, $query, @values);
2206
2207   $dbh->commit();
2208
2209   $main::lxdebug->leave_sub();
2210 }
2211
2212 sub delete_tax {
2213   $main::lxdebug->enter_sub();
2214
2215   my ($self, $myconfig, $form) = @_;
2216
2217   # connect to database
2218   my $dbh = $form->get_standard_dbh($myconfig);
2219
2220   $query = qq|DELETE FROM tax
2221               WHERE id = ?|;
2222   do_query($form, $dbh, $query, $form->{id});
2223
2224   $dbh->commit();
2225
2226   $main::lxdebug->leave_sub();
2227 }
2228
2229 sub save_price_factor {
2230   $main::lxdebug->enter_sub();
2231
2232   my ($self, $myconfig, $form) = @_;
2233
2234   # connect to database
2235   my $dbh = $form->get_standard_dbh($myconfig);
2236
2237   my $query;
2238   my @values = ($form->{description}, conv_i($form->{factor}));
2239
2240   if ($form->{id}) {
2241     $query = qq|UPDATE price_factors SET description = ?, factor = ? WHERE id = ?|;
2242     push @values, conv_i($form->{id});
2243
2244   } else {
2245     $query = qq|INSERT INTO price_factors (description, factor, sortkey) VALUES (?, ?, (SELECT COALESCE(MAX(sortkey), 0) + 1 FROM price_factors))|;
2246   }
2247
2248   do_query($form, $dbh, $query, @values);
2249
2250   $dbh->commit();
2251
2252   $main::lxdebug->leave_sub();
2253 }
2254
2255 sub get_all_price_factors {
2256   $main::lxdebug->enter_sub();
2257
2258   my ($self, $myconfig, $form) = @_;
2259
2260   # connect to database
2261   my $dbh = $form->get_standard_dbh($myconfig);
2262
2263   $form->{PRICE_FACTORS} = selectall_hashref_query($form, $dbh, qq|SELECT * FROM price_factors ORDER BY sortkey|);
2264
2265   $main::lxdebug->leave_sub();
2266 }
2267
2268 sub get_price_factor {
2269   $main::lxdebug->enter_sub();
2270
2271   my ($self, $myconfig, $form) = @_;
2272
2273   # connect to database
2274   my $dbh = $form->get_standard_dbh($myconfig);
2275
2276   my $query = qq|SELECT description, factor,
2277                    ((SELECT COUNT(*) FROM parts      WHERE price_factor_id = ?) +
2278                     (SELECT COUNT(*) FROM invoice    WHERE price_factor_id = ?) +
2279                     (SELECT COUNT(*) FROM orderitems WHERE price_factor_id = ?)) = 0 AS orphaned
2280                  FROM price_factors WHERE id = ?|;
2281
2282   ($form->{description}, $form->{factor}, $form->{orphaned}) = selectrow_query($form, $dbh, $query, (conv_i($form->{id})) x 4);
2283
2284   $main::lxdebug->leave_sub();
2285 }
2286
2287 sub delete_price_factor {
2288   $main::lxdebug->enter_sub();
2289
2290   my ($self, $myconfig, $form) = @_;
2291
2292   # connect to database
2293   my $dbh = $form->get_standard_dbh($myconfig);
2294
2295   do_query($form, $dbh, qq|DELETE FROM price_factors WHERE id = ?|, conv_i($form->{id}));
2296   $dbh->commit();
2297
2298   $main::lxdebug->leave_sub();
2299 }
2300
2301
2302 1;