System->Konteneinstellungen ueberarbeitet:
[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 => conv_i($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->dbconnect_noauto($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   $main::lxdebug->dump(0, "v", \@values);
1132   $main::lxdebug->dump(0, "s", \@sortkeys);
1133
1134   $query = qq|UPDATE $table SET sortkey = ? WHERE id = ?|;
1135   my $sth = $dbh->prepare($query);
1136   $sth->execute($sortkeys[1], $form->{"id1"}) ||
1137     $form->dberror($query . " ($sortkeys[1], $form->{id1})");
1138   $sth->execute($sortkeys[0], $form->{"id2"}) ||
1139     $form->dberror($query . " ($sortkeys[0], $form->{id2})");
1140   $sth->finish();
1141
1142   $dbh->commit();
1143   $dbh->disconnect;
1144
1145   $main::lxdebug->leave_sub();
1146 }
1147
1148 sub printer {
1149   $main::lxdebug->enter_sub();
1150
1151   my ($self, $myconfig, $form) = @_;
1152
1153   # connect to database
1154   my $dbh = $form->dbconnect($myconfig);
1155
1156   my $query = qq|SELECT id, printer_description, template_code, printer_command
1157                  FROM printers
1158                  ORDER BY 2|;
1159
1160   $sth = $dbh->prepare($query);
1161   $sth->execute || $form->dberror($query);
1162
1163   $form->{"ALL"} = [];
1164   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1165     push @{ $form->{ALL} }, $ref;
1166   }
1167
1168   $sth->finish;
1169   $dbh->disconnect;
1170
1171   $main::lxdebug->leave_sub();
1172 }
1173
1174 sub get_printer {
1175   $main::lxdebug->enter_sub();
1176
1177   my ($self, $myconfig, $form) = @_;
1178
1179   # connect to database
1180   my $dbh = $form->dbconnect($myconfig);
1181
1182   my $query =
1183     qq|SELECT p.printer_description, p.template_code, p.printer_command
1184        FROM printers p
1185        WHERE p.id = ?|;
1186   my $sth = $dbh->prepare($query);
1187   $sth->execute($form->{id}) || $form->dberror($query . " ($form->{id})");
1188
1189   my $ref = $sth->fetchrow_hashref(NAME_lc);
1190
1191   map { $form->{$_} = $ref->{$_} } keys %$ref;
1192
1193   $sth->finish;
1194
1195   $dbh->disconnect;
1196
1197   $main::lxdebug->leave_sub();
1198 }
1199
1200 sub save_printer {
1201   $main::lxdebug->enter_sub();
1202
1203   my ($self, $myconfig, $form) = @_;
1204
1205   # connect to database
1206   my $dbh = $form->dbconnect($myconfig);
1207
1208   my @values = ($form->{printer_description},
1209                 $form->{template_code},
1210                 $form->{printer_command});
1211
1212   # id is the old record
1213   if ($form->{id}) {
1214     $query = qq|UPDATE printers SET
1215                 printer_description = ?, template_code = ?, printer_command = ?
1216                 WHERE id = ?|;
1217     push(@values, $form->{id});
1218   } else {
1219     $query = qq|INSERT INTO printers
1220                 (printer_description, template_code, printer_command)
1221                 VALUES (?, ?, ?)|;
1222   }
1223   do_query($form, $dbh, $query, @values);
1224
1225   $dbh->disconnect;
1226
1227   $main::lxdebug->leave_sub();
1228 }
1229
1230 sub delete_printer {
1231   $main::lxdebug->enter_sub();
1232
1233   my ($self, $myconfig, $form) = @_;
1234
1235   # connect to database
1236   my $dbh = $form->dbconnect($myconfig);
1237
1238   $query = qq|DELETE FROM printers
1239               WHERE id = ?|;
1240   do_query($form, $dbh, $query, $form->{id});
1241
1242   $dbh->disconnect;
1243
1244   $main::lxdebug->leave_sub();
1245 }
1246
1247 sub payment {
1248   $main::lxdebug->enter_sub();
1249
1250   my ($self, $myconfig, $form) = @_;
1251
1252   # connect to database
1253   my $dbh = $form->dbconnect($myconfig);
1254
1255   my $query = qq|SELECT * FROM payment_terms ORDER BY sortkey|;
1256
1257   $sth = $dbh->prepare($query);
1258   $sth->execute || $form->dberror($query);
1259
1260   $form->{ALL} = [];
1261   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1262     push @{ $form->{ALL} }, $ref;
1263   }
1264
1265   $sth->finish;
1266   $dbh->disconnect;
1267
1268   $main::lxdebug->leave_sub();
1269 }
1270
1271 sub get_payment {
1272   $main::lxdebug->enter_sub();
1273
1274   my ($self, $myconfig, $form) = @_;
1275
1276   # connect to database
1277   my $dbh = $form->dbconnect($myconfig);
1278
1279   my $query = qq|SELECT * FROM payment_terms WHERE id = ?|;
1280   my $sth = $dbh->prepare($query);
1281   $sth->execute($form->{"id"}) || $form->dberror($query . " ($form->{id})");
1282
1283   my $ref = $sth->fetchrow_hashref(NAME_lc);
1284   map { $form->{$_} = $ref->{$_} } keys %$ref;
1285   $sth->finish();
1286
1287   $query =
1288     qq|SELECT t.language_id, t.description_long, l.description AS language | .
1289     qq|FROM translation_payment_terms t | .
1290     qq|LEFT JOIN language l ON t.language_id = l.id | .
1291     qq|WHERE t.payment_terms_id = ? | .
1292     qq|UNION | .
1293     qq|SELECT l.id AS language_id, NULL AS description_long, | .
1294     qq|  l.description AS language | .
1295     qq|FROM language l|;
1296   $sth = $dbh->prepare($query);
1297   $sth->execute($form->{"id"}) || $form->dberror($query . " ($form->{id})");
1298
1299   my %mapping;
1300   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1301     $mapping{ $ref->{"language_id"} } = $ref
1302       unless (defined($mapping{ $ref->{"language_id"} }));
1303   }
1304   $sth->finish;
1305
1306   $form->{"TRANSLATION"} = [sort({ $a->{"language"} cmp $b->{"language"} }
1307                                  values(%mapping))];
1308
1309   $dbh->disconnect;
1310
1311   $main::lxdebug->leave_sub();
1312 }
1313
1314 sub save_payment {
1315   $main::lxdebug->enter_sub();
1316
1317   my ($self, $myconfig, $form) = @_;
1318
1319   # connect to database
1320   my $dbh = $form->dbconnect_noauto($myconfig);
1321
1322   my $query;
1323
1324   if (!$form->{id}) {
1325     $query = qq|SELECT nextval('id'), COALESCE(MAX(sortkey) + 1, 1) | .
1326       qq|FROM payment_terms|;
1327     my $sortkey;
1328     ($form->{id}, $sortkey) = selectrow_query($form, $dbh, $query);
1329
1330     $query = qq|INSERT INTO payment_terms (id, sortkey) VALUES (?, ?)|;
1331     do_query($form, $dbh, $query, $form->{id}, $sortkey);
1332
1333   } else {
1334     $query =
1335       qq|DELETE FROM translation_payment_terms | .
1336       qq|WHERE payment_terms_id = ?|;
1337     do_query($form, $dbh, $query, $form->{"id"});
1338   }
1339
1340   $query = qq|UPDATE payment_terms SET
1341               description = ?, description_long = ?,
1342               ranking = ?,
1343               terms_netto = ?, terms_skonto = ?,
1344               percent_skonto = ?
1345               WHERE id = ?|;
1346   my @values = ($form->{description}, $form->{description_long},
1347                 $form->{ranking} * 1,
1348                 $form->{terms_netto} * 1, $form->{terms_skonto} * 1,
1349                 $form->{percent_skonto} * 1,
1350                 $form->{id});
1351   do_query($form, $dbh, $query, @values);
1352
1353   $query = qq|SELECT id FROM language|;
1354   my @language_ids;
1355   my $sth = $dbh->prepare($query);
1356   $sth->execute() || $form->dberror($query);
1357
1358   while (my ($id) = $sth->fetchrow_array()) {
1359     push(@language_ids, $id);
1360   }
1361   $sth->finish();
1362
1363   $query =
1364     qq|INSERT INTO translation_payment_terms | .
1365     qq|(language_id, payment_terms_id, description_long) | .
1366     qq|VALUES (?, ?, ?)|;
1367   $sth = $dbh->prepare($query);
1368
1369   foreach my $language_id (@language_ids) {
1370     do_statement($form, $sth, $query, $language_id, $form->{"id"},
1371                  $form->{"description_long_${language_id}"});
1372   }
1373   $sth->finish();
1374
1375   $dbh->commit();
1376   $dbh->disconnect;
1377
1378   $main::lxdebug->leave_sub();
1379 }
1380
1381 sub delete_payment {
1382   $main::lxdebug->enter_sub();
1383
1384   my ($self, $myconfig, $form) = @_;
1385
1386   # connect to database
1387   my $dbh = $form->dbconnect_noauto($myconfig);
1388
1389   my $query =
1390     qq|DELETE FROM translation_payment_terms WHERE payment_terms_id = ?|;
1391   do_query($form, $dbh, $query, $form->{"id"});
1392
1393   $query = qq|DELETE FROM payment_terms WHERE id = ?|;
1394   do_query($form, $dbh, $query, $form->{"id"});
1395
1396   $dbh->commit();
1397   $dbh->disconnect;
1398
1399   $main::lxdebug->leave_sub();
1400 }
1401
1402
1403 sub prepare_template_filename {
1404   $main::lxdebug->enter_sub();
1405
1406   my ($self, $myconfig, $form) = @_;
1407
1408   my ($filename, $display_filename);
1409
1410   if ($form->{type} eq "stylesheet") {
1411     $filename = "css/$myconfig->{stylesheet}";
1412     $display_filename = $myconfig->{stylesheet};
1413
1414   } else {
1415     $filename = $form->{formname};
1416
1417     if ($form->{language}) {
1418       my ($id, $template_code) = split(/--/, $form->{language});
1419       $filename .= "_${template_code}";
1420     }
1421
1422     if ($form->{printer}) {
1423       my ($id, $template_code) = split(/--/, $form->{printer});
1424       $filename .= "_${template_code}";
1425     }
1426
1427     $filename .= "." . ($form->{format} eq "html" ? "html" : "tex");
1428     $filename =~ s|.*/||;
1429     $display_filename = $filename;
1430     $filename = "$myconfig->{templates}/$filename";
1431   }
1432
1433   $main::lxdebug->leave_sub();
1434
1435   return ($filename, $display_filename);
1436 }
1437
1438
1439 sub load_template {
1440   $main::lxdebug->enter_sub();
1441
1442   my ($self, $filename) = @_;
1443
1444   my ($content, $lines) = ("", 0);
1445
1446   local *TEMPLATE;
1447
1448   if (open(TEMPLATE, $filename)) {
1449     while (<TEMPLATE>) {
1450       $content .= $_;
1451       $lines++;
1452     }
1453     close(TEMPLATE);
1454   }
1455
1456   $main::lxdebug->leave_sub();
1457
1458   return ($content, $lines);
1459 }
1460
1461 sub save_template {
1462   $main::lxdebug->enter_sub();
1463
1464   my ($self, $filename, $content) = @_;
1465
1466   local *TEMPLATE;
1467
1468   my $error = "";
1469
1470   if (open(TEMPLATE, ">$filename")) {
1471     $content =~ s/\r\n/\n/g;
1472     print(TEMPLATE $content);
1473     close(TEMPLATE);
1474   } else {
1475     $error = $!;
1476   }
1477
1478   $main::lxdebug->leave_sub();
1479
1480   return $error;
1481 }
1482
1483 sub save_preferences {
1484   $main::lxdebug->enter_sub();
1485
1486   my ($self, $myconfig, $form, $memberfile, $userspath, $webdav) = @_;
1487
1488   map { ($form->{$_}) = split(/--/, $form->{$_}) }
1489     qw(inventory_accno income_accno expense_accno fxgain_accno fxloss_accno);
1490
1491   my @a;
1492   $form->{curr} =~ s/ //g;
1493   map { push(@a, uc pack "A3", $_) if $_ } split(/:/, $form->{curr});
1494   $form->{curr} = join ':', @a;
1495
1496   # connect to database
1497   my $dbh = $form->dbconnect_noauto($myconfig);
1498
1499   # these defaults are database wide
1500   # user specific variables are in myconfig
1501   # save defaults
1502   my $query =
1503     qq|UPDATE defaults SET | .
1504     qq|inventory_accno_id = (SELECT c.id FROM chart c WHERE c.accno = ?), | .
1505     qq|income_accno_id = (SELECT c.id FROM chart c WHERE c.accno = ?), | .
1506     qq|expense_accno_id = (SELECT c.id FROM chart c WHERE c.accno = ?), | .
1507     qq|fxgain_accno_id = (SELECT c.id FROM chart c WHERE c.accno = ?), | .
1508     qq|fxloss_accno_id = (SELECT c.id FROM chart c WHERE c.accno = ?), | .
1509     qq|invnumber = ?, | .
1510     qq|cnnumber  = ?, | .
1511     qq|sonumber = ?, | .
1512     qq|ponumber = ?, | .
1513     qq|sqnumber = ?, | .
1514     qq|rfqnumber = ?, | .
1515     qq|customernumber = ?, | .
1516     qq|vendornumber = ?, | .
1517     qq|articlenumber = ?, | .
1518     qq|servicenumber = ?, | .
1519     qq|yearend = ?, | .
1520     qq|curr = ?, | .
1521     qq|businessnumber = ?|;
1522   my @values = ($form->{inventory_accno}, $form->{income_accno},
1523                 $form->{expense_accno},
1524                 $form->{fxgain_accno}, $form->{fxloss_accno},
1525                 $form->{invnumber}, $form->{cnnumber},
1526                 $form->{sonumber}, $form->{ponumber},
1527                 $form->{sqnumber}, $form->{rfqnumber},
1528                 $form->{customernumber}, $form->{vendornumber},
1529                 $form->{articlenumber}, $form->{servicenumber},
1530                 $form->{yearend}, $form->{curr},
1531                 $form->{businessnumber});
1532   do_query($form, $dbh, $query, @values);
1533
1534   # update name
1535   $query = qq|UPDATE employee
1536               SET name = ?
1537               WHERE login = ?|;
1538   do_query($form, $dbh, $query, $form->{name}, $form->{login});
1539
1540   my $rc = $dbh->commit;
1541   $dbh->disconnect;
1542
1543   # save first currency in myconfig
1544   $form->{currency} = substr($form->{curr}, 0, 3);
1545
1546   my $myconfig = new User "$memberfile", "$form->{login}";
1547
1548   foreach my $item (keys %$form) {
1549     $myconfig->{$item} = $form->{$item};
1550   }
1551
1552   $myconfig->save_member($memberfile, $userspath);
1553
1554   if ($webdav) {
1555     @webdavdirs =
1556       qw(angebote bestellungen rechnungen anfragen lieferantenbestellungen einkaufsrechnungen);
1557     foreach $directory (@webdavdirs) {
1558       $file = "webdav/" . $directory . "/webdav-user";
1559       if ($myconfig->{$directory}) {
1560         open(HTACCESS, "$file") or die "cannot open webdav-user $!\n";
1561         while (<HTACCESS>) {
1562           ($login, $password) = split(/:/, $_);
1563           if ($login ne $form->{login}) {
1564             $newfile .= $_;
1565           }
1566         }
1567         close(HTACCESS);
1568         open(HTACCESS, "> $file") or die "cannot open webdav-user $!\n";
1569         $newfile .= $myconfig->{login} . ":" . $myconfig->{password} . "\n";
1570         print(HTACCESS $newfile);
1571         close(HTACCESS);
1572       } else {
1573         $form->{$directory} = 0;
1574         open(HTACCESS, "$file") or die "cannot open webdav-user $!\n";
1575         while (<HTACCESS>) {
1576           ($login, $password) = split(/:/, $_);
1577           if ($login ne $form->{login}) {
1578             $newfile .= $_;
1579           }
1580         }
1581         close(HTACCESS);
1582         open(HTACCESS, "> $file") or die "cannot open webdav-user $!\n";
1583         print(HTACCESS $newfile);
1584         close(HTACCESS);
1585       }
1586     }
1587   }
1588
1589   $main::lxdebug->leave_sub();
1590
1591   return $rc;
1592 }
1593
1594 sub defaultaccounts {
1595   $main::lxdebug->enter_sub();
1596
1597   my ($self, $myconfig, $form) = @_;
1598
1599   # connect to database
1600   my $dbh = $form->dbconnect($myconfig);
1601
1602   # get defaults from defaults table
1603   my $query = qq|SELECT * FROM defaults|;
1604   my $sth   = $dbh->prepare($query);
1605   $sth->execute || $form->dberror($query);
1606
1607   $form->{defaults}             = $sth->fetchrow_hashref(NAME_lc);
1608   $form->{defaults}{IC}         = $form->{defaults}{inventory_accno_id};
1609   $form->{defaults}{IC_income}  = $form->{defaults}{income_accno_id};
1610   $form->{defaults}{IC_expense} = $form->{defaults}{expense_accno_id};
1611   $form->{defaults}{FX_gain}    = $form->{defaults}{fxgain_accno_id};
1612   $form->{defaults}{FX_loss}    = $form->{defaults}{fxloss_accno_id};
1613
1614   $sth->finish;
1615
1616   $query = qq|SELECT c.id, c.accno, c.description, c.link
1617               FROM chart c
1618               WHERE c.link LIKE '%IC%'
1619               ORDER BY c.accno|;
1620   $sth = $dbh->prepare($query);
1621   $sth->execute || $self->dberror($query);
1622
1623   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1624     foreach my $key (split(/:/, $ref->{link})) {
1625       if ($key =~ /IC/) {
1626         $nkey = $key;
1627         if ($key =~ /cogs/) {
1628           $nkey = "IC_expense";
1629         }
1630         if ($key =~ /sale/) {
1631           $nkey = "IC_income";
1632         }
1633         %{ $form->{IC}{$nkey}{ $ref->{accno} } } = (
1634                                              id          => $ref->{id},
1635                                              description => $ref->{description}
1636         );
1637       }
1638     }
1639   }
1640   $sth->finish;
1641
1642   $query = qq|SELECT c.id, c.accno, c.description
1643               FROM chart c
1644               WHERE c.category = 'I'
1645               AND c.charttype = 'A'
1646               ORDER BY c.accno|;
1647   $sth = $dbh->prepare($query);
1648   $sth->execute || $self->dberror($query);
1649
1650   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1651     %{ $form->{IC}{FX_gain}{ $ref->{accno} } } = (
1652                                              id          => $ref->{id},
1653                                              description => $ref->{description}
1654     );
1655   }
1656   $sth->finish;
1657
1658   $query = qq|SELECT c.id, c.accno, c.description
1659               FROM chart c
1660               WHERE c.category = 'E'
1661               AND c.charttype = 'A'
1662               ORDER BY c.accno|;
1663   $sth = $dbh->prepare($query);
1664   $sth->execute || $self->dberror($query);
1665
1666   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1667     %{ $form->{IC}{FX_loss}{ $ref->{accno} } } = (
1668                                              id          => $ref->{id},
1669                                              description => $ref->{description}
1670     );
1671   }
1672   $sth->finish;
1673
1674   # now get the tax rates and numbers
1675   $query = qq|SELECT c.id, c.accno, c.description,
1676               t.rate * 100 AS rate, t.taxnumber
1677               FROM chart c, tax t
1678               WHERE c.id = t.chart_id|;
1679
1680   $sth = $dbh->prepare($query);
1681   $sth->execute || $form->dberror($query);
1682
1683   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1684     $form->{taxrates}{ $ref->{accno} }{id}          = $ref->{id};
1685     $form->{taxrates}{ $ref->{accno} }{description} = $ref->{description};
1686     $form->{taxrates}{ $ref->{accno} }{taxnumber}   = $ref->{taxnumber}
1687       if $ref->{taxnumber};
1688     $form->{taxrates}{ $ref->{accno} }{rate} = $ref->{rate} if $ref->{rate};
1689   }
1690
1691   $sth->finish;
1692   $dbh->disconnect;
1693
1694   $main::lxdebug->leave_sub();
1695 }
1696
1697 sub closedto {
1698   $main::lxdebug->enter_sub();
1699
1700   my ($self, $myconfig, $form) = @_;
1701
1702   my $dbh = $form->dbconnect($myconfig);
1703
1704   my $query = qq|SELECT closedto, revtrans FROM defaults|;
1705   my $sth   = $dbh->prepare($query);
1706   $sth->execute || $form->dberror($query);
1707
1708   ($form->{closedto}, $form->{revtrans}) = $sth->fetchrow_array;
1709
1710   $sth->finish;
1711
1712   $dbh->disconnect;
1713
1714   $main::lxdebug->leave_sub();
1715 }
1716
1717 sub closebooks {
1718   $main::lxdebug->enter_sub();
1719
1720   my ($self, $myconfig, $form) = @_;
1721
1722   my $dbh = $form->dbconnect($myconfig);
1723
1724   my ($query, @values);
1725
1726   if ($form->{revtrans}) {
1727     $query = qq|UPDATE defaults SET closedto = NULL, revtrans = '1'|;
1728
1729   } elsif ($form->{closedto}) {
1730     $query = qq|UPDATE defaults SET closedto = ?, revtrans = '0'|;
1731     @values = (conv_date($form->{closedto}));
1732
1733   } else {
1734     $query = qq|UPDATE defaults SET closedto = NULL, revtrans = '0'|;
1735   }
1736
1737   # set close in defaults
1738   do_query($form, $dbh, $query, @values);
1739
1740   $dbh->disconnect;
1741
1742   $main::lxdebug->leave_sub();
1743 }
1744
1745 sub get_base_unit {
1746   my ($self, $units, $unit_name, $factor) = @_;
1747
1748   $factor = 1 unless ($factor);
1749
1750   my $unit = $units->{$unit_name};
1751
1752   if (!defined($unit) || !$unit->{"base_unit"} ||
1753       ($unit_name eq $unit->{"base_unit"})) {
1754     return ($unit_name, $factor);
1755   }
1756
1757   return AM->get_base_unit($units, $unit->{"base_unit"}, $factor * $unit->{"factor"});
1758 }
1759
1760 sub retrieve_units {
1761   $main::lxdebug->enter_sub();
1762
1763   my ($self, $myconfig, $form, $type, $prefix) = @_;
1764
1765   my $dbh = $form->dbconnect($myconfig);
1766
1767   my $query = "SELECT *, base_unit AS original_base_unit FROM units";
1768   my @values;
1769   if ($type) {
1770     $query .= " WHERE (type = ?)";
1771     @values = ($type);
1772   }
1773
1774   my $sth = $dbh->prepare($query);
1775   $sth->execute(@values) || $form->dberror($query . " (" . join(", ", @values) . ")");
1776
1777   my $units = {};
1778   while (my $ref = $sth->fetchrow_hashref()) {
1779     $units->{$ref->{"name"}} = $ref;
1780   }
1781   $sth->finish();
1782
1783   my $query_lang = "SELECT id, template_code FROM language ORDER BY description";
1784   $sth = $dbh->prepare($query_lang);
1785   $sth->execute() || $form->dberror($query_lang);
1786   my @languages;
1787   while ($ref = $sth->fetchrow_hashref()) {
1788     push(@languages, $ref);
1789   }
1790   $sth->finish();
1791
1792   $query_lang = "SELECT ul.localized, ul.localized_plural, l.id, l.template_code " .
1793     "FROM units_language ul " .
1794     "LEFT JOIN language l ON ul.language_id = l.id " .
1795     "WHERE ul.unit = ?";
1796   $sth = $dbh->prepare($query_lang);
1797
1798   foreach my $unit (values(%{$units})) {
1799     ($unit->{"${prefix}base_unit"}, $unit->{"${prefix}factor"}) = AM->get_base_unit($units, $unit->{"name"});
1800
1801     $unit->{"LANGUAGES"} = {};
1802     foreach my $lang (@languages) {
1803       $unit->{"LANGUAGES"}->{$lang->{"template_code"}} = { "template_code" => $lang->{"template_code"} };
1804     }
1805
1806     $sth->execute($unit->{"name"}) || $form->dberror($query_lang . " (" . $unit->{"name"} . ")");
1807     while ($ref = $sth->fetchrow_hashref()) {
1808       map({ $unit->{"LANGUAGES"}->{$ref->{"template_code"}}->{$_} = $ref->{$_} } keys(%{$ref}));
1809     }
1810   }
1811   $sth->finish();
1812
1813   $dbh->disconnect();
1814
1815   $main::lxdebug->leave_sub();
1816
1817   return $units;
1818 }
1819
1820 sub translate_units {
1821   $main::lxdebug->enter_sub();
1822
1823   my ($self, $form, $template_code, $unit, $amount) = @_;
1824
1825   my $units = $self->retrieve_units(\%main::myconfig, $form);
1826
1827   my $h = $units->{$unit}->{"LANGUAGES"}->{$template_code};
1828   my $new_unit = $unit;
1829   if ($h) {
1830     if (($amount != 1) && $h->{"localized_plural"}) {
1831       $new_unit = $h->{"localized_plural"};
1832     } elsif ($h->{"localized"}) {
1833       $new_unit = $h->{"localized"};
1834     }
1835   }
1836
1837   $main::lxdebug->leave_sub();
1838
1839   return $new_unit;
1840 }
1841
1842 sub units_in_use {
1843   $main::lxdebug->enter_sub();
1844
1845   my ($self, $myconfig, $form, $units) = @_;
1846
1847   my $dbh = $form->dbconnect($myconfig);
1848
1849   map({ $_->{"in_use"} = 0; } values(%{$units}));
1850
1851   foreach my $unit (values(%{$units})) {
1852     my $base_unit = $unit->{"original_base_unit"};
1853     while ($base_unit) {
1854       $units->{$base_unit}->{"in_use"} = 1;
1855       $units->{$base_unit}->{"DEPENDING_UNITS"} = [] unless ($units->{$base_unit}->{"DEPENDING_UNITS"});
1856       push(@{$units->{$base_unit}->{"DEPENDING_UNITS"}}, $unit->{"name"});
1857       $base_unit = $units->{$base_unit}->{"original_base_unit"};
1858     }
1859   }
1860
1861   foreach my $unit (values(%{$units})) {
1862     map({ $_ = $dbh->quote($_); } @{$unit->{"DEPENDING_UNITS"}});
1863
1864     foreach my $table (qw(parts invoice orderitems)) {
1865       my $query = "SELECT COUNT(*) FROM $table WHERE unit ";
1866
1867       if (0 == scalar(@{$unit->{"DEPENDING_UNITS"}})) {
1868         $query .= "= " . $dbh->quote($unit->{"name"});
1869       } else {
1870         $query .= "IN (" . $dbh->quote($unit->{"name"}) . "," .
1871           join(",", map({ $dbh->quote($_) } @{$unit->{"DEPENDING_UNITS"}})) . ")";
1872       }
1873
1874       my ($count) = $dbh->selectrow_array($query);
1875       $form->dberror($query) if ($dbh->err);
1876
1877       if ($count) {
1878         $unit->{"in_use"} = 1;
1879         last;
1880       }
1881     }
1882   }
1883
1884   $dbh->disconnect();
1885
1886   $main::lxdebug->leave_sub();
1887 }
1888
1889 sub unit_select_data {
1890   $main::lxdebug->enter_sub();
1891
1892   my ($self, $units, $selected, $empty_entry) = @_;
1893
1894   my $select = [];
1895
1896   if ($empty_entry) {
1897     push(@{$select}, { "name" => "", "base_unit" => "", "factor" => "", "selected" => "" });
1898   }
1899
1900   foreach my $unit (sort({ $units->{$a}->{"sortkey"} <=> $units->{$b}->{"sortkey"} } keys(%{$units}))) {
1901     push(@{$select}, { "name" => $unit,
1902                        "base_unit" => $units->{$unit}->{"base_unit"},
1903                        "factor" => $units->{$unit}->{"factor"},
1904                        "selected" => ($unit eq $selected) ? "selected" : "" });
1905   }
1906
1907   $main::lxdebug->leave_sub();
1908
1909   return $select;
1910 }
1911
1912 sub unit_select_html {
1913   $main::lxdebug->enter_sub();
1914
1915   my ($self, $units, $name, $selected, $convertible_into) = @_;
1916
1917   my $select = "<select name=${name}>";
1918
1919   foreach my $unit (sort({ $units->{$a}->{"sortkey"} <=> $units->{$b}->{"sortkey"} } keys(%{$units}))) {
1920     if (!$convertible_into ||
1921         ($units->{$convertible_into} &&
1922          ($units->{$convertible_into}->{"base_unit"} eq $units->{$unit}->{"base_unit"}))) {
1923       $select .= "<option" . (($unit eq $selected) ? " selected" : "") . ">${unit}</option>";
1924     }
1925   }
1926   $select .= "</select>";
1927
1928   $main::lxdebug->leave_sub();
1929
1930   return $select;
1931 }
1932
1933 sub add_unit {
1934   $main::lxdebug->enter_sub();
1935
1936   my ($self, $myconfig, $form, $name, $base_unit, $factor, $type, $languages) = @_;
1937
1938   my $dbh = $form->dbconnect_noauto($myconfig);
1939
1940   my $query = qq|SELECT COALESCE(MAX(sortkey), 0) + 1 FROM units|;
1941   my ($sortkey) = selectrow_query($form, $dbh, $query);
1942
1943   $query = "INSERT INTO units (name, base_unit, factor, type, sortkey) " .
1944     "VALUES (?, ?, ?, ?, ?)";
1945   do_query($form, $dbh, $query, $name, $base_unit, $factor, $type, $sortkey);
1946
1947   if ($languages) {
1948     $query = "INSERT INTO units_language (unit, language_id, localized, localized_plural) VALUES (?, ?, ?, ?)";
1949     my $sth = $dbh->prepare($query);
1950     foreach my $lang (@{$languages}) {
1951       my @values = ($name, $lang->{"id"}, $lang->{"localized"}, $lang->{"localized_plural"});
1952       $sth->execute(@values) || $form->dberror($query . " (" . join(", ", @values) . ")");
1953     }
1954     $sth->finish();
1955   }
1956
1957   $dbh->commit();
1958   $dbh->disconnect();
1959
1960   $main::lxdebug->leave_sub();
1961 }
1962
1963 sub save_units {
1964   $main::lxdebug->enter_sub();
1965
1966   my ($self, $myconfig, $form, $type, $units, $delete_units) = @_;
1967
1968   my $dbh = $form->dbconnect_noauto($myconfig);
1969
1970   my ($base_unit, $unit, $sth, $query);
1971
1972   $query = "DELETE FROM units_language";
1973   $dbh->do($query) || $form->dberror($query);
1974
1975   if ($delete_units && (0 != scalar(@{$delete_units}))) {
1976     $query = "DELETE FROM units WHERE name IN (";
1977     map({ $query .= "?," } @{$delete_units});
1978     substr($query, -1, 1) = ")";
1979     $dbh->do($query, undef, @{$delete_units}) ||
1980       $form->dberror($query . " (" . join(", ", @{$delete_units}) . ")");
1981   }
1982
1983   $query = "UPDATE units SET name = ?, base_unit = ?, factor = ? WHERE name = ?";
1984   $sth = $dbh->prepare($query);
1985
1986   my $query_lang = "INSERT INTO units_language (unit, language_id, localized, localized_plural) VALUES (?, ?, ?, ?)";
1987   my $sth_lang = $dbh->prepare($query_lang);
1988
1989   foreach $unit (values(%{$units})) {
1990     $unit->{"depth"} = 0;
1991     my $base_unit = $unit;
1992     while ($base_unit->{"base_unit"}) {
1993       $unit->{"depth"}++;
1994       $base_unit = $units->{$base_unit->{"base_unit"}};
1995     }
1996   }
1997
1998   foreach $unit (sort({ $a->{"depth"} <=> $b->{"depth"} } values(%{$units}))) {
1999     if ($unit->{"LANGUAGES"}) {
2000       foreach my $lang (@{$unit->{"LANGUAGES"}}) {
2001         next unless ($lang->{"id"} && $lang->{"localized"});
2002         my @values = ($unit->{"name"}, $lang->{"id"}, $lang->{"localized"}, $lang->{"localized_plural"});
2003         $sth_lang->execute(@values) || $form->dberror($query_lang . " (" . join(", ", @values) . ")");
2004       }
2005     }
2006
2007     next if ($unit->{"unchanged_unit"});
2008
2009     my @values = ($unit->{"name"}, $unit->{"base_unit"}, $unit->{"factor"}, $unit->{"old_name"});
2010     $sth->execute(@values) || $form->dberror($query . " (" . join(", ", @values) . ")");
2011   }
2012
2013   $sth->finish();
2014   $sth_lang->finish();
2015   $dbh->commit();
2016   $dbh->disconnect();
2017
2018   $main::lxdebug->leave_sub();
2019 }
2020
2021 sub swap_units {
2022   $main::lxdebug->enter_sub();
2023
2024   my ($self, $myconfig, $form, $dir, $name_1, $unit_type) = @_;
2025
2026   my $dbh = $form->dbconnect_noauto($myconfig);
2027
2028   my $query;
2029
2030   $query = qq|SELECT sortkey FROM units WHERE name = ?|;
2031   my ($sortkey_1) = selectrow_query($form, $dbh, $query, $name_1);
2032
2033   $query =
2034     qq|SELECT sortkey FROM units | .
2035     qq|WHERE sortkey | . ($dir eq "down" ? ">" : "<") . qq| ? AND type = ? | .
2036     qq|ORDER BY sortkey | . ($dir eq "down" ? "ASC" : "DESC") . qq| LIMIT 1|;
2037   my ($sortkey_2) = selectrow_query($form, $dbh, $query, $sortkey_1, $unit_type);
2038
2039   if (defined($sortkey_1)) {
2040     $query = qq|SELECT name FROM units WHERE sortkey = ${sortkey_2}|;
2041     my ($name_2) = selectrow_query($form, $dbh, $query);
2042
2043     if (defined($name_2)) {
2044       $query = qq|UPDATE units SET sortkey = ? WHERE name = ?|;
2045       my $sth = $dbh->prepare($query);
2046
2047       do_statement($form, $sth, $query, $sortkey_1, $name_2);
2048       do_statement($form, $sth, $query, $sortkey_2, $name_1);
2049     }
2050   }
2051
2052   $dbh->commit();
2053   $dbh->disconnect();
2054
2055   $main::lxdebug->leave_sub();
2056 }
2057
2058 1;