Merge branch 'master' of github.com:kivitendo/kivitendo-erp
[kivitendo-erp.git] / bin / mozilla / am.pl
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) 1998-2002
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #
16 # This program is free software; you can redistribute it and/or modify
17 # it under the terms of the GNU General Public License as published by
18 # the Free Software Foundation; either version 2 of the License, or
19 # (at your option) any later version.
20 #
21 # This program is distributed in the hope that it will be useful,
22 # but WITHOUT ANY WARRANTY; without even the implied warranty of
23 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24 # GNU General Public License for more details.
25 # You should have received a copy of the GNU General Public License
26 # along with this program; if not, write to the Free Software
27 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #======================================================================
29 #
30 # administration
31 #
32 #======================================================================
33
34 use utf8;
35
36 use SL::Auth;
37 use SL::Auth::PasswordPolicy;
38 use SL::AM;
39 use SL::CA;
40 use SL::Form;
41 use SL::User;
42 use SL::USTVA;
43 use SL::Iconv;
44 use SL::TODO;
45 use SL::Printer;
46 use CGI;
47
48 require "bin/mozilla/common.pl";
49
50 use strict;
51
52 1;
53
54 # end of main
55
56 sub add      { call_sub("add_$main::form->{type}"); }
57 sub delete   { call_sub("delete_$main::form->{type}"); }
58 sub save     { call_sub("save_$main::form->{type}"); }
59 sub edit     { call_sub("edit_$main::form->{type}"); }
60 sub continue { call_sub($main::form->{"nextsub"}); }
61 sub save_as_new { call_sub("save_as_new_$main::form->{type}"); }
62
63 sub add_account {
64   $main::lxdebug->enter_sub();
65
66   my $form     = $main::form;
67   my %myconfig = %main::myconfig;
68
69   $main::auth->assert('config');
70
71   $form->{title}     = "Add";
72   $form->{charttype} = "A";
73   AM->get_account(\%myconfig, \%$form);
74
75   $form->{callback} = "am.pl?action=list_account" unless $form->{callback};
76
77   &account_header;
78   &form_footer;
79
80   $main::lxdebug->leave_sub();
81 }
82
83 sub edit_account {
84   $main::lxdebug->enter_sub();
85
86   my $form     = $main::form;
87   my %myconfig = %main::myconfig;
88
89   $main::auth->assert('config');
90
91   $form->{title} = "Edit";
92   AM->get_account(\%myconfig, \%$form);
93
94   foreach my $item (split(/:/, $form->{link})) {
95     $form->{$item} = "checked";
96   }
97
98   &account_header;
99   &form_footer;
100
101   $main::lxdebug->leave_sub();
102 }
103
104 sub account_header {
105   $main::lxdebug->enter_sub();
106
107   my $form     = $main::form;
108   my %myconfig = %main::myconfig;
109   my $locale   = $main::locale;
110
111   $main::auth->assert('config');
112
113   if ( $form->{action} eq 'edit_account') {
114     $form->{account_exists} = '1';
115   }
116
117   $form->{title} = $locale->text("$form->{title} Account");
118
119   $form->{"$form->{charttype}_checked"} = "checked";
120   $form->{"$form->{category}_checked"}  = "checked";
121
122   $form->{select_tax} = "";
123
124   my @tax_report_pos = USTVA->report_variables({
125       myconfig   => \%myconfig,
126       form       => $form,
127       type       => '',
128       attribute  => 'position',
129       calc       => '',
130   });
131
132   if (@{ $form->{TAXKEY} }) {
133     foreach my $item (@{ $form->{TAXKEY} }) {
134       $item->{rate} = $item->{rate} * 100 . '%';
135     }
136
137     # Fill in empty row for new Taxkey
138     my $newtaxkey_ref = {
139       id             => '',
140       chart_id       => '',
141       accno          => '',
142       tax_id         => '',
143       taxdescription => '',
144       rate           => '',
145       taxkey_id      => '',
146       pos_ustva      => '',
147       startdate      => $form->{account_exists} ? '' : DateTime->new(year => 1970, month => 1, day => 1)->to_lxoffice,
148     };
149
150     push @{ $form->{ACCOUNT_TAXKEYS} }, $newtaxkey_ref;
151
152     my $i = 0;
153     foreach my $taxkey_used (@{ $form->{ACCOUNT_TAXKEYS} } ) {
154
155       # Fill in a runningnumber
156       $form->{ACCOUNT_TAXKEYS}[$i]{runningnumber} = $i;
157
158       # Fill in the Taxkeys as select options
159       foreach my $item (@{ $form->{TAXKEY} }) {
160         if ($item->{id} == $taxkey_used->{tax_id}) {
161           $form->{ACCOUNT_TAXKEYS}[$i]{selecttaxkey} .=
162             qq|<option value="$item->{id}" selected="selected">|
163             . sprintf("%.2d", $item->{taxkey})
164             . qq|. $item->{taxdescription} ($item->{rate}) |
165             . $locale->text('Tax-o-matic Account')
166             . qq|: $item->{chart_accno}\n|;
167         }
168         else {
169           $form->{ACCOUNT_TAXKEYS}[$i]{selecttaxkey} .=
170             qq|<option value="$item->{id}">|
171             . sprintf("%.2d", $item->{taxkey})
172             . qq|. $item->{taxdescription} ($item->{rate}) |
173             . $locale->text('Tax-o-matic Account')
174             . qq|: $item->{chart_accno}\n|;
175         }
176
177       }
178
179       # Fill in the USTVA Numbers as select options
180       foreach my $item ( '', sort({ $a cmp $b } @tax_report_pos) ) {
181         if ($item eq ''){
182           $form->{ACCOUNT_TAXKEYS}[$i]{select_tax} .= qq|<option value="" selected="selected">-\n|;
183         }
184         elsif ( $item eq $taxkey_used->{pos_ustva} ) {
185           $form->{ACCOUNT_TAXKEYS}[$i]{select_tax} .= qq|<option value="$item" selected="selected">$item\n|;
186         }
187         else {
188           $form->{ACCOUNT_TAXKEYS}[$i]{select_tax} .= qq|<option value="$item">$item\n|;
189         }
190
191       }
192
193       $i++;
194     }
195   }
196
197   # Newaccount Folgekonto
198   if (@{ $form->{NEWACCOUNT} || [] }) {
199     if (!$form->{new_chart_valid}) {
200       $form->{selectnewaccount} = qq|<option value=""> |. $locale->text('None') .q|</option>|;
201     }
202     foreach my $item (@{ $form->{NEWACCOUNT} }) {
203       if ($item->{id} == $form->{new_chart_id}) {
204         $form->{selectnewaccount} .=
205           qq|<option value="$item->{id}" selected>$item->{accno}--$item->{description}</option>|;
206       } elsif (!$form->{new_chart_valid}) {
207         $form->{selectnewaccount} .=
208           qq|<option value="$item->{id}">$item->{accno}--$item->{description}</option>|;
209       }
210
211     }
212   }
213
214   my $select_eur = q|<option value=""> |. $locale->text('None') .q|</option>\n|;
215   my %eur = (
216           1  => "Umsatzerlöse",
217           2  => "sonstige Erlöse",
218           3  => "Privatanteile",
219           4  => "Zinserträge",
220           5  => "Ausserordentliche Erträge",
221           6  => "Vereinnahmte Umsatzst.",
222           7  => "Umsatzsteuererstattungen",
223           8  => "Wareneingänge",
224           9  => "Löhne und Gehälter",
225           10 => "Gesetzl. sozialer Aufw.",
226           11 => "Mieten",
227           12 => "Gas, Strom, Wasser",
228           13 => "Instandhaltung",
229           14 => "Steuern, Versich., Beiträge",
230           15 => "Kfz-Steuern",
231           16 => "Kfz-Versicherungen",
232           17 => "Sonst. Fahrzeugkosten",
233           18 => "Werbe- und Reisekosten",
234           19 => "Instandhaltung u. Werkzeuge",
235           20 => "Fachzeitschriften, Bücher",
236           21 => "Miete für Einrichtungen",
237           22 => "Rechts- und Beratungskosten",
238           23 => "Bürobedarf, Porto, Telefon",
239           24 => "Sonstige Aufwendungen",
240           25 => "Abschreibungen auf Anlagever.",
241           26 => "Abschreibungen auf GWG",
242           27 => "Vorsteuer",
243           28 => "Umsatzsteuerzahlungen",
244           29 => "Zinsaufwand",
245           30 => "Ausserordentlicher Aufwand",
246           31 => "Betriebliche Steuern");
247   foreach my $item (sort({ $a <=> $b } keys(%eur))) {
248     my $text = H($::locale->{iconv_utf8}->convert($eur{$item}));
249     if ($item == $form->{pos_eur}) {
250       $select_eur .= qq|<option value=$item selected>|. sprintf("%.2d", $item) .qq|. $text</option>\n|;
251     } else {
252       $select_eur .= qq|<option value=$item>|. sprintf("%.2d", $item) .qq|. $text</option>\n|;
253     }
254
255   }
256
257   my $select_bwa = q|<option value=""> |. $locale->text('None') .q|</option>\n|;
258
259   my %bwapos = (
260              1  => 'Umsatzerlöse',
261              2  => 'Best.Verdg.FE/UE',
262              3  => 'Aktiv.Eigenleistung',
263              4  => 'Mat./Wareneinkauf',
264              5  => 'So.betr.Erlöse',
265              10 => 'Personalkosten',
266              11 => 'Raumkosten',
267              12 => 'Betriebl.Steuern',
268              13 => 'Vers./Beiträge',
269              14 => 'Kfz.Kosten o.St.',
270              15 => 'Werbe-Reisek.',
271              16 => 'Kosten Warenabgabe',
272              17 => 'Abschreibungen',
273              18 => 'Rep./instandhlt.',
274              19 => 'Übrige Steuern',
275              20 => 'Sonst.Kosten',
276              30 => 'Zinsauwand',
277              31 => 'Sonst.neutr.Aufw.',
278              32 => 'Zinserträge',
279              33 => 'Sonst.neutr.Ertrag',
280              34 => 'Verr.kalk.Kosten',
281              35 => 'Steuern Eink.u.Ertr.');
282   foreach my $item (sort({ $a <=> $b } keys %bwapos)) {
283     my $text = H($::locale->{iconv_utf8}->convert($bwapos{$item}));
284     if ($item == $form->{pos_bwa}) {
285       $select_bwa .= qq|<option value="$item" selected>|. sprintf("%.2d", $item) .qq|. $text\n|;
286     } else {
287       $select_bwa .= qq|<option value="$item">|. sprintf("%.2d", $item) .qq|. $text\n|;
288     }
289
290   }
291
292 # Wieder hinzugefügt zu evaluationszwecken (us) 09.03.2007
293   my $select_bilanz = q|<option value=""> |. $locale->text('None') .q|</option>\n|;
294   foreach my $item ((1, 2, 3, 4)) {
295     if ($item == $form->{pos_bilanz}) {
296       $select_bilanz .= qq|<option value=$item selected>|. sprintf("%.2d", $item) .qq|.\n|;
297     } else {
298       $select_bilanz .= qq|<option value=$item>|. sprintf("%.2d", $item) .qq|.\n|;
299     }
300
301   }
302
303   # this is for our parser only! Do not remove.
304   # type=submit $locale->text('Add Account')
305   # type=submit $locale->text('Edit Account')
306
307   $form->{type} = "account";
308
309   # preselections category
310
311   my $select_category = q|<option value=""> |. $locale->text('None') .q|</option>\n|;
312
313   my %category = (
314       'A'  => $locale->text('Asset'),
315       'L'  => $locale->text('Liability'),
316       'Q'  => $locale->text('Equity'),
317       'I'  => $locale->text('Revenue'),
318       'E'  => $locale->text('Expense'),
319       'C'  => $locale->text('Costs'),
320   );
321   foreach my $item ( sort({ $a <=> $b } keys %category) ) {
322     if ($item eq $form->{category}) {
323       $select_category .= qq|<option value="$item" selected="selected">$category{$item} (|. sprintf("%s", $item) .qq|)\n|;
324     } else {
325       $select_category .= qq|<option value="$item">$category{$item} (|. sprintf("%s", $item) .qq|)\n|;
326     }
327
328   }
329
330   # preselection chart type
331   my @all_charttypes = ({'name' => $locale->text('Account'), 'value' => 'A'},
332                         {'name' => $locale->text('Heading'), 'value' => 'H'},
333     );
334   my $selected_charttype = $form->{charttype};
335
336
337   # account where AR_tax or AP_tax is set are not orphaned if they are used as
338   # tax-o-matic account
339   if ( $form->{id} && $form->{orphaned} && ($form->{link} =~ m/(AP_tax|AR_tax)/) ) {
340     if (SL::DB::Manager::Tax->find_by(chart_id => $form->{id})) {
341       $form->{orphaned} = 0;
342     }
343   }
344
345   my $ChartTypeIsAccount = ($form->{charttype} eq "A") ? "1":"";
346   my $AccountIsPosted = ($form->{orphaned} ) ? "":"1";
347
348   $form->header();
349
350   my $parameters_ref = {
351     ChartTypeIsAccount         => $ChartTypeIsAccount,
352     AccountIsPosted            => $AccountIsPosted,
353     select_category            => $select_category,
354     all_charttypes             => \@all_charttypes,
355     selected_charttype         => $selected_charttype,
356     select_bwa                 => $select_bwa,
357     select_bilanz              => $select_bilanz,
358     select_eur                 => $select_eur,
359   };
360
361   # Ausgabe des Templates
362   print($form->parse_html_template('am/edit_accounts', $parameters_ref));
363
364
365   $main::lxdebug->leave_sub();
366 }
367
368 sub form_footer {
369   $::lxdebug->enter_sub;
370   $::auth->assert('config');
371
372   print $::form->parse_html_template('am/form_footer', {
373     show_save        => !$::form->{id}
374                      || ($::form->{id} && $::form->{orphaned})
375                      || ($::form->{type} eq "account" && !$::form->{new_chart_valid}),
376     show_delete      => $::form->{id} && $::form->{orphaned},
377     show_save_as_new => $::form->{id} && $::form->{type} eq "account",
378   });
379
380   $::lxdebug->leave_sub;
381 }
382
383 sub save_account {
384   $main::lxdebug->enter_sub();
385
386   my $form     = $main::form;
387   my %myconfig = %main::myconfig;
388   my $locale   = $main::locale;
389
390   $main::auth->assert('config');
391
392   $form->isblank("accno",       $locale->text('Account Number missing!'));
393   $form->isblank("description", $locale->text('Account Description missing!'));
394
395   if ($form->{charttype} eq 'A'){
396     $form->isblank("category",  $locale->text('Account Type missing!'));
397
398     my $found_valid_taxkey = 0;
399     foreach my $i (0 .. 10) { # 10 is maximum count of taxkeys in form
400       if ($form->{"taxkey_startdate_$i"} and !$form->{"taxkey_del_$i"}) {
401         $found_valid_taxkey = 1;
402         last;
403       }
404     }
405     if ($found_valid_taxkey == 0) {
406       $form->error($locale->text('A valid taxkey is missing!'));
407     }
408   }
409
410   $form->redirect($locale->text('Account saved!'))
411     if (AM->save_account(\%myconfig, \%$form));
412   $form->error($locale->text('Cannot save account!'));
413
414   $main::lxdebug->leave_sub();
415 }
416
417 sub save_as_new_account {
418   $main::lxdebug->enter_sub();
419
420   my $form     = $main::form;
421   my %myconfig = %main::myconfig;
422   my $locale   = $main::locale;
423
424   $main::auth->assert('config');
425
426   $form->isblank("accno",       $locale->text('Account Number missing!'));
427   $form->isblank("description", $locale->text('Account Description missing!'));
428
429   if ($form->{charttype} eq 'A'){
430     $form->isblank("category",  $locale->text('Account Type missing!'));
431   }
432
433   for my $taxkey (0 .. 9) {
434     if ($form->{"taxkey_id_$taxkey"}) {
435       $form->{"taxkey_id_$taxkey"} = "NEW";
436     }
437   }
438
439   $form->{id} = 0;
440   $form->redirect($locale->text('Account saved!'))
441     if (AM->save_account(\%myconfig, \%$form));
442   $form->error($locale->text('Cannot save account!'));
443
444   $main::lxdebug->leave_sub();
445 }
446
447 sub list_account {
448   $main::lxdebug->enter_sub();
449
450   my $form     = $main::form;
451   my %myconfig = %main::myconfig;
452   my $locale   = $main::locale;
453
454   $main::auth->assert('config');
455
456   $form->{callback}     = build_std_url('action=list_account');
457   my $link_edit_account = build_std_url('action=edit_account', 'callback');
458
459   CA->all_accounts(\%myconfig, \%$form);
460
461   foreach my $ca (@{ $form->{CA} }) {
462
463     $ca->{debit}  = "";
464     $ca->{credit} = "";
465
466     if ($ca->{amount} > 0) {
467       $ca->{credit} = $form->format_amount(\%myconfig, $ca->{amount}, 2);
468     }
469     if ($ca->{amount} < 0) {
470       $ca->{debit} = $form->format_amount(\%myconfig, -1 * $ca->{amount}, 2);
471     }
472     $ca->{heading}   = ( $ca->{charttype} eq 'H' ) ? 1:'';
473     $ca->{link_edit_account} = $link_edit_account . '&id=' . E($ca->{id});
474   }
475
476   $::request->{layout}->use_stylesheet("list_accounts.css");
477   $form->{title}       = $locale->text('Chart of Accounts');
478
479   $form->header;
480
481
482   my $parameters_ref = {
483   #   hidden_variables                => $_hidden_variables_ref,
484   };
485
486   # Ausgabe des Templates
487   print($form->parse_html_template('am/list_accounts', $parameters_ref));
488
489   $main::lxdebug->leave_sub();
490
491 }
492
493
494 sub list_account_details {
495 # Ajax Funktion aus list_account_details
496   $main::lxdebug->enter_sub();
497
498   my $form     = $main::form;
499   my %myconfig = %main::myconfig;
500   my $locale   = $main::locale;
501
502   $main::auth->assert('config');
503
504   my $chart_id = $form->{args};
505
506   CA->all_accounts(\%myconfig, \%$form, $chart_id);
507
508   foreach my $ca (@{ $form->{CA} }) {
509
510     $ca->{debit}  = "&nbsp;";
511     $ca->{credit} = "&nbsp;";
512
513     if ($ca->{amount} > 0) {
514       $ca->{credit} =
515         $form->format_amount(\%myconfig, $ca->{amount}, 2, "&nbsp;");
516     }
517     if ($ca->{amount} < 0) {
518       $ca->{debit} =
519         $form->format_amount(\%myconfig, -1 * $ca->{amount}, 2, "&nbsp;");
520     }
521
522     my @links = split( q{:}, $ca->{link});
523
524     $ca->{link} = q{};
525
526     foreach my $link (@links){
527       $link =    ( $link eq 'AR')             ? $locale->text('Account Link AR')
528                : ( $link eq 'AP')             ? $locale->text('Account Link AP')
529                : ( $link eq 'IC')             ? $locale->text('Account Link IC')
530                : ( $link eq 'AR_amount' )     ? $locale->text('Account Link AR_amount')
531                : ( $link eq 'AR_paid' )       ? $locale->text('Account Link AR_paid')
532                : ( $link eq 'AR_tax' )        ? $locale->text('Account Link AR_tax')
533                : ( $link eq 'AP_amount' )     ? $locale->text('Account Link AP_amount')
534                : ( $link eq 'AP_paid' )       ? $locale->text('Account Link AP_paid')
535                : ( $link eq 'AP_tax' )        ? $locale->text('Account Link AP_tax')
536                : ( $link eq 'IC_sale' )       ? $locale->text('Account Link IC_sale')
537                : ( $link eq 'IC_cogs' )       ? $locale->text('Account Link IC_cogs')
538                : ( $link eq 'IC_taxpart' )    ? $locale->text('Account Link IC_taxpart')
539                : ( $link eq 'IC_income' )     ? $locale->text('Account Link IC_income')
540                : ( $link eq 'IC_expense' )    ? $locale->text('Account Link IC_expense')
541                : ( $link eq 'IC_taxservice' ) ? $locale->text('Account Link IC_taxservice')
542                : $locale->text('Unknown Link') . ': ' . $link;
543       $ca->{link} .= ($link ne '') ?  "[$link] ":'';
544     }
545
546     $ca->{category} = ($ca->{category} eq 'A') ? $locale->text('Account Category A')
547                     : ($ca->{category} eq 'E') ? $locale->text('Account Category E')
548                     : ($ca->{category} eq 'L') ? $locale->text('Account Category L')
549                     : ($ca->{category} eq 'I') ? $locale->text('Account Category I')
550                     : ($ca->{category} eq 'Q') ? $locale->text('Account Category Q')
551                     : ($ca->{category} eq 'C') ? $locale->text('Account Category C')
552                     : ($ca->{category} eq 'G') ? $locale->text('Account Category G')
553                     : $locale->text('Unknown Category') . ': ' . $ca->{category};
554   }
555
556   $form->{title} = $locale->text('Chart of Accounts');
557
558   print $form->ajax_response_header, $form->parse_html_template('am/list_account_details');
559
560   $main::lxdebug->leave_sub();
561
562 }
563
564 sub delete_account {
565   $main::lxdebug->enter_sub();
566
567   my $form     = $main::form;
568   my %myconfig = %main::myconfig;
569   my $locale   = $main::locale;
570
571   $main::auth->assert('config');
572
573   $form->{title} = $locale->text('Delete Account');
574
575   foreach my $id (
576     qw(inventory_accno_id income_accno_id expense_accno_id fxgain_accno_id fxloss_accno_id)
577     ) {
578     if ($form->{id} == $form->{$id}) {
579       $form->error($locale->text('Cannot delete default account!'));
580     }
581   }
582
583   $form->redirect($locale->text('Account deleted!'))
584     if (AM->delete_account(\%myconfig, \%$form));
585   $form->error($locale->text('Cannot delete account!'));
586
587   $main::lxdebug->leave_sub();
588 }
589
590 sub add_lead {
591   $main::lxdebug->enter_sub();
592
593   my $form     = $main::form;
594
595   $main::auth->assert('config');
596
597   $form->{title} = "Add";
598
599   $form->{callback} = "am.pl?action=add_lead" unless $form->{callback};
600
601   &lead_header;
602   &form_footer;
603
604   $main::lxdebug->leave_sub();
605 }
606
607 sub edit_lead {
608   $main::lxdebug->enter_sub();
609
610   my $form     = $main::form;
611   my %myconfig = %main::myconfig;
612
613   $main::auth->assert('config');
614
615   $form->{title} = "Edit";
616
617   AM->get_lead(\%myconfig, \%$form);
618
619   &lead_header;
620
621   $form->{orphaned} = 1;
622   &form_footer;
623
624   $main::lxdebug->leave_sub();
625 }
626
627 sub list_lead {
628   $::lxdebug->enter_sub;
629   $::auth->assert('config');
630
631   AM->lead(\%::myconfig, $::form);
632
633   $::form->{callback} = "am.pl?action=list_lead";
634   $::form->{title}    = $::locale->text('Lead');
635
636   $::form->header;
637   print $::form->parse_html_template('am/lead_list');
638
639   $::lxdebug->leave_sub;
640 }
641
642 sub lead_header {
643   $::lxdebug->enter_sub;
644   $::auth->assert('config');
645
646   # $locale->text('Add Lead')
647   # $locale->text('Edit Lead')
648   $::form->{title} = $::locale->text("$::form->{title} Lead");
649
650   $::form->header;
651   print $::form->parse_html_template('am/lead_header');
652
653   $::lxdebug->leave_sub;
654 }
655
656 sub save_lead {
657   $main::lxdebug->enter_sub();
658
659   my $form     = $main::form;
660   my %myconfig = %main::myconfig;
661   my $locale   = $main::locale;
662
663   $main::auth->assert('config');
664
665   $form->isblank("description", $locale->text('Description missing!'));
666   AM->save_lead(\%myconfig, \%$form);
667   $form->redirect($locale->text('lead saved!'));
668
669   $main::lxdebug->leave_sub();
670 }
671
672 sub delete_lead {
673   $main::lxdebug->enter_sub();
674
675   my $form     = $main::form;
676   my %myconfig = %main::myconfig;
677   my $locale   = $main::locale;
678
679   $main::auth->assert('config');
680
681   AM->delete_lead(\%myconfig, \%$form);
682   $form->redirect($locale->text('lead deleted!'));
683
684   $main::lxdebug->leave_sub();
685 }
686
687 sub add_language {
688   $main::lxdebug->enter_sub();
689
690   my $form     = $main::form;
691
692   $main::auth->assert('config');
693
694   $form->{title} = "Add";
695
696   $form->{callback} = "am.pl?action=add_language" unless $form->{callback};
697
698   &language_header;
699   &form_footer;
700
701   $main::lxdebug->leave_sub();
702 }
703
704 sub edit_language {
705   $main::lxdebug->enter_sub();
706
707   my $form     = $main::form;
708   my %myconfig = %main::myconfig;
709
710   $main::auth->assert('config');
711
712   $form->{title} = "Edit";
713
714   AM->get_language(\%myconfig, \%$form);
715
716   &language_header;
717
718   $form->{orphaned} = 1;
719   &form_footer;
720
721   $main::lxdebug->leave_sub();
722 }
723
724 sub list_language {
725   $::lxdebug->enter_sub;
726   $::auth->assert('config');
727
728   AM->language(\%::myconfig, $::form);
729
730   $::form->{callback} = "am.pl?action=list_language";
731   $::form->{title}   = $::locale->text('Languages');
732
733   $::form->header;
734
735   print $::form->parse_html_template('am/language_list');
736
737   $::lxdebug->leave_sub;
738 }
739
740 sub language_header {
741   $::lxdebug->enter_sub;
742   $::auth->assert('config');
743
744   # $locale->text('Add Language')
745   # $locale->text('Edit Language')
746   $::form->{title} = $::locale->text("$::form->{title} Language");
747
748   $::form->header;
749
750   print $::form->parse_html_template('am/language_header', {
751     numberformats => [ '1,000.00', '1000.00', '1.000,00', '1000,00' ],
752     dateformats => [ qw(mm/dd/yy dd/mm/yy dd.mm.yy yyyy-mm-dd) ],
753   });
754
755   $::lxdebug->leave_sub;
756 }
757
758 sub save_language {
759   $main::lxdebug->enter_sub();
760
761   my $form     = $main::form;
762   my %myconfig = %main::myconfig;
763   my $locale   = $main::locale;
764
765   $main::auth->assert('config');
766
767   $form->isblank("description", $locale->text('Language missing!'));
768   $form->isblank("template_code", $locale->text('Template Code missing!'));
769   $form->isblank("article_code", $locale->text('Article Code missing!'));
770   AM->save_language(\%myconfig, \%$form);
771   $form->redirect($locale->text('Language saved!'));
772
773   $main::lxdebug->leave_sub();
774 }
775
776 sub delete_language {
777   $main::lxdebug->enter_sub();
778
779   my $form     = $main::form;
780   my %myconfig = %main::myconfig;
781   my $locale   = $main::locale;
782
783   $main::auth->assert('config');
784
785   AM->delete_language(\%myconfig, \%$form);
786   $form->redirect($locale->text('Language deleted!'));
787
788   $main::lxdebug->leave_sub();
789 }
790
791
792 sub add_buchungsgruppe {
793   $main::lxdebug->enter_sub();
794
795   my $form     = $main::form;
796   my %myconfig = %main::myconfig;
797   my $locale   = $main::locale;
798
799   $main::auth->assert('config');
800
801   # $locale->text("Add Buchungsgruppe")
802   # $locale->text("Edit Buchungsgruppe")
803   $form->{title} = "Add";
804
805   $form->{callback} = "am.pl?action=add_buchungsgruppe" unless $form->{callback};
806
807   AM->get_buchungsgruppe(\%myconfig, \%$form);
808   $form->{"inventory_accno_id"} = $form->{"std_inventory_accno_id"};
809   for (my $i = 0; 4 > $i; $i++) {
810     map({ $form->{"${_}_accno_id_$i"} = $form->{"std_${_}_accno_id"}; }
811         qw(income expense));
812   }
813
814   &buchungsgruppe_header;
815   &form_footer;
816
817   $main::lxdebug->leave_sub();
818 }
819
820 sub edit_buchungsgruppe {
821   $main::lxdebug->enter_sub();
822
823   my $form     = $main::form;
824   my %myconfig = %main::myconfig;
825
826   $main::auth->assert('config');
827
828   $form->{title} = "Edit";
829
830   AM->get_buchungsgruppe(\%myconfig, \%$form);
831
832   &buchungsgruppe_header;
833
834   &form_footer;
835
836   $main::lxdebug->leave_sub();
837 }
838
839 sub list_buchungsgruppe {
840   $::lxdebug->enter_sub;
841   $::auth->assert('config');
842
843   AM->buchungsgruppe(\%::myconfig, $::form);
844
845   $::form->{callback} = "am.pl?action=list_buchungsgruppe";
846   $::form->{title}    = $::locale->text('Buchungsgruppen');
847   $::form->header;
848
849   print $::form->parse_html_template('am/buchungsgruppe_list', {
850     swap_link => qq|am.pl?action=swap_buchungsgruppen&|,
851   });
852
853   $::lxdebug->leave_sub;
854 }
855
856 sub buchungsgruppe_header {
857   $::lxdebug->enter_sub;
858   $::auth->assert('config');
859
860   # $locale->text('Add Accounting Group')
861   # $locale->text('Edit Accounting Group')
862   $::form->{title}    = $::locale->text("$::form->{title} Buchungsgruppe");
863
864   my ($acc_inventory, $acc_income, $acc_expense) = ({}, {}, {});
865   my %acc_type_map = (
866     IC         => $acc_inventory,
867     IC_income  => $acc_income,
868     IC_sale    => $acc_income,
869     IC_expense => $acc_expense,
870     IC_cogs    => $acc_expense,
871   );
872
873   for my $key (keys %acc_type_map) {
874     for my $ref (@{ $::form->{IC_links}{$key} }) {
875       $acc_type_map{$key}{$ref->{id}} = $ref;
876     }
877   }
878
879   my %sorted_accounts = map {
880     $_ => [ sort { $a->{accno} cmp $b->{accno} } values %{ $acc_type_map{$_} } ],
881   } keys %acc_type_map;
882
883   $::form->header;
884   print $::form->parse_html_template('am/buchungsgruppe_header', {
885     accounts      => \%sorted_accounts,
886     account_label => sub { "$_[0]{accno}--$_[0]{description}" },
887   });
888
889   $::lxdebug->leave_sub;
890 }
891
892 sub save_buchungsgruppe {
893   $main::lxdebug->enter_sub();
894
895   my $form     = $main::form;
896   my %myconfig = %main::myconfig;
897   my $locale   = $main::locale;
898
899   $main::auth->assert('config');
900
901   $form->isblank("description", $locale->text('Description missing!'));
902
903   AM->save_buchungsgruppe(\%myconfig, \%$form);
904   $form->redirect($locale->text('Accounting Group saved!'));
905
906   $main::lxdebug->leave_sub();
907 }
908
909 sub delete_buchungsgruppe {
910   $main::lxdebug->enter_sub();
911
912   my $form     = $main::form;
913   my %myconfig = %main::myconfig;
914   my $locale   = $main::locale;
915
916   $main::auth->assert('config');
917
918   AM->delete_buchungsgruppe(\%myconfig, \%$form);
919   $form->redirect($locale->text('Accounting Group deleted!'));
920
921   $main::lxdebug->leave_sub();
922 }
923
924 sub swap_buchungsgruppen {
925   $main::lxdebug->enter_sub();
926
927   my $form     = $main::form;
928   my %myconfig = %main::myconfig;
929
930   $main::auth->assert('config');
931
932   AM->swap_sortkeys(\%myconfig, $form, "buchungsgruppen");
933   list_buchungsgruppe();
934
935   $main::lxdebug->leave_sub();
936 }
937
938 sub edit_defaults {
939   $main::lxdebug->enter_sub();
940
941   my $form     = $main::form;
942   my %myconfig = %main::myconfig;
943   my $locale   = $main::locale;
944
945   # get defaults for account numbers and last numbers
946   AM->defaultaccounts(\%myconfig, \%$form);
947   $form->{ALL_UNITS} = AM->convertible_units(AM->retrieve_all_units(), 'g');
948
949   map { $form->{"defaults_${_}"} = $form->{defaults}->{$_} } keys %{ $form->{defaults} };
950
951   # default language
952   my $all_languages = SL::DB::Manager::Language->get_all;
953
954 # cash = IST-Versteuerung, accrual = SOLL-Versteuerung
955
956   foreach my $key (keys %{ $form->{IC} }) {
957     foreach my $accno (sort keys %{ $form->{IC}->{$key} }) {
958       my $array = "ACCNOS_" . uc($key);
959       $form->{$array} ||= [];
960
961       my $value = "${accno}--" . $form->{IC}->{$key}->{$accno}->{description};
962       push @{ $form->{$array} }, {
963         'name'     => $value,
964         'value'    => $value,
965         'selected' => $form->{IC}->{$key}->{$accno}->{id} == $form->{defaults}->{$key},
966       };
967     }
968   }
969
970   $form->{title} = $locale->text('Ranges of numbers and default accounts');
971
972   $form->header();
973   print $form->parse_html_template('am/edit_defaults',
974                                    { ALL_LANGUAGES => $all_languages, });
975
976   $main::lxdebug->leave_sub();
977 }
978
979 sub save_defaults {
980   $main::lxdebug->enter_sub();
981
982   my $form     = $main::form;
983   my $locale   = $main::locale;
984
985   AM->save_defaults();
986
987   $form->redirect($locale->text('Defaults saved.'));
988
989   $main::lxdebug->leave_sub();
990 }
991
992 sub _build_cfg_options {
993   my $form     = $main::form;
994   my %myconfig = %main::myconfig;
995
996   my $idx   = shift;
997   my $array = uc($idx) . 'S';
998
999   $form->{$array} = [];
1000   foreach my $item (@_) {
1001     push @{ $form->{$array} }, {
1002       'name'     => $item,
1003       'value'    => $item,
1004       'selected' => $item eq $myconfig{$idx},
1005     };
1006   }
1007 }
1008
1009 sub config {
1010   $main::lxdebug->enter_sub();
1011
1012   my $form     = $main::form;
1013   my %myconfig = %main::myconfig;
1014   my $locale   = $main::locale;
1015
1016   _build_cfg_options('dateformat', qw(mm/dd/yy dd/mm/yy dd.mm.yy yyyy-mm-dd));
1017   _build_cfg_options('numberformat', ('1,000.00', '1000.00', '1.000,00', '1000,00'));
1018
1019   my @formats = ();
1020   if ($::lx_office_conf{print_templates}->{opendocument}
1021       && $::lx_office_conf{applications}->{openofficeorg_writer} && (-x $::lx_office_conf{applications}->{openofficeorg_writer})
1022       && $::lx_office_conf{applications}->{xvfb}                 && (-x $::lx_office_conf{applications}->{xvfb})) {
1023     push(@formats, { "name" => $locale->text("PDF (OpenDocument/OASIS)"),
1024                      "value" => "opendocument_pdf" });
1025   }
1026   if ($::lx_office_conf{print_templates}->{latex}) {
1027     push(@formats, { "name" => $locale->text("PDF"), "value" => "pdf" });
1028   }
1029   push(@formats, { "name" => "HTML", "value" => "html" });
1030   if ($::lx_office_conf{print_templates}->{latex}) {
1031     push(@formats, { "name" => $locale->text("Postscript"),
1032                      "value" => "postscript" });
1033   }
1034   if ($::lx_office_conf{print_templates}->{opendocument}) {
1035     push(@formats, { "name" => $locale->text("OpenDocument/OASIS"),
1036                      "value" => "opendocument" });
1037   }
1038
1039   if (!$myconfig{"template_format"}) {
1040     $myconfig{"template_format"} = "pdf";
1041   }
1042   $form->{TEMPLATE_FORMATS} = [];
1043   foreach my $item (@formats) {
1044     push @{ $form->{TEMPLATE_FORMATS} }, {
1045       'name'     => $item->{name},
1046       'value'    => $item->{value},
1047       'selected' => $item->{value} eq $myconfig{template_format},
1048     };
1049   }
1050
1051   if (!$myconfig{"default_media"}) {
1052     $myconfig{"default_media"} = "screen";
1053   }
1054
1055   my %selected = ($myconfig{"default_media"} => "selected");
1056   $form->{MEDIA} = [
1057     { 'name' => $locale->text('Screen'),  'value' => 'screen',  'selected' => $selected{screen}, },
1058     { 'name' => $locale->text('Printer'), 'value' => 'printer', 'selected' => $selected{printer}, },
1059     { 'name' => $locale->text('Queue'),   'value' => 'queue',   'selected' => $selected{queue}, },
1060     ];
1061
1062   $form->{PRINTERS} = [ SL::Printer->all_printers(%::myconfig) ];
1063
1064   my %countrycodes = User->country_codes;
1065
1066   $form->{COUNTRYCODES} = [];
1067   foreach my $countrycode (sort { $countrycodes{$a} cmp $countrycodes{$b} } keys %countrycodes) {
1068     push @{ $form->{COUNTRYCODES} }, {
1069       'name'     => $countrycodes{$countrycode},
1070       'value'    => $countrycode,
1071       'selected' => $countrycode eq $myconfig{countrycode},
1072     };
1073   }
1074
1075   $form->{STYLESHEETS} = [];
1076   foreach my $item (qw(lx-office-erp.css Mobile.css kivitendo.css)) {
1077     push @{ $form->{STYLESHEETS} }, {
1078       'name'     => $item,
1079       'value'    => $item,
1080       'selected' => $item eq $myconfig{stylesheet},
1081     };
1082   }
1083
1084   $myconfig{show_form_details} = 1 unless (defined($myconfig{show_form_details}));
1085   $form->{CAN_CHANGE_PASSWORD} = $main::auth->can_change_password();
1086   $form->{todo_cfg}            = { TODO->get_user_config('login' => $form->{login}) };
1087
1088   $form->{title}               = $locale->text('Edit Preferences for #1', $form->{login});
1089
1090   $form->header();
1091   print $form->parse_html_template('am/config');
1092
1093   $main::lxdebug->leave_sub();
1094 }
1095
1096 sub save_preferences {
1097   $main::lxdebug->enter_sub();
1098
1099   my $form     = $main::form;
1100   my %myconfig = %main::myconfig;
1101   my $locale   = $main::locale;
1102
1103   $form->{stylesheet} = $form->{usestylesheet};
1104
1105   TODO->save_user_config('login' => $form->{login}, %{ $form->{todo_cfg} || { } });
1106
1107   if (AM->save_preferences(\%myconfig, $form)) {
1108     if ($::auth->can_change_password()
1109         && defined $form->{new_password}
1110         && ($form->{new_password} ne '********')) {
1111       my $verifier = SL::Auth::PasswordPolicy->new;
1112       my $result   = $verifier->verify($form->{new_password});
1113
1114       if ($result != SL::Auth::PasswordPolicy->OK()) {
1115         $form->error($::locale->text('The settings were saved, but the password was not changed.') . ' ' . join(' ', $verifier->errors($result)));
1116       }
1117
1118       $::auth->change_password($form->{login}, $form->{new_password});
1119
1120       $form->{password} = $form->{new_password};
1121       $::auth->set_session_value('password', $form->{password});
1122       $::auth->create_or_refresh_session();
1123     }
1124
1125     $form->redirect($locale->text('Preferences saved!'));
1126   }
1127
1128   $form->error($locale->text('Cannot save preferences!'));
1129
1130   $main::lxdebug->leave_sub();
1131 }
1132
1133 sub audit_control {
1134   $::lxdebug->enter_sub;
1135   $::auth->assert('config');
1136
1137   $::form->{title} = $::locale->text('Audit Control');
1138
1139   AM->closedto(\%::myconfig, $::form);
1140
1141   $::form->header;
1142   print $::form->parse_html_template('am/audit_control');
1143
1144   $::lxdebug->leave_sub;
1145 }
1146
1147 sub doclose {
1148   $main::lxdebug->enter_sub();
1149
1150   my $form     = $main::form;
1151   my %myconfig = %main::myconfig;
1152   my $locale   = $main::locale;
1153
1154   $main::auth->assert('config');
1155
1156   AM->closebooks(\%myconfig, \%$form);
1157
1158   if ($form->{closedto}) {
1159     $form->redirect(
1160                     $locale->text('Books closed up to') . " "
1161                       . $locale->date(\%myconfig, $form->{closedto}, 1));
1162   } else {
1163     $form->redirect($locale->text('Books are open'));
1164   }
1165
1166   $main::lxdebug->leave_sub();
1167 }
1168
1169 sub edit_units {
1170   $main::lxdebug->enter_sub();
1171
1172   my $form     = $main::form;
1173   my %myconfig = %main::myconfig;
1174   my $locale   = $main::locale;
1175
1176   $main::auth->assert('config');
1177
1178   my $units = AM->retrieve_units(\%myconfig, $form, "resolved_");
1179   AM->units_in_use(\%myconfig, $form, $units);
1180   map({ $units->{$_}->{"BASE_UNIT_DDBOX"} = AM->unit_select_data($units, $units->{$_}->{"base_unit"}, 1); } keys(%{$units}));
1181
1182   my @languages = AM->language(\%myconfig, $form, 1);
1183
1184   my @unit_list = sort({ $a->{"sortkey"} <=> $b->{"sortkey"} } values(%{$units}));
1185
1186   my $i = 1;
1187   foreach (@unit_list) {
1188     $_->{"factor"} = $form->format_amount(\%myconfig, $_->{"factor"} * 1) if ($_->{"factor"});
1189     $_->{"UNITLANGUAGES"} = [];
1190     foreach my $lang (@languages) {
1191       push(@{ $_->{"UNITLANGUAGES"} },
1192            { "idx" => $i,
1193              "unit" => $_->{"name"},
1194              "language_id" => $lang->{"id"},
1195              "localized" => $_->{"LANGUAGES"}->{$lang->{"template_code"}}->{"localized"},
1196              "localized_plural" => $_->{"LANGUAGES"}->{$lang->{"template_code"}}->{"localized_plural"},
1197            });
1198     }
1199     $i++;
1200   }
1201
1202   $units = AM->retrieve_units(\%myconfig, $form);
1203   my $ddbox = AM->unit_select_data($units, undef, 1);
1204
1205   $form->{"title"} = $locale->text("Add and edit units");
1206   $form->header();
1207   print($form->parse_html_template("am/edit_units",
1208                                    { "UNITS"               => \@unit_list,
1209                                      "NEW_BASE_UNIT_DDBOX" => $ddbox,
1210                                      "LANGUAGES"           => \@languages,
1211                                    }));
1212
1213   $main::lxdebug->leave_sub();
1214 }
1215
1216 sub add_unit {
1217   $main::lxdebug->enter_sub();
1218
1219   my $form     = $main::form;
1220   my %myconfig = %main::myconfig;
1221   my $locale   = $main::locale;
1222
1223   $main::auth->assert('config');
1224
1225   $form->isblank("new_name", $locale->text("The name is missing."));
1226   my $units = AM->retrieve_units(\%myconfig, $form);
1227   my $all_units = AM->retrieve_units(\%myconfig, $form);
1228   $form->show_generic_error($locale->text("A unit with this name does already exist.")) if ($all_units->{$form->{"new_name"}});
1229
1230   my ($base_unit, $factor);
1231   if ($form->{"new_base_unit"}) {
1232     $form->show_generic_error($locale->text("The base unit does not exist.")) unless (defined($units->{$form->{"new_base_unit"}}));
1233
1234     $form->isblank("new_factor", $locale->text("The factor is missing."));
1235     $factor = $form->parse_amount(\%myconfig, $form->{"new_factor"});
1236     $form->show_generic_error($locale->text("The factor is missing.")) unless ($factor);
1237     $base_unit = $form->{"new_base_unit"};
1238   }
1239
1240   my @languages;
1241   foreach my $lang (AM->language(\%myconfig, $form, 1)) {
1242     next unless ($form->{"new_localized_$lang->{id}"} || $form->{"new_localized_plural_$lang->{id}"});
1243     push(@languages, { "id" => $lang->{"id"},
1244                        "localized" => $form->{"new_localized_$lang->{id}"},
1245                        "localized_plural" => $form->{"new_localized_plural_$lang->{id}"},
1246          });
1247   }
1248
1249   AM->add_unit(\%myconfig, $form, $form->{"new_name"}, $base_unit, $factor, \@languages);
1250
1251   $form->{"saved_message"} = $locale->text("The unit has been saved.");
1252
1253   edit_units();
1254
1255   $main::lxdebug->leave_sub();
1256 }
1257
1258 sub set_unit_languages {
1259   $main::lxdebug->enter_sub();
1260
1261   my $form     = $main::form;
1262
1263   $main::auth->assert('config');
1264
1265   my ($unit, $languages, $idx) = @_;
1266
1267   $unit->{"LANGUAGES"} = [];
1268
1269   foreach my $lang (@{$languages}) {
1270     push(@{ $unit->{"LANGUAGES"} },
1271          { "id" => $lang->{"id"},
1272            "localized" => $form->{"localized_${idx}_$lang->{id}"},
1273            "localized_plural" => $form->{"localized_plural_${idx}_$lang->{id}"},
1274          });
1275   }
1276
1277   $main::lxdebug->leave_sub();
1278 }
1279
1280 sub save_unit {
1281   $main::lxdebug->enter_sub();
1282
1283   my $form     = $main::form;
1284   my %myconfig = %main::myconfig;
1285   my $locale   = $main::locale;
1286
1287   $main::auth->assert('config');
1288
1289   my $old_units = AM->retrieve_units(\%myconfig, $form, "resolved_");
1290   AM->units_in_use(\%myconfig, $form, $old_units);
1291
1292   my @languages = AM->language(\%myconfig, $form, 1);
1293
1294   my $new_units = {};
1295   my @delete_units = ();
1296   foreach my $i (1..($form->{"rowcount"} * 1)) {
1297     my $old_unit = $old_units->{$form->{"old_name_$i"}};
1298     if (!$old_unit) {
1299       $form->show_generic_error(sprintf($locale->text("The unit in row %d has been deleted in the meantime."), $i));
1300     }
1301
1302     if ($form->{"unchangeable_$i"}) {
1303       $new_units->{$form->{"old_name_$i"}} = $old_units->{$form->{"old_name_$i"}};
1304       $new_units->{$form->{"old_name_$i"}}->{"unchanged_unit"} = 1;
1305       set_unit_languages($new_units->{$form->{"old_name_$i"}}, \@languages, $i);
1306       next;
1307     }
1308
1309     if ($old_unit->{"in_use"}) {
1310       $form->show_generic_error(sprintf($locale->text("The unit in row %d has been used in the meantime and cannot be changed anymore."), $i));
1311     }
1312
1313     if ($form->{"delete_$i"}) {
1314       push(@delete_units, $old_unit->{"name"});
1315       next;
1316     }
1317
1318     $form->isblank("name_$i", sprintf($locale->text("The name is missing in row %d."), $i));
1319
1320     $form->show_generic_error(sprintf($locale->text("The name in row %d has already been used before."), $i)) if ($new_units->{$form->{"name_$i"}});
1321     my %h = map({ $_ => $form->{"${_}_$i"} } qw(name base_unit factor old_name));
1322     $new_units->{$form->{"name_$i"}} = \%h;
1323     $new_units->{$form->{"name_$i"}}->{"row"} = $i;
1324     set_unit_languages($new_units->{$form->{"old_name_$i"}}, \@languages, $i);
1325   }
1326
1327   foreach my $unit (values(%{$new_units})) {
1328     next unless ($unit->{"old_name"});
1329     if ($unit->{"base_unit"}) {
1330       $form->show_generic_error(sprintf($locale->text("The base unit does not exist or it is about to be deleted in row %d."), $unit->{"row"}))
1331         unless (defined($new_units->{$unit->{"base_unit"}}));
1332       $unit->{"factor"} = $form->parse_amount(\%myconfig, $unit->{"factor"});
1333       $form->show_generic_error(sprintf($locale->text("The factor is missing in row %d."), $unit->{"row"})) unless ($unit->{"factor"} >= 1.0);
1334     } else {
1335       $unit->{"base_unit"} = undef;
1336       $unit->{"factor"} = undef;
1337     }
1338   }
1339
1340   foreach my $unit (values(%{$new_units})) {
1341     next if ($unit->{"unchanged_unit"});
1342
1343     map({ $_->{"seen"} = 0; } values(%{$new_units}));
1344     my $new_unit = $unit;
1345     while ($new_unit->{"base_unit"}) {
1346       $new_unit->{"seen"} = 1;
1347       $new_unit = $new_units->{$new_unit->{"base_unit"}};
1348       if ($new_unit->{"seen"}) {
1349         $form->show_generic_error(sprintf($locale->text("The base unit relations must not contain loops (e.g. by saying that unit A's base unit is B, " .
1350                                                         "B's base unit is C and C's base unit is A) in row %d."), $unit->{"row"}));
1351       }
1352     }
1353   }
1354
1355   AM->save_units(\%myconfig, $form, $new_units, \@delete_units);
1356
1357   $form->{"saved_message"} = $locale->text("The units have been saved.");
1358
1359   edit_units();
1360
1361   $main::lxdebug->leave_sub();
1362 }
1363
1364 sub show_history_search {
1365   $main::lxdebug->enter_sub();
1366
1367   my $form     = $main::form;
1368   my $locale   = $main::locale;
1369
1370   $main::auth->assert('config');
1371
1372   $form->{title} = $locale->text("History Search");
1373   $form->header();
1374
1375   print $form->parse_html_template("common/search_history");
1376
1377   $main::lxdebug->leave_sub();
1378 }
1379
1380 sub show_am_history {
1381   $main::lxdebug->enter_sub();
1382
1383   my $form     = $main::form;
1384   my %myconfig = %main::myconfig;
1385   my $locale   = $main::locale;
1386
1387   $main::auth->assert('config');
1388
1389   my $callback     = build_std_url(qw(action einschraenkungen fromdate todate mitarbeiter searchid what2search));
1390   $form->{order} ||= 'h.itime--1';
1391
1392   my %search = ( "Artikelnummer"          => "parts",
1393                  "Kundennummer"           => "customer",
1394                  "Lieferantennummer"      => "vendor",
1395                  "Projektnummer"          => "project",
1396                  "Buchungsnummer"         => "oe",
1397                  "Eingangsrechnungnummer" => "ap",
1398                  "Ausgangsrechnungnummer" => "ar",
1399                  "Mahnungsnummer"         => "dunning"
1400     );
1401   my %searchNo = ( "Artikelnummer"          => "partnumber",
1402                    "Kundennummer"           => "customernumber",
1403                    "Lieferantennummer"      => "vendornumber",
1404                    "Projektnummer"          => "projectnumber",
1405                    "Buchungsnummer"         => "ordnumber",
1406                    "Eingangsrechnungnummer" => "invnumber",
1407                    "Ausgangsrechnungnummer" => "invnumber",
1408                    "Mahnungsnummer"         => "dunning_id"
1409     );
1410
1411   my $dbh = $form->dbconnect(\%myconfig);
1412
1413   my $restriction;
1414   $restriction     = qq| AND (| . join(' OR ', map { " addition = " . $dbh->quote($_) } split(m/\,/, $form->{einschraenkungen})) . qq|)| if $form->{einschraenkungen};
1415   $restriction    .= qq| AND h.itime::date >= | . conv_dateq($form->{fromdate})                                                          if $form->{fromdate};
1416   $restriction    .= qq| AND h.itime::date <= | . conv_dateq($form->{todate})                                                            if $form->{todate};
1417   if ($form->{mitarbeiter} =~ m/^\d+$/) {
1418     $restriction  .= qq| AND employee_id = |    . $form->{mitarbeiter};
1419   } elsif ($form->{mitarbeiter}) {
1420     $restriction  .= qq| AND employee_id = (SELECT id FROM employee WHERE name ILIKE | . $dbh->quote('%' . $form->{mitarbeiter} . '%') . qq|)|;
1421   }
1422
1423   my $query = qq|SELECT trans_id AS id FROM history_erp | .
1424     (  $form->{'searchid'} ? qq| WHERE snumbers = '|  . $searchNo{$form->{'what2search'}} . qq|_| . $form->{'searchid'} . qq|'|
1425      :                       qq| WHERE snumbers ~ '^| . $searchNo{$form->{'what2search'}} . qq|'|);
1426
1427   my @ids    = grep { $_ * 1 } selectall_array_query($form, $dbh, $query);
1428   my $daten .= shift @ids;
1429   $daten    .= join '', map { " OR trans_id = $_" } @ids;
1430
1431   my ($sort, $sortby) = split(/\-\-/, $form->{order});
1432   $sort =~ s/.*\.(.*)$/$1/;
1433
1434   $form->{title} = $locale->text("History Search");
1435   $form->header();
1436
1437   print $form->parse_html_template("common/show_history",
1438                                    { "DATEN"          => $form->get_history($dbh, $daten, $restriction, $form->{order}),
1439                                      "SUCCESS"        => ($form->get_history($dbh, $daten, $restriction, $form->{order}) ne "0"),
1440                                      "NONEWWINDOW"    => 1,
1441                                      uc($sort)        => 1,
1442                                      uc($sort) . "BY" => $sortby,
1443                                      'callback'       => $callback,
1444                                    });
1445   $dbh->disconnect();
1446
1447   $main::lxdebug->leave_sub();
1448 }
1449
1450 sub add_tax {
1451   $main::lxdebug->enter_sub();
1452
1453   my $form     = $main::form;
1454   my $locale   = $main::locale;
1455
1456   $main::auth->assert('config');
1457
1458   $form->{title} =  $locale->text('Add');
1459
1460   $form->{callback} ||= "am.pl?action=add_tax";
1461
1462   _get_taxaccount_selection();
1463
1464   $form->header();
1465
1466   my $parameters_ref = {
1467 #    ChartTypeIsAccount         => $ChartTypeIsAccount,
1468   };
1469
1470   # Ausgabe des Templates
1471   print($form->parse_html_template('am/edit_tax', $parameters_ref));
1472
1473   $main::lxdebug->leave_sub();
1474 }
1475
1476 sub edit_tax {
1477   $main::lxdebug->enter_sub();
1478
1479   my $form     = $main::form;
1480   my %myconfig = %main::myconfig;
1481   my $locale   = $main::locale;
1482
1483   $main::auth->assert('config');
1484
1485   $form->{title} =  $locale->text('Edit');
1486
1487   AM->get_tax(\%myconfig, \%$form);
1488   _get_taxaccount_selection();
1489
1490   $form->{rate} = $form->format_amount(\%myconfig, $form->{rate}, 2);
1491
1492   $form->header();
1493
1494   #set readonly if the there are entries in acc_trans with the tax
1495   my $readonly = $form->{tax_already_used} ? 'readonly' : '';
1496
1497   my $parameters_ref = {
1498     readonly => $readonly, 
1499   };
1500
1501   # Ausgabe des Templates
1502   print($form->parse_html_template('am/edit_tax', $parameters_ref));
1503
1504   $main::lxdebug->leave_sub();
1505 }
1506
1507 sub list_tax {
1508   $main::lxdebug->enter_sub();
1509
1510   my $form     = $main::form;
1511   my %myconfig = %main::myconfig;
1512   my $locale   = $main::locale;
1513
1514   $main::auth->assert('config');
1515
1516   AM->taxes(\%myconfig, \%$form);
1517
1518   map { $_->{rate} = $form->format_amount(\%myconfig, $_->{rate}, 2) } @{ $form->{TAX} };
1519
1520   $form->{callback} = build_std_url('action=list_tax');
1521
1522   $form->{title} = $locale->text('Tax-O-Matic');
1523
1524   $form->header();
1525
1526   my $parameters_ref = {
1527   };
1528
1529   # Ausgabe des Templates
1530   print($form->parse_html_template('am/list_tax', $parameters_ref));
1531
1532   $main::lxdebug->leave_sub();
1533 }
1534
1535 sub _get_taxaccount_selection{
1536   $main::lxdebug->enter_sub();
1537
1538   my $form     = $main::form;
1539   my %myconfig = %main::myconfig;
1540
1541   $main::auth->assert('config');
1542
1543   AM->get_tax_accounts(\%myconfig, \%$form);
1544
1545   map { $_->{selected} = $form->{chart_id} == $_->{id} } @{ $form->{ACCOUNTS} };
1546
1547   $main::lxdebug->leave_sub();
1548 }
1549
1550 sub save_tax {
1551   $main::lxdebug->enter_sub();
1552
1553   my $form     = $main::form;
1554   my %myconfig = %main::myconfig;
1555   my $locale   = $main::locale;
1556
1557   $main::auth->assert('config');
1558
1559   $form->error($locale->text('Taxkey  missing!')) unless length($form->{taxkey}) != 0;
1560   $form->error($locale->text('Taxdescription  missing!')) unless length($form->{taxdescription}) != 0;
1561   $form->error($locale->text('Taxrate missing!')) unless length($form->{rate}) != 0;
1562
1563   $form->{rate} = $form->parse_amount(\%myconfig, $form->{rate});
1564
1565   if ($form->{taxkey} == 0 and $form->{rate} > 0) {
1566     $form->error($locale->text('Taxkey 0 is reserved for rate 0'));
1567   }
1568
1569   if ( $form->{rate} < 0 || $form->{rate} >= 100 ) {
1570     $form->error($locale->text('Tax Percent is a number between 0 and 100'));
1571   }
1572
1573   if ( $form->{rate} <= 0.99 && $form->{rate} > 0 ) {
1574     $form->error($locale->text('Tax Percent is a number between 0 and 100'));
1575   }
1576
1577   AM->save_tax(\%myconfig, \%$form);
1578   $form->redirect($locale->text('Tax saved!'));
1579
1580   $main::lxdebug->leave_sub();
1581 }
1582
1583 sub delete_tax {
1584   $main::lxdebug->enter_sub();
1585
1586   my $form     = $main::form;
1587   my %myconfig = %main::myconfig;
1588   my $locale   = $main::locale;
1589
1590   $main::auth->assert('config');
1591
1592   AM->delete_tax(\%myconfig, \%$form);
1593   $form->redirect($locale->text('Tax deleted!'));
1594
1595   $main::lxdebug->leave_sub();
1596 }
1597
1598 sub add_price_factor {
1599   $main::lxdebug->enter_sub();
1600
1601   my $form     = $main::form;
1602   my $locale   = $main::locale;
1603
1604   $main::auth->assert('config');
1605
1606   $form->{title}      = $locale->text('Add Price Factor');
1607   $form->{callback} ||= build_std_url('action=add_price_factor');
1608   $::request->{layout}->focus('#description');
1609
1610   $form->header();
1611   print $form->parse_html_template('am/edit_price_factor');
1612
1613   $main::lxdebug->leave_sub();
1614 }
1615
1616 sub edit_price_factor {
1617   $main::lxdebug->enter_sub();
1618
1619   my $form     = $main::form;
1620   my %myconfig = %main::myconfig;
1621   my $locale   = $main::locale;
1622
1623   $main::auth->assert('config');
1624
1625   $form->{title}      = $locale->text('Edit Price Factor');
1626   $form->{callback} ||= build_std_url('action=add_price_factor');
1627   $::request->{layout}->focus('#description');
1628
1629   AM->get_price_factor(\%myconfig, $form);
1630
1631   $form->{factor} = $form->format_amount(\%myconfig, $form->{factor} * 1);
1632
1633   $form->header();
1634   print $form->parse_html_template('am/edit_price_factor');
1635
1636   $main::lxdebug->leave_sub();
1637 }
1638
1639 sub list_price_factors {
1640   $main::lxdebug->enter_sub();
1641
1642   my $form     = $main::form;
1643   my %myconfig = %main::myconfig;
1644   my $locale   = $main::locale;
1645
1646   $main::auth->assert('config');
1647
1648   AM->get_all_price_factors(\%myconfig, \%$form);
1649
1650   foreach my $current (@{ $form->{PRICE_FACTORS} }) {
1651     $current->{factor} = $form->format_amount(\%myconfig, $current->{factor} * 1);
1652   }
1653
1654   $form->{callback} = build_std_url('action=list_price_factors');
1655   $form->{title}    = $locale->text('Price Factors');
1656   $form->{url_base} = build_std_url('callback');
1657
1658   $form->header();
1659   print $form->parse_html_template('am/list_price_factors');
1660
1661   $main::lxdebug->leave_sub();
1662 }
1663
1664 sub save_price_factor {
1665   $main::lxdebug->enter_sub();
1666
1667   my $form     = $main::form;
1668   my %myconfig = %main::myconfig;
1669   my $locale   = $main::locale;
1670
1671   $main::auth->assert('config');
1672
1673   $form->isblank("description", $locale->text('Description missing!'));
1674   $form->isblank("factor", $locale->text('Factor missing!'));
1675
1676   $form->{factor} = $form->parse_amount(\%myconfig, $form->{factor});
1677
1678   AM->save_price_factor(\%myconfig, $form);
1679
1680   $form->{callback} .= '&MESSAGE=' . $form->escape($locale->text('Price factor saved!')) if ($form->{callback});
1681
1682   $form->redirect($locale->text('Price factor saved!'));
1683
1684   $main::lxdebug->leave_sub();
1685 }
1686
1687 sub delete_price_factor {
1688   $main::lxdebug->enter_sub();
1689
1690   my $form     = $main::form;
1691   my %myconfig = %main::myconfig;
1692   my $locale   = $main::locale;
1693
1694   $main::auth->assert('config');
1695
1696   AM->delete_price_factor(\%myconfig, \%$form);
1697
1698   $form->{callback} .= '&MESSAGE=' . $form->escape($locale->text('Price factor deleted!')) if ($form->{callback});
1699
1700   $form->redirect($locale->text('Price factor deleted!'));
1701
1702   $main::lxdebug->leave_sub();
1703 }
1704
1705 sub add_warehouse {
1706   $main::lxdebug->enter_sub();
1707
1708   my $form     = $main::form;
1709   my $locale   = $main::locale;
1710
1711   $main::auth->assert('config');
1712
1713   $form->{title}      = $locale->text('Add Warehouse');
1714   $form->{callback} ||= build_std_url('action=add_warehouse');
1715   $::request->{layout}->focus('#description');
1716
1717   $form->header();
1718   print $form->parse_html_template('am/edit_warehouse');
1719
1720   $main::lxdebug->leave_sub();
1721 }
1722
1723 sub edit_warehouse {
1724   $main::lxdebug->enter_sub();
1725
1726   my $form     = $main::form;
1727   my %myconfig = %main::myconfig;
1728   my $locale   = $main::locale;
1729
1730   $main::auth->assert('config');
1731
1732   AM->get_warehouse(\%myconfig, $form);
1733
1734   $form->get_lists('employees' => 'EMPLOYEES');
1735
1736   $form->{title}      = $locale->text('Edit Warehouse');
1737   $form->{callback} ||= build_std_url('action=list_warehouses');
1738   $::request->{layout}->focus('#description');
1739
1740   $form->header();
1741   print $form->parse_html_template('am/edit_warehouse');
1742
1743   $main::lxdebug->leave_sub();
1744 }
1745
1746 sub list_warehouses {
1747   $main::lxdebug->enter_sub();
1748
1749   my $form     = $main::form;
1750   my %myconfig = %main::myconfig;
1751   my $locale   = $main::locale;
1752
1753   $main::auth->assert('config');
1754
1755   AM->get_all_warehouses(\%myconfig, $form);
1756
1757   $form->{callback} = build_std_url('action=list_warehouses');
1758   $form->{title}    = $locale->text('Warehouses');
1759   $form->{url_base} = build_std_url('callback');
1760
1761   $form->header();
1762   print $form->parse_html_template('am/list_warehouses');
1763
1764   $main::lxdebug->leave_sub();
1765 }
1766
1767 sub save_warehouse {
1768   $main::lxdebug->enter_sub();
1769
1770   my $form     = $main::form;
1771   my %myconfig = %main::myconfig;
1772   my $locale   = $main::locale;
1773
1774   $main::auth->assert('config');
1775
1776   $form->isblank("description", $locale->text('Description missing!'));
1777
1778   $form->{number_of_new_bins} = $form->parse_amount(\%myconfig, $form->{number_of_new_bins});
1779
1780   AM->save_warehouse(\%myconfig, $form);
1781
1782   $form->{callback} .= '&saved_message=' . E($locale->text('Warehouse saved.')) if ($form->{callback});
1783
1784   $form->redirect($locale->text('Warehouse saved.'));
1785
1786   $main::lxdebug->leave_sub();
1787 }
1788
1789 sub delete_warehouse {
1790   $main::lxdebug->enter_sub();
1791
1792   my $form     = $main::form;
1793   my %myconfig = %main::myconfig;
1794   my $locale   = $main::locale;
1795
1796   $main::auth->assert('config');
1797
1798   if (!$form->{confirmed}) {
1799     $form->{title} = $locale->text('Confirmation');
1800
1801     $form->header();
1802     print $form->parse_html_template('am/confirm_delete_warehouse');
1803     ::end_of_request();
1804   }
1805
1806   if (AM->delete_warehouse(\%myconfig, $form)) {
1807     $form->{callback} .= '&saved_message=' . E($locale->text('Warehouse deleted.')) if ($form->{callback});
1808     $form->redirect($locale->text('Warehouse deleted.'));
1809
1810   } else {
1811     $form->error($locale->text('The warehouse could not be deleted because it has already been used.'));
1812   }
1813
1814   $main::lxdebug->leave_sub();
1815 }
1816
1817 sub save_bin {
1818   $main::lxdebug->enter_sub();
1819
1820   my $form     = $main::form;
1821   my %myconfig = %main::myconfig;
1822   my $locale   = $main::locale;
1823
1824   $main::auth->assert('config');
1825
1826   AM->save_bins(\%myconfig, $form);
1827
1828   $form->{callback} .= '&saved_message=' . E($locale->text('Bins saved.')) if ($form->{callback});
1829
1830   $form->redirect($locale->text('Bins saved.'));
1831
1832   $main::lxdebug->leave_sub();
1833 }