Kosmetik.
[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               ranking = ?,
1340               terms_netto = ?, terms_skonto = ?,
1341               percent_skonto = ?
1342               WHERE id = ?|;
1343   my @values = ($form->{description}, $form->{description_long},
1344                 $form->{ranking} * 1,
1345                 $form->{terms_netto} * 1, $form->{terms_skonto} * 1,
1346                 $form->{percent_skonto} * 1,
1347                 $form->{id});
1348   do_query($form, $dbh, $query, @values);
1349
1350   $query = qq|SELECT id FROM language|;
1351   my @language_ids;
1352   my $sth = $dbh->prepare($query);
1353   $sth->execute() || $form->dberror($query);
1354
1355   while (my ($id) = $sth->fetchrow_array()) {
1356     push(@language_ids, $id);
1357   }
1358   $sth->finish();
1359
1360   $query =
1361     qq|INSERT INTO translation_payment_terms | .
1362     qq|(language_id, payment_terms_id, description_long) | .
1363     qq|VALUES (?, ?, ?)|;
1364   $sth = $dbh->prepare($query);
1365
1366   foreach my $language_id (@language_ids) {
1367     do_statement($form, $sth, $query, $language_id, $form->{"id"},
1368                  $form->{"description_long_${language_id}"});
1369   }
1370   $sth->finish();
1371
1372   $dbh->commit();
1373   $dbh->disconnect;
1374
1375   $main::lxdebug->leave_sub();
1376 }
1377
1378 sub delete_payment {
1379   $main::lxdebug->enter_sub();
1380
1381   my ($self, $myconfig, $form) = @_;
1382
1383   # connect to database
1384   my $dbh = $form->dbconnect_noauto($myconfig);
1385
1386   my $query =
1387     qq|DELETE FROM translation_payment_terms WHERE payment_terms_id = ?|;
1388   do_query($form, $dbh, $query, $form->{"id"});
1389
1390   $query = qq|DELETE FROM payment_terms WHERE id = ?|;
1391   do_query($form, $dbh, $query, $form->{"id"});
1392
1393   $dbh->commit();
1394   $dbh->disconnect;
1395
1396   $main::lxdebug->leave_sub();
1397 }
1398
1399
1400 sub prepare_template_filename {
1401   $main::lxdebug->enter_sub();
1402
1403   my ($self, $myconfig, $form) = @_;
1404
1405   my ($filename, $display_filename);
1406
1407   if ($form->{type} eq "stylesheet") {
1408     $filename = "css/$myconfig->{stylesheet}";
1409     $display_filename = $myconfig->{stylesheet};
1410
1411   } else {
1412     $filename = $form->{formname};
1413
1414     if ($form->{language}) {
1415       my ($id, $template_code) = split(/--/, $form->{language});
1416       $filename .= "_${template_code}";
1417     }
1418
1419     if ($form->{printer}) {
1420       my ($id, $template_code) = split(/--/, $form->{printer});
1421       $filename .= "_${template_code}";
1422     }
1423
1424     $filename .= "." . ($form->{format} eq "html" ? "html" : "tex");
1425     $filename =~ s|.*/||;
1426     $display_filename = $filename;
1427     $filename = "$myconfig->{templates}/$filename";
1428   }
1429
1430   $main::lxdebug->leave_sub();
1431
1432   return ($filename, $display_filename);
1433 }
1434
1435
1436 sub load_template {
1437   $main::lxdebug->enter_sub();
1438
1439   my ($self, $filename) = @_;
1440
1441   my ($content, $lines) = ("", 0);
1442
1443   local *TEMPLATE;
1444
1445   if (open(TEMPLATE, $filename)) {
1446     while (<TEMPLATE>) {
1447       $content .= $_;
1448       $lines++;
1449     }
1450     close(TEMPLATE);
1451   }
1452
1453   $main::lxdebug->leave_sub();
1454
1455   return ($content, $lines);
1456 }
1457
1458 sub save_template {
1459   $main::lxdebug->enter_sub();
1460
1461   my ($self, $filename, $content) = @_;
1462
1463   local *TEMPLATE;
1464
1465   my $error = "";
1466
1467   if (open(TEMPLATE, ">$filename")) {
1468     $content =~ s/\r\n/\n/g;
1469     print(TEMPLATE $content);
1470     close(TEMPLATE);
1471   } else {
1472     $error = $!;
1473   }
1474
1475   $main::lxdebug->leave_sub();
1476
1477   return $error;
1478 }
1479
1480 sub save_preferences {
1481   $main::lxdebug->enter_sub();
1482
1483   my ($self, $myconfig, $form, $memberfile, $userspath, $webdav) = @_;
1484
1485   map { ($form->{$_}) = split(/--/, $form->{$_}) }
1486     qw(inventory_accno income_accno expense_accno fxgain_accno fxloss_accno);
1487
1488   my @a;
1489   $form->{curr} =~ s/ //g;
1490   map { push(@a, uc pack "A3", $_) if $_ } split(/:/, $form->{curr});
1491   $form->{curr} = join ':', @a;
1492
1493   # connect to database
1494   my $dbh = $form->dbconnect_noauto($myconfig);
1495
1496   # these defaults are database wide
1497   # user specific variables are in myconfig
1498   # save defaults
1499   my $query =
1500     qq|UPDATE defaults SET | .
1501     qq|inventory_accno_id = (SELECT c.id FROM chart c WHERE c.accno = ?), | .
1502     qq|income_accno_id = (SELECT c.id FROM chart c WHERE c.accno = ?), | .
1503     qq|expense_accno_id = (SELECT c.id FROM chart c WHERE c.accno = ?), | .
1504     qq|fxgain_accno_id = (SELECT c.id FROM chart c WHERE c.accno = ?), | .
1505     qq|fxloss_accno_id = (SELECT c.id FROM chart c WHERE c.accno = ?), | .
1506     qq|invnumber = ?, | .
1507     qq|cnnumber  = ?, | .
1508     qq|sonumber = ?, | .
1509     qq|ponumber = ?, | .
1510     qq|sqnumber = ?, | .
1511     qq|rfqnumber = ?, | .
1512     qq|customernumber = ?, | .
1513     qq|vendornumber = ?, | .
1514     qq|articlenumber = ?, | .
1515     qq|servicenumber = ?, | .
1516     qq|yearend = ?, | .
1517     qq|curr = ?, | .
1518     qq|businessnumber = ?|;
1519   my @values = ($form->{inventory_accno}, $form->{income_accno},
1520                 $form->{expense_accno},
1521                 $form->{fxgain_accno}, $form->{fxloss_accno},
1522                 $form->{invnumber}, $form->{cnnumber},
1523                 $form->{sonumber}, $form->{ponumber},
1524                 $form->{sqnumber}, $form->{rfqnumber},
1525                 $form->{customernumber}, $form->{vendornumber},
1526                 $form->{articlenumber}, $form->{servicenumber},
1527                 $form->{yearend}, $form->{curr},
1528                 $form->{businessnumber});
1529   do_query($form, $dbh, $query, @values);
1530
1531   # update name
1532   $query = qq|UPDATE employee
1533               SET name = ?
1534               WHERE login = ?|;
1535   do_query($form, $dbh, $query, $form->{name}, $form->{login});
1536
1537   my $rc = $dbh->commit;
1538   $dbh->disconnect;
1539
1540   # save first currency in myconfig
1541   $form->{currency} = substr($form->{curr}, 0, 3);
1542
1543   my $myconfig = new User "$memberfile", "$form->{login}";
1544
1545   foreach my $item (keys %$form) {
1546     $myconfig->{$item} = $form->{$item};
1547   }
1548
1549   $myconfig->save_member($memberfile, $userspath);
1550
1551   if ($webdav) {
1552     @webdavdirs =
1553       qw(angebote bestellungen rechnungen anfragen lieferantenbestellungen einkaufsrechnungen);
1554     foreach $directory (@webdavdirs) {
1555       $file = "webdav/" . $directory . "/webdav-user";
1556       if ($myconfig->{$directory}) {
1557         open(HTACCESS, "$file") or die "cannot open webdav-user $!\n";
1558         while (<HTACCESS>) {
1559           ($login, $password) = split(/:/, $_);
1560           if ($login ne $form->{login}) {
1561             $newfile .= $_;
1562           }
1563         }
1564         close(HTACCESS);
1565         open(HTACCESS, "> $file") or die "cannot open webdav-user $!\n";
1566         $newfile .= $myconfig->{login} . ":" . $myconfig->{password} . "\n";
1567         print(HTACCESS $newfile);
1568         close(HTACCESS);
1569       } else {
1570         $form->{$directory} = 0;
1571         open(HTACCESS, "$file") or die "cannot open webdav-user $!\n";
1572         while (<HTACCESS>) {
1573           ($login, $password) = split(/:/, $_);
1574           if ($login ne $form->{login}) {
1575             $newfile .= $_;
1576           }
1577         }
1578         close(HTACCESS);
1579         open(HTACCESS, "> $file") or die "cannot open webdav-user $!\n";
1580         print(HTACCESS $newfile);
1581         close(HTACCESS);
1582       }
1583     }
1584   }
1585
1586   $main::lxdebug->leave_sub();
1587
1588   return $rc;
1589 }
1590
1591 sub defaultaccounts {
1592   $main::lxdebug->enter_sub();
1593
1594   my ($self, $myconfig, $form) = @_;
1595
1596   # connect to database
1597   my $dbh = $form->dbconnect($myconfig);
1598
1599   # get defaults from defaults table
1600   my $query = qq|SELECT * FROM defaults|;
1601   my $sth   = $dbh->prepare($query);
1602   $sth->execute || $form->dberror($query);
1603
1604   $form->{defaults}             = $sth->fetchrow_hashref(NAME_lc);
1605   $form->{defaults}{IC}         = $form->{defaults}{inventory_accno_id};
1606   $form->{defaults}{IC_income}  = $form->{defaults}{income_accno_id};
1607   $form->{defaults}{IC_expense} = $form->{defaults}{expense_accno_id};
1608   $form->{defaults}{FX_gain}    = $form->{defaults}{fxgain_accno_id};
1609   $form->{defaults}{FX_loss}    = $form->{defaults}{fxloss_accno_id};
1610
1611   $sth->finish;
1612
1613   $query = qq|SELECT c.id, c.accno, c.description, c.link
1614               FROM chart c
1615               WHERE c.link LIKE '%IC%'
1616               ORDER BY c.accno|;
1617   $sth = $dbh->prepare($query);
1618   $sth->execute || $self->dberror($query);
1619
1620   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1621     foreach my $key (split(/:/, $ref->{link})) {
1622       if ($key =~ /IC/) {
1623         $nkey = $key;
1624         if ($key =~ /cogs/) {
1625           $nkey = "IC_expense";
1626         }
1627         if ($key =~ /sale/) {
1628           $nkey = "IC_income";
1629         }
1630         %{ $form->{IC}{$nkey}{ $ref->{accno} } } = (
1631                                              id          => $ref->{id},
1632                                              description => $ref->{description}
1633         );
1634       }
1635     }
1636   }
1637   $sth->finish;
1638
1639   $query = qq|SELECT c.id, c.accno, c.description
1640               FROM chart c
1641               WHERE c.category = 'I'
1642               AND c.charttype = 'A'
1643               ORDER BY c.accno|;
1644   $sth = $dbh->prepare($query);
1645   $sth->execute || $self->dberror($query);
1646
1647   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1648     %{ $form->{IC}{FX_gain}{ $ref->{accno} } } = (
1649                                              id          => $ref->{id},
1650                                              description => $ref->{description}
1651     );
1652   }
1653   $sth->finish;
1654
1655   $query = qq|SELECT c.id, c.accno, c.description
1656               FROM chart c
1657               WHERE c.category = 'E'
1658               AND c.charttype = 'A'
1659               ORDER BY c.accno|;
1660   $sth = $dbh->prepare($query);
1661   $sth->execute || $self->dberror($query);
1662
1663   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1664     %{ $form->{IC}{FX_loss}{ $ref->{accno} } } = (
1665                                              id          => $ref->{id},
1666                                              description => $ref->{description}
1667     );
1668   }
1669   $sth->finish;
1670
1671   # now get the tax rates and numbers
1672   $query = qq|SELECT c.id, c.accno, c.description,
1673               t.rate * 100 AS rate, t.taxnumber
1674               FROM chart c, tax t
1675               WHERE c.id = t.chart_id|;
1676
1677   $sth = $dbh->prepare($query);
1678   $sth->execute || $form->dberror($query);
1679
1680   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1681     $form->{taxrates}{ $ref->{accno} }{id}          = $ref->{id};
1682     $form->{taxrates}{ $ref->{accno} }{description} = $ref->{description};
1683     $form->{taxrates}{ $ref->{accno} }{taxnumber}   = $ref->{taxnumber}
1684       if $ref->{taxnumber};
1685     $form->{taxrates}{ $ref->{accno} }{rate} = $ref->{rate} if $ref->{rate};
1686   }
1687
1688   $sth->finish;
1689   $dbh->disconnect;
1690
1691   $main::lxdebug->leave_sub();
1692 }
1693
1694 sub closedto {
1695   $main::lxdebug->enter_sub();
1696
1697   my ($self, $myconfig, $form) = @_;
1698
1699   my $dbh = $form->dbconnect($myconfig);
1700
1701   my $query = qq|SELECT closedto, revtrans FROM defaults|;
1702   my $sth   = $dbh->prepare($query);
1703   $sth->execute || $form->dberror($query);
1704
1705   ($form->{closedto}, $form->{revtrans}) = $sth->fetchrow_array;
1706
1707   $sth->finish;
1708
1709   $dbh->disconnect;
1710
1711   $main::lxdebug->leave_sub();
1712 }
1713
1714 sub closebooks {
1715   $main::lxdebug->enter_sub();
1716
1717   my ($self, $myconfig, $form) = @_;
1718
1719   my $dbh = $form->dbconnect($myconfig);
1720
1721   my ($query, @values);
1722
1723   if ($form->{revtrans}) {
1724     $query = qq|UPDATE defaults SET closedto = NULL, revtrans = '1'|;
1725
1726   } elsif ($form->{closedto}) {
1727     $query = qq|UPDATE defaults SET closedto = ?, revtrans = '0'|;
1728     @values = (conv_date($form->{closedto}));
1729
1730   } else {
1731     $query = qq|UPDATE defaults SET closedto = NULL, revtrans = '0'|;
1732   }
1733
1734   # set close in defaults
1735   do_query($form, $dbh, $query, @values);
1736
1737   $dbh->disconnect;
1738
1739   $main::lxdebug->leave_sub();
1740 }
1741
1742 sub get_base_unit {
1743   my ($self, $units, $unit_name, $factor) = @_;
1744
1745   $factor = 1 unless ($factor);
1746
1747   my $unit = $units->{$unit_name};
1748
1749   if (!defined($unit) || !$unit->{"base_unit"} ||
1750       ($unit_name eq $unit->{"base_unit"})) {
1751     return ($unit_name, $factor);
1752   }
1753
1754   return AM->get_base_unit($units, $unit->{"base_unit"}, $factor * $unit->{"factor"});
1755 }
1756
1757 sub retrieve_units {
1758   $main::lxdebug->enter_sub();
1759
1760   my ($self, $myconfig, $form, $type, $prefix) = @_;
1761
1762   my $dbh = $form->dbconnect($myconfig);
1763
1764   my $query = "SELECT *, base_unit AS original_base_unit FROM units";
1765   my @values;
1766   if ($type) {
1767     $query .= " WHERE (type = ?)";
1768     @values = ($type);
1769   }
1770
1771   my $sth = $dbh->prepare($query);
1772   $sth->execute(@values) || $form->dberror($query . " (" . join(", ", @values) . ")");
1773
1774   my $units = {};
1775   while (my $ref = $sth->fetchrow_hashref()) {
1776     $units->{$ref->{"name"}} = $ref;
1777   }
1778   $sth->finish();
1779
1780   my $query_lang = "SELECT id, template_code FROM language ORDER BY description";
1781   $sth = $dbh->prepare($query_lang);
1782   $sth->execute() || $form->dberror($query_lang);
1783   my @languages;
1784   while ($ref = $sth->fetchrow_hashref()) {
1785     push(@languages, $ref);
1786   }
1787   $sth->finish();
1788
1789   $query_lang = "SELECT ul.localized, ul.localized_plural, l.id, l.template_code " .
1790     "FROM units_language ul " .
1791     "LEFT JOIN language l ON ul.language_id = l.id " .
1792     "WHERE ul.unit = ?";
1793   $sth = $dbh->prepare($query_lang);
1794
1795   foreach my $unit (values(%{$units})) {
1796     ($unit->{"${prefix}base_unit"}, $unit->{"${prefix}factor"}) = AM->get_base_unit($units, $unit->{"name"});
1797
1798     $unit->{"LANGUAGES"} = {};
1799     foreach my $lang (@languages) {
1800       $unit->{"LANGUAGES"}->{$lang->{"template_code"}} = { "template_code" => $lang->{"template_code"} };
1801     }
1802
1803     $sth->execute($unit->{"name"}) || $form->dberror($query_lang . " (" . $unit->{"name"} . ")");
1804     while ($ref = $sth->fetchrow_hashref()) {
1805       map({ $unit->{"LANGUAGES"}->{$ref->{"template_code"}}->{$_} = $ref->{$_} } keys(%{$ref}));
1806     }
1807   }
1808   $sth->finish();
1809
1810   $dbh->disconnect();
1811
1812   $main::lxdebug->leave_sub();
1813
1814   return $units;
1815 }
1816
1817 sub translate_units {
1818   $main::lxdebug->enter_sub();
1819
1820   my ($self, $form, $template_code, $unit, $amount) = @_;
1821
1822   my $units = $self->retrieve_units(\%main::myconfig, $form);
1823
1824   my $h = $units->{$unit}->{"LANGUAGES"}->{$template_code};
1825   my $new_unit = $unit;
1826   if ($h) {
1827     if (($amount != 1) && $h->{"localized_plural"}) {
1828       $new_unit = $h->{"localized_plural"};
1829     } elsif ($h->{"localized"}) {
1830       $new_unit = $h->{"localized"};
1831     }
1832   }
1833
1834   $main::lxdebug->leave_sub();
1835
1836   return $new_unit;
1837 }
1838
1839 sub units_in_use {
1840   $main::lxdebug->enter_sub();
1841
1842   my ($self, $myconfig, $form, $units) = @_;
1843
1844   my $dbh = $form->dbconnect($myconfig);
1845
1846   map({ $_->{"in_use"} = 0; } values(%{$units}));
1847
1848   foreach my $unit (values(%{$units})) {
1849     my $base_unit = $unit->{"original_base_unit"};
1850     while ($base_unit) {
1851       $units->{$base_unit}->{"in_use"} = 1;
1852       $units->{$base_unit}->{"DEPENDING_UNITS"} = [] unless ($units->{$base_unit}->{"DEPENDING_UNITS"});
1853       push(@{$units->{$base_unit}->{"DEPENDING_UNITS"}}, $unit->{"name"});
1854       $base_unit = $units->{$base_unit}->{"original_base_unit"};
1855     }
1856   }
1857
1858   foreach my $unit (values(%{$units})) {
1859     map({ $_ = $dbh->quote($_); } @{$unit->{"DEPENDING_UNITS"}});
1860
1861     foreach my $table (qw(parts invoice orderitems)) {
1862       my $query = "SELECT COUNT(*) FROM $table WHERE unit ";
1863
1864       if (0 == scalar(@{$unit->{"DEPENDING_UNITS"}})) {
1865         $query .= "= " . $dbh->quote($unit->{"name"});
1866       } else {
1867         $query .= "IN (" . $dbh->quote($unit->{"name"}) . "," .
1868           join(",", map({ $dbh->quote($_) } @{$unit->{"DEPENDING_UNITS"}})) . ")";
1869       }
1870
1871       my ($count) = $dbh->selectrow_array($query);
1872       $form->dberror($query) if ($dbh->err);
1873
1874       if ($count) {
1875         $unit->{"in_use"} = 1;
1876         last;
1877       }
1878     }
1879   }
1880
1881   $dbh->disconnect();
1882
1883   $main::lxdebug->leave_sub();
1884 }
1885
1886 sub unit_select_data {
1887   $main::lxdebug->enter_sub();
1888
1889   my ($self, $units, $selected, $empty_entry) = @_;
1890
1891   my $select = [];
1892
1893   if ($empty_entry) {
1894     push(@{$select}, { "name" => "", "base_unit" => "", "factor" => "", "selected" => "" });
1895   }
1896
1897   foreach my $unit (sort({ $units->{$a}->{"sortkey"} <=> $units->{$b}->{"sortkey"} } keys(%{$units}))) {
1898     push(@{$select}, { "name" => $unit,
1899                        "base_unit" => $units->{$unit}->{"base_unit"},
1900                        "factor" => $units->{$unit}->{"factor"},
1901                        "selected" => ($unit eq $selected) ? "selected" : "" });
1902   }
1903
1904   $main::lxdebug->leave_sub();
1905
1906   return $select;
1907 }
1908
1909 sub unit_select_html {
1910   $main::lxdebug->enter_sub();
1911
1912   my ($self, $units, $name, $selected, $convertible_into) = @_;
1913
1914   my $select = "<select name=${name}>";
1915
1916   foreach my $unit (sort({ $units->{$a}->{"sortkey"} <=> $units->{$b}->{"sortkey"} } keys(%{$units}))) {
1917     if (!$convertible_into ||
1918         ($units->{$convertible_into} &&
1919          ($units->{$convertible_into}->{"base_unit"} eq $units->{$unit}->{"base_unit"}))) {
1920       $select .= "<option" . (($unit eq $selected) ? " selected" : "") . ">${unit}</option>";
1921     }
1922   }
1923   $select .= "</select>";
1924
1925   $main::lxdebug->leave_sub();
1926
1927   return $select;
1928 }
1929
1930 sub add_unit {
1931   $main::lxdebug->enter_sub();
1932
1933   my ($self, $myconfig, $form, $name, $base_unit, $factor, $type, $languages) = @_;
1934
1935   my $dbh = $form->dbconnect_noauto($myconfig);
1936
1937   my $query = qq|SELECT COALESCE(MAX(sortkey), 0) + 1 FROM units|;
1938   my ($sortkey) = selectrow_query($form, $dbh, $query);
1939
1940   $query = "INSERT INTO units (name, base_unit, factor, type, sortkey) " .
1941     "VALUES (?, ?, ?, ?, ?)";
1942   do_query($form, $dbh, $query, $name, $base_unit, $factor, $type, $sortkey);
1943
1944   if ($languages) {
1945     $query = "INSERT INTO units_language (unit, language_id, localized, localized_plural) VALUES (?, ?, ?, ?)";
1946     my $sth = $dbh->prepare($query);
1947     foreach my $lang (@{$languages}) {
1948       my @values = ($name, $lang->{"id"}, $lang->{"localized"}, $lang->{"localized_plural"});
1949       $sth->execute(@values) || $form->dberror($query . " (" . join(", ", @values) . ")");
1950     }
1951     $sth->finish();
1952   }
1953
1954   $dbh->commit();
1955   $dbh->disconnect();
1956
1957   $main::lxdebug->leave_sub();
1958 }
1959
1960 sub save_units {
1961   $main::lxdebug->enter_sub();
1962
1963   my ($self, $myconfig, $form, $type, $units, $delete_units) = @_;
1964
1965   my $dbh = $form->dbconnect_noauto($myconfig);
1966
1967   my ($base_unit, $unit, $sth, $query);
1968
1969   $query = "DELETE FROM units_language";
1970   $dbh->do($query) || $form->dberror($query);
1971
1972   if ($delete_units && (0 != scalar(@{$delete_units}))) {
1973     $query = "DELETE FROM units WHERE name IN (";
1974     map({ $query .= "?," } @{$delete_units});
1975     substr($query, -1, 1) = ")";
1976     $dbh->do($query, undef, @{$delete_units}) ||
1977       $form->dberror($query . " (" . join(", ", @{$delete_units}) . ")");
1978   }
1979
1980   $query = "UPDATE units SET name = ?, base_unit = ?, factor = ? WHERE name = ?";
1981   $sth = $dbh->prepare($query);
1982
1983   my $query_lang = "INSERT INTO units_language (unit, language_id, localized, localized_plural) VALUES (?, ?, ?, ?)";
1984   my $sth_lang = $dbh->prepare($query_lang);
1985
1986   foreach $unit (values(%{$units})) {
1987     $unit->{"depth"} = 0;
1988     my $base_unit = $unit;
1989     while ($base_unit->{"base_unit"}) {
1990       $unit->{"depth"}++;
1991       $base_unit = $units->{$base_unit->{"base_unit"}};
1992     }
1993   }
1994
1995   foreach $unit (sort({ $a->{"depth"} <=> $b->{"depth"} } values(%{$units}))) {
1996     if ($unit->{"LANGUAGES"}) {
1997       foreach my $lang (@{$unit->{"LANGUAGES"}}) {
1998         next unless ($lang->{"id"} && $lang->{"localized"});
1999         my @values = ($unit->{"name"}, $lang->{"id"}, $lang->{"localized"}, $lang->{"localized_plural"});
2000         $sth_lang->execute(@values) || $form->dberror($query_lang . " (" . join(", ", @values) . ")");
2001       }
2002     }
2003
2004     next if ($unit->{"unchanged_unit"});
2005
2006     my @values = ($unit->{"name"}, $unit->{"base_unit"}, $unit->{"factor"}, $unit->{"old_name"});
2007     $sth->execute(@values) || $form->dberror($query . " (" . join(", ", @values) . ")");
2008   }
2009
2010   $sth->finish();
2011   $sth_lang->finish();
2012   $dbh->commit();
2013   $dbh->disconnect();
2014
2015   $main::lxdebug->leave_sub();
2016 }
2017
2018 sub swap_units {
2019   $main::lxdebug->enter_sub();
2020
2021   my ($self, $myconfig, $form, $dir, $name_1, $unit_type) = @_;
2022
2023   my $dbh = $form->dbconnect_noauto($myconfig);
2024
2025   my $query;
2026
2027   $query = qq|SELECT sortkey FROM units WHERE name = ?|;
2028   my ($sortkey_1) = selectrow_query($form, $dbh, $query, $name_1);
2029
2030   $query =
2031     qq|SELECT sortkey FROM units | .
2032     qq|WHERE sortkey | . ($dir eq "down" ? ">" : "<") . qq| ? AND type = ? | .
2033     qq|ORDER BY sortkey | . ($dir eq "down" ? "ASC" : "DESC") . qq| LIMIT 1|;
2034   my ($sortkey_2) = selectrow_query($form, $dbh, $query, $sortkey_1, $unit_type);
2035
2036   if (defined($sortkey_1)) {
2037     $query = qq|SELECT name FROM units WHERE sortkey = ${sortkey_2}|;
2038     my ($name_2) = selectrow_query($form, $dbh, $query);
2039
2040     if (defined($name_2)) {
2041       $query = qq|UPDATE units SET sortkey = ? WHERE name = ?|;
2042       my $sth = $dbh->prepare($query);
2043
2044       do_statement($form, $sth, $query, $sortkey_1, $name_2);
2045       do_statement($form, $sth, $query, $sortkey_2, $name_1);
2046     }
2047   }
2048
2049   $dbh->commit();
2050   $dbh->disconnect();
2051
2052   $main::lxdebug->leave_sub();
2053 }
2054
2055 sub taxes {
2056   $main::lxdebug->enter_sub();
2057
2058   my ($self, $myconfig, $form) = @_;
2059
2060   # connect to database
2061   my $dbh = $form->dbconnect($myconfig);
2062
2063   my $query = qq|SELECT
2064                    t.id,
2065                    t.taxkey,
2066                    t.taxdescription,
2067                    round(t.rate * 100, 2) AS rate,
2068                    (SELECT accno FROM chart WHERE id = chart_id) AS taxnumber,
2069                    (SELECT description FROM chart WHERE id = chart_id) AS account_description
2070                  FROM tax t
2071                  ORDER BY taxkey|;
2072
2073   $sth = $dbh->prepare($query);
2074   $sth->execute || $form->dberror($query);
2075
2076   $form->{TAX} = [];
2077   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
2078     push @{ $form->{TAX} }, $ref;
2079   }
2080
2081   $sth->finish;
2082   $dbh->disconnect;
2083
2084   $main::lxdebug->leave_sub();
2085 }
2086
2087 sub get_tax_accounts {
2088   $main::lxdebug->enter_sub();
2089
2090   my ($self, $myconfig, $form) = @_;
2091
2092   my $dbh = $form->dbconnect($myconfig);
2093
2094   # get Accounts from chart
2095   my $query = qq{ SELECT
2096                  id,
2097                  accno || ' - ' || description AS taxaccount
2098                FROM chart
2099                WHERE link LIKE '%_tax%'
2100                ORDER BY accno
2101              };
2102
2103   $sth = $dbh->prepare($query);
2104   $sth->execute || $form->dberror($query);
2105
2106   $form->{ACCOUNTS} = [];
2107   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
2108     push @{ $form->{ACCOUNTS} }, $ref;
2109   }
2110
2111   $sth->finish;
2112
2113   $dbh->disconnect;
2114
2115   $main::lxdebug->leave_sub();
2116 }
2117
2118 sub get_tax {
2119   $main::lxdebug->enter_sub();
2120
2121   my ($self, $myconfig, $form) = @_;
2122
2123   # connect to database
2124   my $dbh = $form->dbconnect($myconfig);
2125
2126   my $query = qq|SELECT
2127                    taxkey,
2128                    taxdescription,
2129                    round(rate * 100, 2) AS rate,
2130                    chart_id
2131                  FROM tax
2132                  WHERE id = ? |;
2133
2134   my $sth = $dbh->prepare($query);
2135   $sth->execute($form->{id}) || $form->dberror($query . " ($form->{id})");
2136
2137   my $ref = $sth->fetchrow_hashref(NAME_lc);
2138
2139   map { $form->{$_} = $ref->{$_} } keys %$ref;
2140
2141   $sth->finish;
2142
2143   # see if it is used by a taxkey
2144   $query = qq|SELECT count(*) FROM taxkeys
2145               WHERE tax_id = ? AND chart_id >0|;
2146
2147   ($form->{orphaned}) = selectrow_query($form, $dbh, $query, $form->{id});
2148
2149   $form->{orphaned} = !$form->{orphaned};
2150   $sth->finish;
2151
2152   if (!$form->{orphaned} ) {
2153     $query = qq|SELECT DISTINCT c.id, c.accno
2154                 FROM taxkeys tk
2155                 JOIN   tax t ON (t.id = tk.tax_id)
2156                 JOIN chart c ON (c.id = tk.chart_id)
2157                 WHERE tk.tax_id = ?|;
2158
2159     $sth = $dbh->prepare($query);
2160     $sth->execute($form->{id}) || $form->dberror($query . " ($form->{id})");
2161
2162     $form->{TAXINUSE} = [];
2163     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
2164       push @{ $form->{TAXINUSE} }, $ref;
2165     }
2166
2167     $sth->finish;
2168   }
2169
2170   $dbh->disconnect;
2171
2172   $main::lxdebug->leave_sub();
2173 }
2174
2175 sub save_tax {
2176   $main::lxdebug->enter_sub();
2177
2178   my ($self, $myconfig, $form) = @_;
2179
2180   # connect to database
2181   my $dbh = $form->get_standard_dbh($myconfig);
2182
2183   $form->{rate} = $form->{rate} / 100;
2184
2185   my @values = ($form->{taxkey}, $form->{taxdescription}, $form->{rate}, $form->{chart_id}, $form->{chart_id} );
2186   if ($form->{id} ne "") {
2187     $query = qq|UPDATE tax SET
2188                   taxkey         = ?,
2189                   taxdescription = ?,
2190                   rate           = ?,
2191                   chart_id       = ?,
2192                   taxnumber      = (SELECT accno FROM chart WHERE id= ? )
2193                 WHERE id = ?|;
2194     push(@values, $form->{id});
2195
2196   } else {
2197     #ok
2198     $query = qq|INSERT INTO tax (
2199                   taxkey,
2200                   taxdescription,
2201                   rate,
2202                   chart_id,
2203                   taxnumber
2204                 )
2205                 VALUES (?, ?, ?, ?, (SELECT accno FROM chart WHERE id = ?) )|;
2206   }
2207   do_query($form, $dbh, $query, @values);
2208
2209   $dbh->commit();
2210
2211   $main::lxdebug->leave_sub();
2212 }
2213
2214 sub delete_tax {
2215   $main::lxdebug->enter_sub();
2216
2217   my ($self, $myconfig, $form) = @_;
2218
2219   # connect to database
2220   my $dbh = $form->get_standard_dbh($myconfig);
2221
2222   $query = qq|DELETE FROM tax
2223               WHERE id = ?|;
2224   do_query($form, $dbh, $query, $form->{id});
2225
2226   $dbh->commit();
2227
2228   $main::lxdebug->leave_sub();
2229 }
2230
2231
2232
2233 1;