kivitendo/bin/mozilla/am.pl @ 38e2876f
d319704a | Moritz Bunkus | #=====================================================================
|
||
# LX-Office ERP
|
||||
# Copyright (C) 2004
|
||||
# Based on SQL-Ledger Version 2.1.9
|
||||
# Web http://www.lx-office.org
|
||||
#
|
||||
#=====================================================================
|
||||
# SQL-Ledger Accounting
|
||||
# Copyright (c) 1998-2002
|
||||
#
|
||||
# Author: Dieter Simader
|
||||
# Email: dsimader@sql-ledger.org
|
||||
# Web: http://www.sql-ledger.org
|
||||
#
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
#======================================================================
|
||||
#
|
||||
# administration
|
||||
#
|
||||
#======================================================================
|
||||
05c6840d | Moritz Bunkus | use utf8;
|
||
8c7e4493 | Moritz Bunkus | use SL::Auth;
|
||
f07df483 | Moritz Bunkus | use SL::Auth::PasswordPolicy;
|
||
d319704a | Moritz Bunkus | use SL::AM;
|
||
use SL::CA;
|
||||
use SL::Form;
|
||||
use SL::User;
|
||||
bd34eaea | Udo Spallek | use SL::USTVA;
|
||
a200453a | Moritz Bunkus | use SL::Iconv;
|
||
713a6d70 | Moritz Bunkus | use SL::TODO;
|
||
c904f865 | Moritz Bunkus | use SL::DB::Printer;
|
||
e90048c8 | Bernd Bleßmann | use SL::DB::Tax;
|
||
use SL::DB::Language;
|
||||
bd34eaea | Udo Spallek | use CGI;
|
||
d319704a | Moritz Bunkus | |||
d629acd8 | Sven Schöling | require "bin/mozilla/common.pl";
|
||
30b38098 | Moritz Bunkus | |||
031251fb | Sven Schöling | use strict;
|
||
1;
|
||||
d319704a | Moritz Bunkus | # end of main
|
||
031251fb | Sven Schöling | sub add { call_sub("add_$main::form->{type}"); }
|
||
sub delete { call_sub("delete_$main::form->{type}"); }
|
||||
sub save { call_sub("save_$main::form->{type}"); }
|
||||
sub edit { call_sub("edit_$main::form->{type}"); }
|
||||
sub continue { call_sub($main::form->{"nextsub"}); }
|
||||
sub save_as_new { call_sub("save_as_new_$main::form->{type}"); }
|
||||
b12e8d14 | Moritz Bunkus | |||
d319704a | Moritz Bunkus | sub add_account {
|
||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
d319704a | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
8c7e4493 | Moritz Bunkus | |||
d319704a | Moritz Bunkus | $form->{title} = "Add";
|
||
$form->{charttype} = "A";
|
||||
AM->get_account(\%myconfig, \%$form);
|
||||
8c7e4493 | Moritz Bunkus | $form->{callback} = "am.pl?action=list_account" unless $form->{callback};
|
||
d319704a | Moritz Bunkus | |||
&account_header;
|
||||
&form_footer;
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
d319704a | Moritz Bunkus | }
|
||
sub edit_account {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
d319704a | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
8c7e4493 | Moritz Bunkus | |||
d319704a | Moritz Bunkus | $form->{title} = "Edit";
|
||
AM->get_account(\%myconfig, \%$form);
|
||||
foreach my $item (split(/:/, $form->{link})) {
|
||||
$form->{$item} = "checked";
|
||||
}
|
||||
&account_header;
|
||||
&form_footer;
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
d319704a | Moritz Bunkus | }
|
||
sub account_header {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
d319704a | Moritz Bunkus | |||
031251fb | Sven Schöling | my $form = $main::form;
|
||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
$main::auth->assert('config');
|
||||
8c7e4493 | Moritz Bunkus | |||
bd34eaea | Udo Spallek | if ( $form->{action} eq 'edit_account') {
|
||
$form->{account_exists} = '1';
|
||||
c2def905 | Moritz Bunkus | }
|
||
d319704a | Moritz Bunkus | $form->{title} = $locale->text("$form->{title} Account");
|
||
bd34eaea | Udo Spallek | $form->{"$form->{charttype}_checked"} = "checked";
|
||
$form->{"$form->{category}_checked"} = "checked";
|
||||
$form->{select_tax} = "";
|
||||
d319704a | Moritz Bunkus | |||
bd34eaea | Udo Spallek | my @tax_report_pos = USTVA->report_variables({
|
||
c2def905 | Moritz Bunkus | myconfig => \%myconfig,
|
||
form => $form,
|
||||
type => '',
|
||||
bd34eaea | Udo Spallek | attribute => 'position',
|
||
calc => '',
|
||||
});
|
||||
d319704a | Moritz Bunkus | |||
if (@{ $form->{TAXKEY} }) {
|
||||
ab18ac36 | Udo Spallek | foreach my $item (@{ $form->{TAXKEY} }) {
|
||
$item->{rate} = $item->{rate} * 100 . '%';
|
||||
bd34eaea | Udo Spallek | }
|
||
ab18ac36 | Udo Spallek | |||
bd34eaea | Udo Spallek | # Fill in empty row for new Taxkey
|
||
031251fb | Sven Schöling | my $newtaxkey_ref = {
|
||
bd34eaea | Udo Spallek | id => '',
|
||
chart_id => '',
|
||||
accno => '',
|
||||
tax_id => '',
|
||||
taxdescription => '',
|
||||
rate => '',
|
||||
taxkey_id => '',
|
||||
pos_ustva => '',
|
||||
0f0f4263 | Niclas Zimmermann | startdate => $form->{account_exists} ? '' : DateTime->new(year => 1970, month => 1, day => 1)->to_lxoffice,
|
||
bd34eaea | Udo Spallek | };
|
||
push @{ $form->{ACCOUNT_TAXKEYS} }, $newtaxkey_ref;
|
||||
my $i = 0;
|
||||
foreach my $taxkey_used (@{ $form->{ACCOUNT_TAXKEYS} } ) {
|
||||
# Fill in a runningnumber
|
||||
$form->{ACCOUNT_TAXKEYS}[$i]{runningnumber} = $i;
|
||||
# Fill in the Taxkeys as select options
|
||||
foreach my $item (@{ $form->{TAXKEY} }) {
|
||||
if ($item->{id} == $taxkey_used->{tax_id}) {
|
||||
$form->{ACCOUNT_TAXKEYS}[$i]{selecttaxkey} .=
|
||||
qq|<option value="$item->{id}" selected="selected">|
|
||||
c2def905 | Moritz Bunkus | . sprintf("%.2d", $item->{taxkey})
|
||
bd34eaea | Udo Spallek | . qq|. $item->{taxdescription} ($item->{rate}) |
|
||
c2def905 | Moritz Bunkus | . $locale->text('Tax-o-matic Account')
|
||
770515d9 | Udo Spallek | . qq|: $item->{chart_accno}\n|;
|
||
c2def905 | Moritz Bunkus | }
|
||
bd34eaea | Udo Spallek | else {
|
||
$form->{ACCOUNT_TAXKEYS}[$i]{selecttaxkey} .=
|
||||
qq|<option value="$item->{id}">|
|
||||
c2def905 | Moritz Bunkus | . sprintf("%.2d", $item->{taxkey})
|
||
bd34eaea | Udo Spallek | . qq|. $item->{taxdescription} ($item->{rate}) |
|
||
770515d9 | Udo Spallek | . $locale->text('Tax-o-matic Account')
|
||
. qq|: $item->{chart_accno}\n|;
|
||||
bd34eaea | Udo Spallek | }
|
||
d319704a | Moritz Bunkus | |||
bd34eaea | Udo Spallek | }
|
||
c2def905 | Moritz Bunkus | |||
bd34eaea | Udo Spallek | # Fill in the USTVA Numbers as select options
|
||
foreach my $item ( '', sort({ $a cmp $b } @tax_report_pos) ) {
|
||||
if ($item eq ''){
|
||||
$form->{ACCOUNT_TAXKEYS}[$i]{select_tax} .= qq|<option value="" selected="selected">-\n|;
|
||||
c2def905 | Moritz Bunkus | }
|
||
44e1ec6f | Udo Spallek | elsif ( $item eq $taxkey_used->{pos_ustva} ) {
|
||
bd34eaea | Udo Spallek | $form->{ACCOUNT_TAXKEYS}[$i]{select_tax} .= qq|<option value="$item" selected="selected">$item\n|;
|
||
}
|
||||
else {
|
||||
$form->{ACCOUNT_TAXKEYS}[$i]{select_tax} .= qq|<option value="$item">$item\n|;
|
||||
}
|
||||
c2def905 | Moritz Bunkus | }
|
||
bd34eaea | Udo Spallek | |||
$i++;
|
||||
d319704a | Moritz Bunkus | }
|
||
}
|
||||
c2def905 | Moritz Bunkus | # Newaccount Folgekonto
|
||
08c340d2 | Sven Schöling | if (@{ $form->{NEWACCOUNT} || [] }) {
|
||
54e4131e | Moritz Bunkus | if (!$form->{new_chart_valid}) {
|
||
bd34eaea | Udo Spallek | $form->{selectnewaccount} = qq|<option value=""> |. $locale->text('None') .q|</option>|;
|
||
54e4131e | Moritz Bunkus | }
|
||
031251fb | Sven Schöling | foreach my $item (@{ $form->{NEWACCOUNT} }) {
|
||
54e4131e | Moritz Bunkus | if ($item->{id} == $form->{new_chart_id}) {
|
||
$form->{selectnewaccount} .=
|
||||
bd34eaea | Udo Spallek | qq|<option value="$item->{id}" selected>$item->{accno}--$item->{description}</option>|;
|
||
54e4131e | Moritz Bunkus | } elsif (!$form->{new_chart_valid}) {
|
||
$form->{selectnewaccount} .=
|
||||
bd34eaea | Udo Spallek | qq|<option value="$item->{id}">$item->{accno}--$item->{description}</option>|;
|
||
54e4131e | Moritz Bunkus | }
|
||
}
|
||||
}
|
||||
031251fb | Sven Schöling | my $select_eur = q|<option value=""> |. $locale->text('None') .q|</option>\n|;
|
||
my %eur = (
|
||||
05c6840d | Moritz Bunkus | 1 => "Umsatzerlöse",
|
||
2 => "sonstige Erlöse",
|
||||
d319704a | Moritz Bunkus | 3 => "Privatanteile",
|
||
05c6840d | Moritz Bunkus | 4 => "Zinserträge",
|
||
5 => "Ausserordentliche Erträge",
|
||||
d319704a | Moritz Bunkus | 6 => "Vereinnahmte Umsatzst.",
|
||
7 => "Umsatzsteuererstattungen",
|
||||
05c6840d | Moritz Bunkus | 8 => "Wareneingänge",
|
||
9 => "Löhne und Gehälter",
|
||||
d319704a | Moritz Bunkus | 10 => "Gesetzl. sozialer Aufw.",
|
||
11 => "Mieten",
|
||||
12 => "Gas, Strom, Wasser",
|
||||
13 => "Instandhaltung",
|
||||
05c6840d | Moritz Bunkus | 14 => "Steuern, Versich., Beiträge",
|
||
d319704a | Moritz Bunkus | 15 => "Kfz-Steuern",
|
||
16 => "Kfz-Versicherungen",
|
||||
cd54b10e | Geoffrey Richardson | 17 => "Sonst. Fahrzeugkosten",
|
||
d319704a | Moritz Bunkus | 18 => "Werbe- und Reisekosten",
|
||
19 => "Instandhaltung u. Werkzeuge",
|
||||
05c6840d | Moritz Bunkus | 20 => "Fachzeitschriften, Bücher",
|
||
21 => "Miete für Einrichtungen",
|
||||
d319704a | Moritz Bunkus | 22 => "Rechts- und Beratungskosten",
|
||
05c6840d | Moritz Bunkus | 23 => "Bürobedarf, Porto, Telefon",
|
||
d319704a | Moritz Bunkus | 24 => "Sonstige Aufwendungen",
|
||
25 => "Abschreibungen auf Anlagever.",
|
||||
26 => "Abschreibungen auf GWG",
|
||||
27 => "Vorsteuer",
|
||||
28 => "Umsatzsteuerzahlungen",
|
||||
29 => "Zinsaufwand",
|
||||
30 => "Ausserordentlicher Aufwand",
|
||||
31 => "Betriebliche Steuern");
|
||||
031251fb | Sven Schöling | foreach my $item (sort({ $a <=> $b } keys(%eur))) {
|
||
05c6840d | Moritz Bunkus | my $text = H($::locale->{iconv_utf8}->convert($eur{$item}));
|
||
d319704a | Moritz Bunkus | if ($item == $form->{pos_eur}) {
|
||
a200453a | Moritz Bunkus | $select_eur .= qq|<option value=$item selected>|. sprintf("%.2d", $item) .qq|. $text</option>\n|;
|
||
d319704a | Moritz Bunkus | } else {
|
||
a200453a | Moritz Bunkus | $select_eur .= qq|<option value=$item>|. sprintf("%.2d", $item) .qq|. $text</option>\n|;
|
||
d319704a | Moritz Bunkus | }
|
||
}
|
||||
031251fb | Sven Schöling | my $select_bwa = q|<option value=""> |. $locale->text('None') .q|</option>\n|;
|
||
d319704a | Moritz Bunkus | |||
031251fb | Sven Schöling | my %bwapos = (
|
||
05c6840d | Moritz Bunkus | 1 => 'Umsatzerlöse',
|
||
d319704a | Moritz Bunkus | 2 => 'Best.Verdg.FE/UE',
|
||
3 => 'Aktiv.Eigenleistung',
|
||||
4 => 'Mat./Wareneinkauf',
|
||||
05c6840d | Moritz Bunkus | 5 => 'So.betr.Erlöse',
|
||
d319704a | Moritz Bunkus | 10 => 'Personalkosten',
|
||
11 => 'Raumkosten',
|
||||
12 => 'Betriebl.Steuern',
|
||||
05c6840d | Moritz Bunkus | 13 => 'Vers./Beiträge',
|
||
d319704a | Moritz Bunkus | 14 => 'Kfz.Kosten o.St.',
|
||
15 => 'Werbe-Reisek.',
|
||||
16 => 'Kosten Warenabgabe',
|
||||
17 => 'Abschreibungen',
|
||||
18 => 'Rep./instandhlt.',
|
||||
05c6840d | Moritz Bunkus | 19 => 'Übrige Steuern',
|
||
d319704a | Moritz Bunkus | 20 => 'Sonst.Kosten',
|
||
30 => 'Zinsauwand',
|
||||
31 => 'Sonst.neutr.Aufw.',
|
||||
05c6840d | Moritz Bunkus | 32 => 'Zinserträge',
|
||
d319704a | Moritz Bunkus | 33 => 'Sonst.neutr.Ertrag',
|
||
34 => 'Verr.kalk.Kosten',
|
||||
35 => 'Steuern Eink.u.Ertr.');
|
||||
031251fb | Sven Schöling | foreach my $item (sort({ $a <=> $b } keys %bwapos)) {
|
||
05c6840d | Moritz Bunkus | my $text = H($::locale->{iconv_utf8}->convert($bwapos{$item}));
|
||
d319704a | Moritz Bunkus | if ($item == $form->{pos_bwa}) {
|
||
a200453a | Moritz Bunkus | $select_bwa .= qq|<option value="$item" selected>|. sprintf("%.2d", $item) .qq|. $text\n|;
|
||
d319704a | Moritz Bunkus | } else {
|
||
a200453a | Moritz Bunkus | $select_bwa .= qq|<option value="$item">|. sprintf("%.2d", $item) .qq|. $text\n|;
|
||
d319704a | Moritz Bunkus | }
|
||
}
|
||||
05c6840d | Moritz Bunkus | # Wieder hinzugefügt zu evaluationszwecken (us) 09.03.2007
|
||
031251fb | Sven Schöling | my $select_bilanz = q|<option value=""> |. $locale->text('None') .q|</option>\n|;
|
||
foreach my $item ((1, 2, 3, 4)) {
|
||||
bd34eaea | Udo Spallek | if ($item == $form->{pos_bilanz}) {
|
||
$select_bilanz .= qq|<option value=$item selected>|. sprintf("%.2d", $item) .qq|.\n|;
|
||||
} else {
|
||||
$select_bilanz .= qq|<option value=$item>|. sprintf("%.2d", $item) .qq|.\n|;
|
||||
}
|
||||
}
|
||||
# this is for our parser only! Do not remove.
|
||||
d319704a | Moritz Bunkus | # type=submit $locale->text('Add Account')
|
||
# type=submit $locale->text('Edit Account')
|
||||
c2def905 | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | $form->{type} = "account";
|
||
d319704a | Moritz Bunkus | |||
bd34eaea | Udo Spallek | # preselections category
|
||
c2def905 | Moritz Bunkus | |||
031251fb | Sven Schöling | my $select_category = q|<option value=""> |. $locale->text('None') .q|</option>\n|;
|
||
bd34eaea | Udo Spallek | |||
031251fb | Sven Schöling | my %category = (
|
||
bd34eaea | Udo Spallek | 'A' => $locale->text('Asset'),
|
||
'L' => $locale->text('Liability'),
|
||||
'Q' => $locale->text('Equity'),
|
||||
c2def905 | Moritz Bunkus | 'I' => $locale->text('Revenue'),
|
||
bd34eaea | Udo Spallek | 'E' => $locale->text('Expense'),
|
||
'C' => $locale->text('Costs'),
|
||||
);
|
||||
031251fb | Sven Schöling | foreach my $item ( sort({ $a <=> $b } keys %category) ) {
|
||
bd34eaea | Udo Spallek | if ($item eq $form->{category}) {
|
||
$select_category .= qq|<option value="$item" selected="selected">$category{$item} (|. sprintf("%s", $item) .qq|)\n|;
|
||||
} else {
|
||||
$select_category .= qq|<option value="$item">$category{$item} (|. sprintf("%s", $item) .qq|)\n|;
|
||||
}
|
||||
d319704a | Moritz Bunkus | |||
bd34eaea | Udo Spallek | }
|
||
c2def905 | Moritz Bunkus | |||
bd34eaea | Udo Spallek | # preselection chart type
|
||
540030ff | Bernd Bleßmann | my @all_charttypes = ({'name' => $locale->text('Account'), 'value' => 'A'},
|
||
{'name' => $locale->text('Heading'), 'value' => 'H'},
|
||||
);
|
||||
my $selected_charttype = $form->{charttype};
|
||||
bd34eaea | Udo Spallek | |||
d319704a | Moritz Bunkus | |||
dab2f724 | Bernd Bleßmann | # account where AR_tax or AP_tax is set are not orphaned if they are used as
|
||
# tax-o-matic account
|
||||
9e746504 | Bernd Bleßmann | if ( $form->{id} && $form->{orphaned} && ($form->{link} =~ m/(AP_tax|AR_tax)/) ) {
|
||
dab2f724 | Bernd Bleßmann | if (SL::DB::Manager::Tax->find_by(chart_id => $form->{id})) {
|
||
$form->{orphaned} = 0;
|
||||
}
|
||||
}
|
||||
bd34eaea | Udo Spallek | my $ChartTypeIsAccount = ($form->{charttype} eq "A") ? "1":"";
|
||
ee23f6e0 | Bernd Bleßmann | my $AccountIsPosted = ($form->{orphaned} ) ? "":"1";
|
||
c2def905 | Moritz Bunkus | |||
bd34eaea | Udo Spallek | $form->header();
|
||
c2def905 | Moritz Bunkus | |||
bd34eaea | Udo Spallek | my $parameters_ref = {
|
||
ChartTypeIsAccount => $ChartTypeIsAccount,
|
||||
ee23f6e0 | Bernd Bleßmann | AccountIsPosted => $AccountIsPosted,
|
||
bd34eaea | Udo Spallek | select_category => $select_category,
|
||
540030ff | Bernd Bleßmann | all_charttypes => \@all_charttypes,
|
||
selected_charttype => $selected_charttype,
|
||||
bd34eaea | Udo Spallek | select_bwa => $select_bwa,
|
||
select_bilanz => $select_bilanz,
|
||||
select_eur => $select_eur,
|
||||
};
|
||||
c2def905 | Moritz Bunkus | |||
bd34eaea | Udo Spallek | # Ausgabe des Templates
|
||
9aaca433 | Moritz Bunkus | print($form->parse_html_template('am/edit_accounts', $parameters_ref));
|
||
bd34eaea | Udo Spallek | |||
d319704a | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
d319704a | Moritz Bunkus | }
|
||
sub form_footer {
|
||||
2f833a26 | Sven Schöling | $::lxdebug->enter_sub;
|
||
$::auth->assert('config');
|
||||
print $::form->parse_html_template('am/form_footer', {
|
||||
show_save => !$::form->{id}
|
||||
|| ($::form->{id} && $::form->{orphaned})
|
||||
|| ($::form->{type} eq "account" && !$::form->{new_chart_valid}),
|
||||
show_delete => $::form->{id} && $::form->{orphaned},
|
||||
show_save_as_new => $::form->{id} && $::form->{type} eq "account",
|
||||
});
|
||||
d319704a | Moritz Bunkus | |||
2f833a26 | Sven Schöling | $::lxdebug->leave_sub;
|
||
d319704a | Moritz Bunkus | }
|
||
sub save_account {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
d319704a | Moritz Bunkus | |||
031251fb | Sven Schöling | my $form = $main::form;
|
||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
$main::auth->assert('config');
|
||||
8c7e4493 | Moritz Bunkus | |||
bd34eaea | Udo Spallek | $form->isblank("accno", $locale->text('Account Number missing!'));
|
||
$form->isblank("description", $locale->text('Account Description missing!'));
|
||||
c2def905 | Moritz Bunkus | |||
bd34eaea | Udo Spallek | if ($form->{charttype} eq 'A'){
|
||
$form->isblank("category", $locale->text('Account Type missing!'));
|
||||
8b8d4848 | Niclas Zimmermann | |||
my $found_valid_taxkey = 0;
|
||||
foreach my $i (0 .. 10) { # 10 is maximum count of taxkeys in form
|
||||
if ($form->{"taxkey_startdate_$i"} and !$form->{"taxkey_del_$i"}) {
|
||||
$found_valid_taxkey = 1;
|
||||
last;
|
||||
}
|
||||
}
|
||||
if ($found_valid_taxkey == 0) {
|
||||
$form->error($locale->text('A valid taxkey is missing!'));
|
||||
}
|
||||
bd34eaea | Udo Spallek | }
|
||
d319704a | Moritz Bunkus | |||
$form->redirect($locale->text('Account saved!'))
|
||||
if (AM->save_account(\%myconfig, \%$form));
|
||||
$form->error($locale->text('Cannot save account!'));
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
d319704a | Moritz Bunkus | }
|
||
42ed89f3 | Philip Reetz | sub save_as_new_account {
|
||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
42ed89f3 | Philip Reetz | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
42ed89f3 | Philip Reetz | |||
$form->isblank("accno", $locale->text('Account Number missing!'));
|
||||
$form->isblank("description", $locale->text('Account Description missing!'));
|
||||
c2def905 | Moritz Bunkus | |||
42ed89f3 | Philip Reetz | if ($form->{charttype} eq 'A'){
|
||
$form->isblank("category", $locale->text('Account Type missing!'));
|
||||
}
|
||||
for my $taxkey (0 .. 9) {
|
||||
if ($form->{"taxkey_id_$taxkey"}) {
|
||||
$form->{"taxkey_id_$taxkey"} = "NEW";
|
||||
}
|
||||
}
|
||||
$form->{id} = 0;
|
||||
$form->redirect($locale->text('Account saved!'))
|
||||
if (AM->save_account(\%myconfig, \%$form));
|
||||
$form->error($locale->text('Cannot save account!'));
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
42ed89f3 | Philip Reetz | }
|
||
d319704a | Moritz Bunkus | sub list_account {
|
||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
d319704a | Moritz Bunkus | |||
031251fb | Sven Schöling | my $form = $main::form;
|
||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
$main::auth->assert('config');
|
||||
8c7e4493 | Moritz Bunkus | |||
b9882bee | Moritz Bunkus | $form->{callback} = build_std_url('action=list_account');
|
||
my $link_edit_account = build_std_url('action=edit_account', 'callback');
|
||||
bd34eaea | Udo Spallek | |||
b9882bee | Moritz Bunkus | CA->all_accounts(\%myconfig, \%$form);
|
||
bd34eaea | Udo Spallek | |||
031251fb | Sven Schöling | foreach my $ca (@{ $form->{CA} }) {
|
||
bd34eaea | Udo Spallek | |||
c7f9da81 | Moritz Bunkus | $ca->{debit} = "";
|
||
$ca->{credit} = "";
|
||||
bd34eaea | Udo Spallek | |||
if ($ca->{amount} > 0) {
|
||||
c7f9da81 | Moritz Bunkus | $ca->{credit} = $form->format_amount(\%myconfig, $ca->{amount}, 2);
|
||
bd34eaea | Udo Spallek | }
|
||
if ($ca->{amount} < 0) {
|
||||
c7f9da81 | Moritz Bunkus | $ca->{debit} = $form->format_amount(\%myconfig, -1 * $ca->{amount}, 2);
|
||
bd34eaea | Udo Spallek | }
|
||
c2def905 | Moritz Bunkus | $ca->{heading} = ( $ca->{charttype} eq 'H' ) ? 1:'';
|
||
b9882bee | Moritz Bunkus | $ca->{link_edit_account} = $link_edit_account . '&id=' . E($ca->{id});
|
||
bd34eaea | Udo Spallek | }
|
||
c2def905 | Moritz Bunkus | |||
0f179c9a | Sven Schöling | $::request->{layout}->use_stylesheet("list_accounts.css");
|
||
b9882bee | Moritz Bunkus | $form->{title} = $locale->text('Chart of Accounts');
|
||
c7f9da81 | Moritz Bunkus | |||
bd34eaea | Udo Spallek | $form->header;
|
||
c2def905 | Moritz Bunkus | |||
bd34eaea | Udo Spallek | my $parameters_ref = {
|
||
# hidden_variables => $_hidden_variables_ref,
|
||||
};
|
||||
c2def905 | Moritz Bunkus | |||
bd34eaea | Udo Spallek | # Ausgabe des Templates
|
||
9aaca433 | Moritz Bunkus | print($form->parse_html_template('am/list_accounts', $parameters_ref));
|
||
c2def905 | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
bd34eaea | Udo Spallek | |||
}
|
||||
sub list_account_details {
|
||||
b9882bee | Moritz Bunkus | # Ajax Funktion aus list_account_details
|
||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
bd34eaea | Udo Spallek | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
8c7e4493 | Moritz Bunkus | |||
bd34eaea | Udo Spallek | my $chart_id = $form->{args};
|
||
b9882bee | Moritz Bunkus | CA->all_accounts(\%myconfig, \%$form, $chart_id);
|
||
d319704a | Moritz Bunkus | |||
031251fb | Sven Schöling | foreach my $ca (@{ $form->{CA} }) {
|
||
d319704a | Moritz Bunkus | |||
$ca->{debit} = " ";
|
||||
$ca->{credit} = " ";
|
||||
if ($ca->{amount} > 0) {
|
||||
$ca->{credit} =
|
||||
$form->format_amount(\%myconfig, $ca->{amount}, 2, " ");
|
||||
}
|
||||
if ($ca->{amount} < 0) {
|
||||
$ca->{debit} =
|
||||
bd34eaea | Udo Spallek | $form->format_amount(\%myconfig, -1 * $ca->{amount}, 2, " ");
|
||
d319704a | Moritz Bunkus | }
|
||
56041df3 | Udo Spallek | my @links = split( q{:}, $ca->{link});
|
||
b9882bee | Moritz Bunkus | |||
56041df3 | Udo Spallek | $ca->{link} = q{};
|
||
b9882bee | Moritz Bunkus | |||
56041df3 | Udo Spallek | foreach my $link (@links){
|
||
b9882bee | Moritz Bunkus | $link = ( $link eq 'AR') ? $locale->text('Account Link AR')
|
||
56041df3 | Udo Spallek | : ( $link eq 'AP') ? $locale->text('Account Link AP')
|
||
: ( $link eq 'IC') ? $locale->text('Account Link IC')
|
||||
: ( $link eq 'AR_amount' ) ? $locale->text('Account Link AR_amount')
|
||||
: ( $link eq 'AR_paid' ) ? $locale->text('Account Link AR_paid')
|
||||
: ( $link eq 'AR_tax' ) ? $locale->text('Account Link AR_tax')
|
||||
: ( $link eq 'AP_amount' ) ? $locale->text('Account Link AP_amount')
|
||||
: ( $link eq 'AP_paid' ) ? $locale->text('Account Link AP_paid')
|
||||
: ( $link eq 'AP_tax' ) ? $locale->text('Account Link AP_tax')
|
||||
: ( $link eq 'IC_sale' ) ? $locale->text('Account Link IC_sale')
|
||||
: ( $link eq 'IC_cogs' ) ? $locale->text('Account Link IC_cogs')
|
||||
: ( $link eq 'IC_taxpart' ) ? $locale->text('Account Link IC_taxpart')
|
||||
: ( $link eq 'IC_income' ) ? $locale->text('Account Link IC_income')
|
||||
: ( $link eq 'IC_expense' ) ? $locale->text('Account Link IC_expense')
|
||||
: ( $link eq 'IC_taxservice' ) ? $locale->text('Account Link IC_taxservice')
|
||||
: $locale->text('Unknown Link') . ': ' . $link;
|
||||
bd34eaea | Udo Spallek | $ca->{link} .= ($link ne '') ? "[$link] ":'';
|
||
d319704a | Moritz Bunkus | }
|
||
56041df3 | Udo Spallek | |||
$ca->{category} = ($ca->{category} eq 'A') ? $locale->text('Account Category A')
|
||||
: ($ca->{category} eq 'E') ? $locale->text('Account Category E')
|
||||
: ($ca->{category} eq 'L') ? $locale->text('Account Category L')
|
||||
: ($ca->{category} eq 'I') ? $locale->text('Account Category I')
|
||||
: ($ca->{category} eq 'Q') ? $locale->text('Account Category Q')
|
||||
: ($ca->{category} eq 'C') ? $locale->text('Account Category C')
|
||||
: ($ca->{category} eq 'G') ? $locale->text('Account Category G')
|
||||
: $locale->text('Unknown Category') . ': ' . $ca->{category};
|
||||
d319704a | Moritz Bunkus | }
|
||
bd34eaea | Udo Spallek | |||
b9882bee | Moritz Bunkus | $form->{title} = $locale->text('Chart of Accounts');
|
||
bd34eaea | Udo Spallek | |||
a871ab4c | Sven Schöling | print $form->ajax_response_header, $form->parse_html_template('am/list_account_details');
|
||
bd34eaea | Udo Spallek | |||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
56041df3 | Udo Spallek | |||
d319704a | Moritz Bunkus | }
|
||
sub delete_account {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
d319704a | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
8c7e4493 | Moritz Bunkus | |||
d319704a | Moritz Bunkus | $form->{title} = $locale->text('Delete Account');
|
||
031251fb | Sven Schöling | foreach my $id (
|
||
d319704a | Moritz Bunkus | qw(inventory_accno_id income_accno_id expense_accno_id fxgain_accno_id fxloss_accno_id)
|
||
) {
|
||||
if ($form->{id} == $form->{$id}) {
|
||||
$form->error($locale->text('Cannot delete default account!'));
|
||||
}
|
||||
}
|
||||
$form->redirect($locale->text('Account deleted!'))
|
||||
if (AM->delete_account(\%myconfig, \%$form));
|
||||
$form->error($locale->text('Cannot delete account!'));
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
d319704a | Moritz Bunkus | }
|
||
baf92f53 | Holger Lindemann | sub add_lead {
|
||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
baf92f53 | Holger Lindemann | |||
031251fb | Sven Schöling | my $form = $main::form;
|
||
$main::auth->assert('config');
|
||||
8c7e4493 | Moritz Bunkus | |||
baf92f53 | Holger Lindemann | $form->{title} = "Add";
|
||
8c7e4493 | Moritz Bunkus | $form->{callback} = "am.pl?action=add_lead" unless $form->{callback};
|
||
baf92f53 | Holger Lindemann | |||
&lead_header;
|
||||
&form_footer;
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
baf92f53 | Holger Lindemann | }
|
||
sub edit_lead {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
baf92f53 | Holger Lindemann | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
8c7e4493 | Moritz Bunkus | |||
baf92f53 | Holger Lindemann | $form->{title} = "Edit";
|
||
AM->get_lead(\%myconfig, \%$form);
|
||||
&lead_header;
|
||||
$form->{orphaned} = 1;
|
||||
&form_footer;
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
baf92f53 | Holger Lindemann | }
|
||
sub list_lead {
|
||||
fb6468fc | Sven Schöling | $::lxdebug->enter_sub;
|
||
$::auth->assert('config');
|
||||
baf92f53 | Holger Lindemann | |||
fb6468fc | Sven Schöling | AM->lead(\%::myconfig, $::form);
|
||
baf92f53 | Holger Lindemann | |||
fb6468fc | Sven Schöling | $::form->{callback} = "am.pl?action=list_lead";
|
||
$::form->{title} = $::locale->text('Lead');
|
||||
baf92f53 | Holger Lindemann | |||
fb6468fc | Sven Schöling | $::form->header;
|
||
print $::form->parse_html_template('am/lead_list');
|
||||
baf92f53 | Holger Lindemann | |||
fb6468fc | Sven Schöling | $::lxdebug->leave_sub;
|
||
baf92f53 | Holger Lindemann | }
|
||
sub lead_header {
|
||||
99e420aa | Sven Schöling | $::lxdebug->enter_sub;
|
||
$::auth->assert('config');
|
||||
baf92f53 | Holger Lindemann | |||
# $locale->text('Add Lead')
|
||||
# $locale->text('Edit Lead')
|
||||
99e420aa | Sven Schöling | $::form->{title} = $::locale->text("$::form->{title} Lead");
|
||
baf92f53 | Holger Lindemann | |||
99e420aa | Sven Schöling | $::form->header;
|
||
print $::form->parse_html_template('am/lead_header');
|
||||
baf92f53 | Holger Lindemann | |||
99e420aa | Sven Schöling | $::lxdebug->leave_sub;
|
||
baf92f53 | Holger Lindemann | }
|
||
sub save_lead {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
baf92f53 | Holger Lindemann | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
8c7e4493 | Moritz Bunkus | |||
baf92f53 | Holger Lindemann | $form->isblank("description", $locale->text('Description missing!'));
|
||
AM->save_lead(\%myconfig, \%$form);
|
||||
$form->redirect($locale->text('lead saved!'));
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
baf92f53 | Holger Lindemann | }
|
||
sub delete_lead {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
baf92f53 | Holger Lindemann | |||
031251fb | Sven Schöling | my $form = $main::form;
|
||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
$main::auth->assert('config');
|
||||
8c7e4493 | Moritz Bunkus | |||
baf92f53 | Holger Lindemann | AM->delete_lead(\%myconfig, \%$form);
|
||
$form->redirect($locale->text('lead deleted!'));
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
baf92f53 | Holger Lindemann | }
|
||
54e4131e | Moritz Bunkus | sub add_language {
|
||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
d319704a | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
8c7e4493 | Moritz Bunkus | |||
d319704a | Moritz Bunkus | $form->{title} = "Add";
|
||
8c7e4493 | Moritz Bunkus | $form->{callback} = "am.pl?action=add_language" unless $form->{callback};
|
||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | &language_header;
|
||
d319704a | Moritz Bunkus | &form_footer;
|
||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
d319704a | Moritz Bunkus | }
|
||
54e4131e | Moritz Bunkus | sub edit_language {
|
||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
d319704a | Moritz Bunkus | |||
031251fb | Sven Schöling | my $form = $main::form;
|
||
my %myconfig = %main::myconfig;
|
||||
$main::auth->assert('config');
|
||||
8c7e4493 | Moritz Bunkus | |||
d319704a | Moritz Bunkus | $form->{title} = "Edit";
|
||
54e4131e | Moritz Bunkus | AM->get_language(\%myconfig, \%$form);
|
||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | &language_header;
|
||
d319704a | Moritz Bunkus | |||
$form->{orphaned} = 1;
|
||||
&form_footer;
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
d319704a | Moritz Bunkus | }
|
||
54e4131e | Moritz Bunkus | sub list_language {
|
||
e16e1f36 | Sven Schöling | $::lxdebug->enter_sub;
|
||
$::auth->assert('config');
|
||||
8c7e4493 | Moritz Bunkus | |||
a52aa2f2 | Sven Schöling | AM->language(\%::myconfig, $::form);
|
||
d319704a | Moritz Bunkus | |||
e16e1f36 | Sven Schöling | $::form->{callback} = "am.pl?action=list_language";
|
||
$::form->{title} = $::locale->text('Languages');
|
||||
d319704a | Moritz Bunkus | |||
e16e1f36 | Sven Schöling | $::form->header;
|
||
d319704a | Moritz Bunkus | |||
e16e1f36 | Sven Schöling | print $::form->parse_html_template('am/language_list');
|
||
d319704a | Moritz Bunkus | |||
e16e1f36 | Sven Schöling | $::lxdebug->leave_sub;
|
||
d319704a | Moritz Bunkus | }
|
||
54e4131e | Moritz Bunkus | sub language_header {
|
||
a52aa2f2 | Sven Schöling | $::lxdebug->enter_sub;
|
||
$::auth->assert('config');
|
||||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | # $locale->text('Add Language')
|
||
# $locale->text('Edit Language')
|
||||
a52aa2f2 | Sven Schöling | $::form->{title} = $::locale->text("$::form->{title} Language");
|
||
d319704a | Moritz Bunkus | |||
a52aa2f2 | Sven Schöling | $::form->header;
|
||
d319704a | Moritz Bunkus | |||
a52aa2f2 | Sven Schöling | print $::form->parse_html_template('am/language_header', {
|
||
numberformats => [ '1,000.00', '1000.00', '1.000,00', '1000,00' ],
|
||||
0f13c96b | Thomas Heck | dateformats => [ qw(mm/dd/yy dd/mm/yy dd.mm.yy yyyy-mm-dd) ],
|
||
a52aa2f2 | Sven Schöling | });
|
||
d319704a | Moritz Bunkus | |||
a52aa2f2 | Sven Schöling | $::lxdebug->leave_sub;
|
||
d319704a | Moritz Bunkus | }
|
||
54e4131e | Moritz Bunkus | sub save_language {
|
||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
d319704a | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
8c7e4493 | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | $form->isblank("description", $locale->text('Language missing!'));
|
||
$form->isblank("template_code", $locale->text('Template Code missing!'));
|
||||
$form->isblank("article_code", $locale->text('Article Code missing!'));
|
||||
AM->save_language(\%myconfig, \%$form);
|
||||
$form->redirect($locale->text('Language saved!'));
|
||||
d319704a | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
d319704a | Moritz Bunkus | }
|
||
54e4131e | Moritz Bunkus | sub delete_language {
|
||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
d319704a | Moritz Bunkus | |||
031251fb | Sven Schöling | my $form = $main::form;
|
||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
$main::auth->assert('config');
|
||||
8c7e4493 | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | AM->delete_language(\%myconfig, \%$form);
|
||
$form->redirect($locale->text('Language deleted!'));
|
||||
d319704a | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
d319704a | Moritz Bunkus | }
|
||
a7cb4783 | Moritz Bunkus | sub _build_cfg_options {
|
||
031251fb | Sven Schöling | my $form = $main::form;
|
||
my %myconfig = %main::myconfig;
|
||||
a7cb4783 | Moritz Bunkus | my $idx = shift;
|
||
my $array = uc($idx) . 'S';
|
||||
$form->{$array} = [];
|
||||
foreach my $item (@_) {
|
||||
push @{ $form->{$array} }, {
|
||||
'name' => $item,
|
||||
'value' => $item,
|
||||
'selected' => $item eq $myconfig{$idx},
|
||||
};
|
||||
}
|
||||
}
|
||||
54e4131e | Moritz Bunkus | sub config {
|
||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
54e4131e | Moritz Bunkus | |||
0f13c96b | Thomas Heck | _build_cfg_options('dateformat', qw(mm/dd/yy dd/mm/yy dd.mm.yy yyyy-mm-dd));
|
||
2fcb9a09 | Thomas Heck | _build_cfg_options('timeformat', qw(hh:mm hh:mm:ss));
|
||
031251fb | Sven Schöling | _build_cfg_options('numberformat', ('1,000.00', '1000.00', '1.000,00', '1000,00'));
|
||
d319704a | Moritz Bunkus | |||
031251fb | Sven Schöling | my @formats = ();
|
||
2b339152 | Moritz Bunkus | if ($::lx_office_conf{print_templates}->{opendocument}
|
||
f2af9def | Moritz Bunkus | && $::lx_office_conf{applications}->{openofficeorg_writer} && (-x $::lx_office_conf{applications}->{openofficeorg_writer})
|
||
&& $::lx_office_conf{applications}->{xvfb} && (-x $::lx_office_conf{applications}->{xvfb})) {
|
||||
a7403105 | Moritz Bunkus | push(@formats, { "name" => $locale->text("PDF (OpenDocument/OASIS)"),
|
||
"value" => "opendocument_pdf" });
|
||||
}
|
||||
2b339152 | Moritz Bunkus | if ($::lx_office_conf{print_templates}->{latex}) {
|
||
a7403105 | Moritz Bunkus | push(@formats, { "name" => $locale->text("PDF"), "value" => "pdf" });
|
||
}
|
||||
push(@formats, { "name" => "HTML", "value" => "html" });
|
||||
2b339152 | Moritz Bunkus | if ($::lx_office_conf{print_templates}->{latex}) {
|
||
a7403105 | Moritz Bunkus | push(@formats, { "name" => $locale->text("Postscript"),
|
||
"value" => "postscript" });
|
||||
}
|
||||
2b339152 | Moritz Bunkus | if ($::lx_office_conf{print_templates}->{opendocument}) {
|
||
a7403105 | Moritz Bunkus | push(@formats, { "name" => $locale->text("OpenDocument/OASIS"),
|
||
"value" => "opendocument" });
|
||||
}
|
||||
if (!$myconfig{"template_format"}) {
|
||||
$myconfig{"template_format"} = "pdf";
|
||||
}
|
||||
a7cb4783 | Moritz Bunkus | $form->{TEMPLATE_FORMATS} = [];
|
||
031251fb | Sven Schöling | foreach my $item (@formats) {
|
||
a7cb4783 | Moritz Bunkus | push @{ $form->{TEMPLATE_FORMATS} }, {
|
||
'name' => $item->{name},
|
||||
'value' => $item->{value},
|
||||
'selected' => $item->{value} eq $myconfig{template_format},
|
||||
};
|
||||
a7403105 | Moritz Bunkus | }
|
||
f16abae9 | Moritz Bunkus | if (!$myconfig{"default_media"}) {
|
||
$myconfig{"default_media"} = "screen";
|
||||
}
|
||||
a7cb4783 | Moritz Bunkus | |||
f16abae9 | Moritz Bunkus | my %selected = ($myconfig{"default_media"} => "selected");
|
||
a7cb4783 | Moritz Bunkus | $form->{MEDIA} = [
|
||
{ 'name' => $locale->text('Screen'), 'value' => 'screen', 'selected' => $selected{screen}, },
|
||||
{ 'name' => $locale->text('Printer'), 'value' => 'printer', 'selected' => $selected{printer}, },
|
||||
{ 'name' => $locale->text('Queue'), 'value' => 'queue', 'selected' => $selected{queue}, },
|
||||
];
|
||||
f16abae9 | Moritz Bunkus | |||
c904f865 | Moritz Bunkus | $form->{PRINTERS} = SL::DB::Manager::Printer->get_all_sorted;
|
||
f16abae9 | Moritz Bunkus | |||
031251fb | Sven Schöling | my %countrycodes = User->country_codes;
|
||
081a4f97 | Moritz Bunkus | |||
a7cb4783 | Moritz Bunkus | $form->{COUNTRYCODES} = [];
|
||
031251fb | Sven Schöling | foreach my $countrycode (sort { $countrycodes{$a} cmp $countrycodes{$b} } keys %countrycodes) {
|
||
a7cb4783 | Moritz Bunkus | push @{ $form->{COUNTRYCODES} }, {
|
||
'name' => $countrycodes{$countrycode},
|
||||
'value' => $countrycode,
|
||||
'selected' => $countrycode eq $myconfig{countrycode},
|
||||
};
|
||||
d319704a | Moritz Bunkus | }
|
||
a7cb4783 | Moritz Bunkus | $form->{STYLESHEETS} = [];
|
||
317601e4 | Sven Schöling | foreach my $item (qw(lx-office-erp.css kivitendo.css)) {
|
||
a7cb4783 | Moritz Bunkus | push @{ $form->{STYLESHEETS} }, {
|
||
'name' => $item,
|
||||
'value' => $item,
|
||||
'selected' => $item eq $myconfig{stylesheet},
|
||||
};
|
||||
d9cb2f12 | Moritz Bunkus | }
|
||
e848dbf1 | Stephan Köhler | |||
712e3a83 | Moritz Bunkus | $myconfig{show_form_details} = 1 unless (defined($myconfig{show_form_details}));
|
||
031251fb | Sven Schöling | $form->{CAN_CHANGE_PASSWORD} = $main::auth->can_change_password();
|
||
712e3a83 | Moritz Bunkus | $form->{todo_cfg} = { TODO->get_user_config('login' => $form->{login}) };
|
||
d319704a | Moritz Bunkus | |||
77230cde | Moritz Bunkus | $form->{title} = $locale->text('Edit Preferences for #1', $form->{login});
|
||
58fcb69f | Stephan Köhler | |||
a7cb4783 | Moritz Bunkus | $form->header();
|
||
718f7a1b | Geoffrey Richardson | |||
$form->{full_signature} = $form->create_email_signature();
|
||||
9aaca433 | Moritz Bunkus | print $form->parse_html_template('am/config');
|
||
d319704a | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
d319704a | Moritz Bunkus | }
|
||
sub save_preferences {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
d319704a | Moritz Bunkus | |||
$form->{stylesheet} = $form->{usestylesheet};
|
||||
713a6d70 | Moritz Bunkus | TODO->save_user_config('login' => $form->{login}, %{ $form->{todo_cfg} || { } });
|
||
6f398b35 | Moritz Bunkus | if (AM->save_preferences($form)) {
|
||
f07df483 | Moritz Bunkus | if ($::auth->can_change_password()
|
||
&& defined $form->{new_password}
|
||||
&& ($form->{new_password} ne '********')) {
|
||||
my $verifier = SL::Auth::PasswordPolicy->new;
|
||||
my $result = $verifier->verify($form->{new_password});
|
||||
if ($result != SL::Auth::PasswordPolicy->OK()) {
|
||||
$form->error($::locale->text('The settings were saved, but the password was not changed.') . ' ' . join(' ', $verifier->errors($result)));
|
||||
}
|
||||
$::auth->change_password($form->{login}, $form->{new_password});
|
||||
}
|
||||
$form->redirect($locale->text('Preferences saved!'));
|
||||
}
|
||||
d319704a | Moritz Bunkus | $form->error($locale->text('Cannot save preferences!'));
|
||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
d319704a | Moritz Bunkus | }
|
||
sub audit_control {
|
||||
71e82116 | Sven Schöling | $::lxdebug->enter_sub;
|
||
$::auth->assert('config');
|
||||
d319704a | Moritz Bunkus | |||
71e82116 | Sven Schöling | $::form->{title} = $::locale->text('Audit Control');
|
||
d319704a | Moritz Bunkus | |||
71e82116 | Sven Schöling | AM->closedto(\%::myconfig, $::form);
|
||
d319704a | Moritz Bunkus | |||
71e82116 | Sven Schöling | $::form->header;
|
||
print $::form->parse_html_template('am/audit_control');
|
||||
d319704a | Moritz Bunkus | |||
71e82116 | Sven Schöling | $::lxdebug->leave_sub;
|
||
d319704a | Moritz Bunkus | }
|
||
sub doclose {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
d319704a | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
8c7e4493 | Moritz Bunkus | |||
d319704a | Moritz Bunkus | AM->closebooks(\%myconfig, \%$form);
|
||
9e06d0e4 | Philip Reetz | if ($form->{closedto}) {
|
||
d319704a | Moritz Bunkus | $form->redirect(
|
||
9e06d0e4 | Philip Reetz | $locale->text('Books closed up to') . " "
|
||
. $locale->date(\%myconfig, $form->{closedto}, 1));
|
||||
d319704a | Moritz Bunkus | } else {
|
||
9e06d0e4 | Philip Reetz | $form->redirect($locale->text('Books are open'));
|
||
d319704a | Moritz Bunkus | }
|
||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
d319704a | Moritz Bunkus | }
|
||
54e4131e | Moritz Bunkus | sub edit_units {
|
||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
54e4131e | Moritz Bunkus | |||
031251fb | Sven Schöling | my $form = $main::form;
|
||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
8c7e4493 | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
my $units = AM->retrieve_units(\%myconfig, $form, "resolved_");
|
||||
54e4131e | Moritz Bunkus | AM->units_in_use(\%myconfig, $form, $units);
|
||
map({ $units->{$_}->{"BASE_UNIT_DDBOX"} = AM->unit_select_data($units, $units->{$_}->{"base_unit"}, 1); } keys(%{$units}));
|
||||
031251fb | Sven Schöling | my @languages = AM->language(\%myconfig, $form, 1);
|
||
af853490 | Moritz Bunkus | |||
031251fb | Sven Schöling | my @unit_list = sort({ $a->{"sortkey"} <=> $b->{"sortkey"} } values(%{$units}));
|
||
eaf4d483 | Moritz Bunkus | |||
af853490 | Moritz Bunkus | my $i = 1;
|
||
foreach (@unit_list) {
|
||||
94fe7579 | Moritz Bunkus | $_->{"factor"} = $form->format_amount(\%myconfig, $_->{"factor"} * 1) if ($_->{"factor"});
|
||
af853490 | Moritz Bunkus | $_->{"UNITLANGUAGES"} = [];
|
||
foreach my $lang (@languages) {
|
||||
push(@{ $_->{"UNITLANGUAGES"} },
|
||||
{ "idx" => $i,
|
||||
"unit" => $_->{"name"},
|
||||
"language_id" => $lang->{"id"},
|
||||
"localized" => $_->{"LANGUAGES"}->{$lang->{"template_code"}}->{"localized"},
|
||||
"localized_plural" => $_->{"LANGUAGES"}->{$lang->{"template_code"}}->{"localized_plural"},
|
||||
});
|
||||
}
|
||||
$i++;
|
||||
}
|
||||
54e4131e | Moritz Bunkus | |||
07948c34 | Moritz Bunkus | $units = AM->retrieve_units(\%myconfig, $form);
|
||
031251fb | Sven Schöling | my $ddbox = AM->unit_select_data($units, undef, 1);
|
||
54e4131e | Moritz Bunkus | |||
07948c34 | Moritz Bunkus | $form->{"title"} = $locale->text("Add and edit units");
|
||
54e4131e | Moritz Bunkus | $form->header();
|
||
9aaca433 | Moritz Bunkus | print($form->parse_html_template("am/edit_units",
|
||
{ "UNITS" => \@unit_list,
|
||||
"NEW_BASE_UNIT_DDBOX" => $ddbox,
|
||||
"LANGUAGES" => \@languages,
|
||||
fa515ecf | Moritz Bunkus | }));
|
||
54e4131e | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
54e4131e | Moritz Bunkus | }
|
||
sub add_unit {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
54e4131e | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
8c7e4493 | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | $form->isblank("new_name", $locale->text("The name is missing."));
|
||
031251fb | Sven Schöling | my $units = AM->retrieve_units(\%myconfig, $form);
|
||
my $all_units = AM->retrieve_units(\%myconfig, $form);
|
||||
3de3c100 | Moritz Bunkus | $form->show_generic_error($locale->text("A unit with this name does already exist.")) if ($all_units->{$form->{"new_name"}});
|
||
54e4131e | Moritz Bunkus | |||
my ($base_unit, $factor);
|
||||
if ($form->{"new_base_unit"}) {
|
||||
$form->show_generic_error($locale->text("The base unit does not exist.")) unless (defined($units->{$form->{"new_base_unit"}}));
|
||||
$form->isblank("new_factor", $locale->text("The factor is missing."));
|
||||
$factor = $form->parse_amount(\%myconfig, $form->{"new_factor"});
|
||||
$form->show_generic_error($locale->text("The factor is missing.")) unless ($factor);
|
||||
$base_unit = $form->{"new_base_unit"};
|
||||
}
|
||||
af853490 | Moritz Bunkus | my @languages;
|
||
foreach my $lang (AM->language(\%myconfig, $form, 1)) {
|
||||
next unless ($form->{"new_localized_$lang->{id}"} || $form->{"new_localized_plural_$lang->{id}"});
|
||||
push(@languages, { "id" => $lang->{"id"},
|
||||
"localized" => $form->{"new_localized_$lang->{id}"},
|
||||
"localized_plural" => $form->{"new_localized_plural_$lang->{id}"},
|
||||
});
|
||||
}
|
||||
07948c34 | Moritz Bunkus | AM->add_unit(\%myconfig, $form, $form->{"new_name"}, $base_unit, $factor, \@languages);
|
||
54e4131e | Moritz Bunkus | |||
$form->{"saved_message"} = $locale->text("The unit has been saved.");
|
||||
edit_units();
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
54e4131e | Moritz Bunkus | }
|
||
af853490 | Moritz Bunkus | sub set_unit_languages {
|
||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
af853490 | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
8c7e4493 | Moritz Bunkus | |||
af853490 | Moritz Bunkus | my ($unit, $languages, $idx) = @_;
|
||
$unit->{"LANGUAGES"} = [];
|
||||
foreach my $lang (@{$languages}) {
|
||||
push(@{ $unit->{"LANGUAGES"} },
|
||||
{ "id" => $lang->{"id"},
|
||||
"localized" => $form->{"localized_${idx}_$lang->{id}"},
|
||||
"localized_plural" => $form->{"localized_plural_${idx}_$lang->{id}"},
|
||||
});
|
||||
}
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
af853490 | Moritz Bunkus | }
|
||
54e4131e | Moritz Bunkus | sub save_unit {
|
||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
54e4131e | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
8c7e4493 | Moritz Bunkus | |||
031251fb | Sven Schöling | my $old_units = AM->retrieve_units(\%myconfig, $form, "resolved_");
|
||
54e4131e | Moritz Bunkus | AM->units_in_use(\%myconfig, $form, $old_units);
|
||
031251fb | Sven Schöling | my @languages = AM->language(\%myconfig, $form, 1);
|
||
af853490 | Moritz Bunkus | |||
031251fb | Sven Schöling | my $new_units = {};
|
||
my @delete_units = ();
|
||||
foreach my $i (1..($form->{"rowcount"} * 1)) {
|
||||
my $old_unit = $old_units->{$form->{"old_name_$i"}};
|
||||
54e4131e | Moritz Bunkus | if (!$old_unit) {
|
||
$form->show_generic_error(sprintf($locale->text("The unit in row %d has been deleted in the meantime."), $i));
|
||||
}
|
||||
if ($form->{"unchangeable_$i"}) {
|
||||
$new_units->{$form->{"old_name_$i"}} = $old_units->{$form->{"old_name_$i"}};
|
||||
$new_units->{$form->{"old_name_$i"}}->{"unchanged_unit"} = 1;
|
||||
af853490 | Moritz Bunkus | set_unit_languages($new_units->{$form->{"old_name_$i"}}, \@languages, $i);
|
||
54e4131e | Moritz Bunkus | next;
|
||
}
|
||||
if ($old_unit->{"in_use"}) {
|
||||
$form->show_generic_error(sprintf($locale->text("The unit in row %d has been used in the meantime and cannot be changed anymore."), $i));
|
||||
}
|
||||
if ($form->{"delete_$i"}) {
|
||||
push(@delete_units, $old_unit->{"name"});
|
||||
next;
|
||||
}
|
||||
$form->isblank("name_$i", sprintf($locale->text("The name is missing in row %d."), $i));
|
||||
$form->show_generic_error(sprintf($locale->text("The name in row %d has already been used before."), $i)) if ($new_units->{$form->{"name_$i"}});
|
||||
my %h = map({ $_ => $form->{"${_}_$i"} } qw(name base_unit factor old_name));
|
||||
$new_units->{$form->{"name_$i"}} = \%h;
|
||||
$new_units->{$form->{"name_$i"}}->{"row"} = $i;
|
||||
af853490 | Moritz Bunkus | set_unit_languages($new_units->{$form->{"old_name_$i"}}, \@languages, $i);
|
||
54e4131e | Moritz Bunkus | }
|
||
031251fb | Sven Schöling | foreach my $unit (values(%{$new_units})) {
|
||
54e4131e | Moritz Bunkus | next unless ($unit->{"old_name"});
|
||
if ($unit->{"base_unit"}) {
|
||||
$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"}))
|
||||
unless (defined($new_units->{$unit->{"base_unit"}}));
|
||||
$unit->{"factor"} = $form->parse_amount(\%myconfig, $unit->{"factor"});
|
||||
$form->show_generic_error(sprintf($locale->text("The factor is missing in row %d."), $unit->{"row"})) unless ($unit->{"factor"} >= 1.0);
|
||||
} else {
|
||||
$unit->{"base_unit"} = undef;
|
||||
$unit->{"factor"} = undef;
|
||||
}
|
||||
}
|
||||
031251fb | Sven Schöling | foreach my $unit (values(%{$new_units})) {
|
||
54e4131e | Moritz Bunkus | next if ($unit->{"unchanged_unit"});
|
||
map({ $_->{"seen"} = 0; } values(%{$new_units}));
|
||||
031251fb | Sven Schöling | my $new_unit = $unit;
|
||
54e4131e | Moritz Bunkus | while ($new_unit->{"base_unit"}) {
|
||
$new_unit->{"seen"} = 1;
|
||||
$new_unit = $new_units->{$new_unit->{"base_unit"}};
|
||||
if ($new_unit->{"seen"}) {
|
||||
$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, " .
|
||||
"B's base unit is C and C's base unit is A) in row %d."), $unit->{"row"}));
|
||||
}
|
||||
}
|
||||
}
|
||||
07948c34 | Moritz Bunkus | AM->save_units(\%myconfig, $form, $new_units, \@delete_units);
|
||
54e4131e | Moritz Bunkus | |||
$form->{"saved_message"} = $locale->text("The units have been saved.");
|
||||
edit_units();
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
54e4131e | Moritz Bunkus | }
|
||
eaf4d483 | Moritz Bunkus | |||
9d1e95b0 | Thomas Kasulke | sub show_history_search {
|
||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my $locale = $main::locale;
|
||||
c2def905 | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
8c7e4493 | Moritz Bunkus | |||
c2def905 | Moritz Bunkus | $form->{title} = $locale->text("History Search");
|
||
$form->header();
|
||||
print $form->parse_html_template("common/search_history");
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
9d1e95b0 | Thomas Kasulke | }
|
||
sub show_am_history {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
8c7e4493 | Moritz Bunkus | |||
031251fb | Sven Schöling | my $form = $main::form;
|
||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
$main::auth->assert('config');
|
||||
8c7e4493 | Moritz Bunkus | |||
7c128d33 | Moritz Bunkus | my $callback = build_std_url(qw(action einschraenkungen fromdate todate mitarbeiter searchid what2search));
|
||
$form->{order} ||= 'h.itime--1';
|
||||
01b4e844 | Geoffrey Richardson | # my %search = ( "Artikelnummer" => "parts",
|
||
# "Kundennummer" => "customer",
|
||||
# "Lieferantennummer" => "vendor",
|
||||
# "Projektnummer" => "project",
|
||||
# "Auftragsnummer" => "oe",
|
||||
# "Angebotsnummer" => "oe",
|
||||
# "Eingangsrechnungnummer" => "ap",
|
||||
# "Ausgangsrechnungnummer" => "ar",
|
||||
# "Mahnungsnummer" => "dunning",
|
||||
# "Buchungsnummer" => "gl",
|
||||
# );
|
||||
c2def905 | Moritz Bunkus | my %searchNo = ( "Artikelnummer" => "partnumber",
|
||
"Kundennummer" => "customernumber",
|
||||
"Lieferantennummer" => "vendornumber",
|
||||
f8b476b8 | Sven Schöling | "Projektnummer" => "projectnumber",
|
||
01b4e844 | Geoffrey Richardson | "Auftragsnummer" => "ordnumber",
|
||
"Angebotsnummer" => "quonumber",
|
||||
c2def905 | Moritz Bunkus | "Eingangsrechnungnummer" => "invnumber",
|
||
"Ausgangsrechnungnummer" => "invnumber",
|
||||
01b4e844 | Geoffrey Richardson | "Mahnungsnummer" => "dunning_id",
|
||
"Buchungsnummer" => "gltransaction"
|
||||
c2def905 | Moritz Bunkus | );
|
||
b4078ad9 | Moritz Bunkus | my $dbh = $form->dbconnect(\%myconfig);
|
||
85a85386 | Moritz Bunkus | |||
74fca575 | Sven Schöling | my $restriction;
|
||
$restriction = qq| AND (| . join(' OR ', map { " addition = " . $dbh->quote($_) } split(m/\,/, $form->{einschraenkungen})) . qq|)| if $form->{einschraenkungen};
|
||||
b4078ad9 | Moritz Bunkus | $restriction .= qq| AND h.itime::date >= | . conv_dateq($form->{fromdate}) if $form->{fromdate};
|
||
$restriction .= qq| AND h.itime::date <= | . conv_dateq($form->{todate}) if $form->{todate};
|
||||
651e8d51 | Moritz Bunkus | if ($form->{mitarbeiter} =~ m/^\d+$/) {
|
||
$restriction .= qq| AND employee_id = | . $form->{mitarbeiter};
|
||||
} elsif ($form->{mitarbeiter}) {
|
||||
$restriction .= qq| AND employee_id = (SELECT id FROM employee WHERE name ILIKE | . $dbh->quote('%' . $form->{mitarbeiter} . '%') . qq|)|;
|
||||
}
|
||||
c2def905 | Moritz Bunkus | |||
my $query = qq|SELECT trans_id AS id FROM history_erp | .
|
||||
( $form->{'searchid'} ? qq| WHERE snumbers = '| . $searchNo{$form->{'what2search'}} . qq|_| . $form->{'searchid'} . qq|'|
|
||||
: qq| WHERE snumbers ~ '^| . $searchNo{$form->{'what2search'}} . qq|'|);
|
||||
f3086ca0 | Sven Schöling | my @ids = grep { $_ * 1 } selectall_array_query($form, $dbh, $query);
|
||
c2def905 | Moritz Bunkus | my $daten .= shift @ids;
|
||
$daten .= join '', map { " OR trans_id = $_" } @ids;
|
||||
41a03969 | Thomas Kasulke | my ($sort, $sortby) = split(/\-\-/, $form->{order});
|
||
$sort =~ s/.*\.(.*)$/$1/;
|
||||
c2def905 | Moritz Bunkus | $form->{title} = $locale->text("History Search");
|
||
$form->header();
|
||||
print $form->parse_html_template("common/show_history",
|
||||
{ "DATEN" => $form->get_history($dbh, $daten, $restriction, $form->{order}),
|
||||
"SUCCESS" => ($form->get_history($dbh, $daten, $restriction, $form->{order}) ne "0"),
|
||||
"NONEWWINDOW" => 1,
|
||||
uc($sort) => 1,
|
||||
7c128d33 | Moritz Bunkus | uc($sort) . "BY" => $sortby,
|
||
'callback' => $callback,
|
||||
c2def905 | Moritz Bunkus | });
|
||
$dbh->disconnect();
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
9d1e95b0 | Thomas Kasulke | }
|
||
d38be021 | Udo Spallek | sub add_tax {
|
||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
d38be021 | Udo Spallek | |||
031251fb | Sven Schöling | my $form = $main::form;
|
||
my $locale = $main::locale;
|
||||
$main::auth->assert('config');
|
||||
8c7e4493 | Moritz Bunkus | |||
d38be021 | Udo Spallek | $form->{title} = $locale->text('Add');
|
||
8c7e4493 | Moritz Bunkus | $form->{callback} ||= "am.pl?action=add_tax";
|
||
d38be021 | Udo Spallek | |||
_get_taxaccount_selection();
|
||||
e82db1a7 | Niclas Zimmermann | $form->{asset} = 1;
|
||
$form->{liability} = 1;
|
||||
$form->{equity} = 1;
|
||||
$form->{revenue} = 1;
|
||||
$form->{expense} = 1;
|
||||
$form->{costs} = 1;
|
||||
d38be021 | Udo Spallek | $form->header();
|
||
c2def905 | Moritz Bunkus | |||
d38be021 | Udo Spallek | my $parameters_ref = {
|
||
# ChartTypeIsAccount => $ChartTypeIsAccount,
|
||||
e90048c8 | Bernd Bleßmann | LANGUAGES => SL::DB::Manager::Language->get_all_sorted,
|
||
d38be021 | Udo Spallek | };
|
||
c2def905 | Moritz Bunkus | |||
d38be021 | Udo Spallek | # Ausgabe des Templates
|
||
9aaca433 | Moritz Bunkus | print($form->parse_html_template('am/edit_tax', $parameters_ref));
|
||
d38be021 | Udo Spallek | |||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
d38be021 | Udo Spallek | }
|
||
sub edit_tax {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
d38be021 | Udo Spallek | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
8c7e4493 | Moritz Bunkus | |||
d38be021 | Udo Spallek | $form->{title} = $locale->text('Edit');
|
||
AM->get_tax(\%myconfig, \%$form);
|
||||
e82db1a7 | Niclas Zimmermann | |||
d38be021 | Udo Spallek | _get_taxaccount_selection();
|
||
e82db1a7 | Niclas Zimmermann | $form->{asset} = $form->{chart_categories} =~ 'A' ? 1 : 0;
|
||
$form->{liability} = $form->{chart_categories} =~ 'L' ? 1 : 0;
|
||||
$form->{equity} = $form->{chart_categories} =~ 'Q' ? 1 : 0;
|
||||
$form->{revenue} = $form->{chart_categories} =~ 'I' ? 1 : 0;
|
||||
$form->{expense} = $form->{chart_categories} =~ 'E' ? 1 : 0;
|
||||
$form->{costs} = $form->{chart_categories} =~ 'C' ? 1 : 0;
|
||||
a3057d3f | Moritz Bunkus | $form->{rate} = $form->format_amount(\%myconfig, $form->{rate}, 2);
|
||
d38be021 | Udo Spallek | $form->header();
|
||
c2def905 | Moritz Bunkus | |||
d38be021 | Udo Spallek | my $parameters_ref = {
|
||
e90048c8 | Bernd Bleßmann | LANGUAGES => SL::DB::Manager::Language->get_all_sorted,
|
||
TAX => SL::DB::Manager::Tax->find_by(id => $form->{id}),
|
||||
d38be021 | Udo Spallek | };
|
||
c2def905 | Moritz Bunkus | |||
d38be021 | Udo Spallek | # Ausgabe des Templates
|
||
9aaca433 | Moritz Bunkus | print($form->parse_html_template('am/edit_tax', $parameters_ref));
|
||
d38be021 | Udo Spallek | |||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
d38be021 | Udo Spallek | }
|
||
sub list_tax {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
d38be021 | Udo Spallek | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
8c7e4493 | Moritz Bunkus | |||
d38be021 | Udo Spallek | AM->taxes(\%myconfig, \%$form);
|
||
a3057d3f | Moritz Bunkus | map { $_->{rate} = $form->format_amount(\%myconfig, $_->{rate}, 2) } @{ $form->{TAX} };
|
||
$form->{callback} = build_std_url('action=list_tax');
|
||||
d38be021 | Udo Spallek | |||
$form->{title} = $locale->text('Tax-O-Matic');
|
||||
$form->header();
|
||||
c2def905 | Moritz Bunkus | |||
031251fb | Sven Schöling | my $parameters_ref = {
|
||
};
|
||||
d38be021 | Udo Spallek | # Ausgabe des Templates
|
||
9aaca433 | Moritz Bunkus | print($form->parse_html_template('am/list_tax', $parameters_ref));
|
||
d38be021 | Udo Spallek | |||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
d38be021 | Udo Spallek | }
|
||
sub _get_taxaccount_selection{
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
d38be021 | Udo Spallek | |||
031251fb | Sven Schöling | my $form = $main::form;
|
||
my %myconfig = %main::myconfig;
|
||||
$main::auth->assert('config');
|
||||
8c7e4493 | Moritz Bunkus | |||
d38be021 | Udo Spallek | AM->get_tax_accounts(\%myconfig, \%$form);
|
||
9c548b6f | Moritz Bunkus | map { $_->{selected} = $form->{chart_id} == $_->{id} } @{ $form->{ACCOUNTS} };
|
||
d38be021 | Udo Spallek | |||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
d38be021 | Udo Spallek | }
|
||
sub save_tax {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
d38be021 | Udo Spallek | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
8c7e4493 | Moritz Bunkus | |||
1672583a | Niclas Zimmermann | $form->error($locale->text('Taxkey missing!')) unless length($form->{taxkey}) != 0;
|
||
$form->error($locale->text('Taxdescription missing!')) unless length($form->{taxdescription}) != 0;
|
||||
$form->error($locale->text('Taxrate missing!')) unless length($form->{rate}) != 0;
|
||||
a3057d3f | Moritz Bunkus | |||
$form->{rate} = $form->parse_amount(\%myconfig, $form->{rate});
|
||||
1672583a | Niclas Zimmermann | if ($form->{taxkey} == 0 and $form->{rate} > 0) {
|
||
$form->error($locale->text('Taxkey 0 is reserved for rate 0'));
|
||||
}
|
||||
7e0ea1c2 | Udo Spallek | if ( $form->{rate} < 0 || $form->{rate} >= 100 ) {
|
||
d38be021 | Udo Spallek | $form->error($locale->text('Tax Percent is a number between 0 and 100'));
|
||
}
|
||||
7e0ea1c2 | Udo Spallek | if ( $form->{rate} <= 0.99 && $form->{rate} > 0 ) {
|
||
d38be021 | Udo Spallek | $form->error($locale->text('Tax Percent is a number between 0 and 100'));
|
||
c2def905 | Moritz Bunkus | }
|
||
d38be021 | Udo Spallek | |||
e90048c8 | Bernd Bleßmann | my @translation_keys = grep { $_ =~ '^translation_\d+' } keys %$form;
|
||
$form->{translations} = { map { $_ =~ '^translation_(\d+)'; $1 => $form->{$_} } @translation_keys };
|
||||
d38be021 | Udo Spallek | AM->save_tax(\%myconfig, \%$form);
|
||
$form->redirect($locale->text('Tax saved!'));
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
d38be021 | Udo Spallek | }
|
||
sub delete_tax {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
d38be021 | Udo Spallek | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
8c7e4493 | Moritz Bunkus | |||
d38be021 | Udo Spallek | AM->delete_tax(\%myconfig, \%$form);
|
||
$form->redirect($locale->text('Tax deleted!'));
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
d38be021 | Udo Spallek | }
|
||
1e251313 | Moritz Bunkus | |||
sub add_price_factor {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
1e251313 | Moritz Bunkus | |||
031251fb | Sven Schöling | my $form = $main::form;
|
||
my $locale = $main::locale;
|
||||
$main::auth->assert('config');
|
||||
8c7e4493 | Moritz Bunkus | |||
1e251313 | Moritz Bunkus | $form->{title} = $locale->text('Add Price Factor');
|
||
$form->{callback} ||= build_std_url('action=add_price_factor');
|
||||
$form->header();
|
||||
9aaca433 | Moritz Bunkus | print $form->parse_html_template('am/edit_price_factor');
|
||
1e251313 | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
1e251313 | Moritz Bunkus | }
|
||
sub edit_price_factor {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
1e251313 | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
8c7e4493 | Moritz Bunkus | |||
1e251313 | Moritz Bunkus | $form->{title} = $locale->text('Edit Price Factor');
|
||
$form->{callback} ||= build_std_url('action=add_price_factor');
|
||||
AM->get_price_factor(\%myconfig, $form);
|
||||
$form->{factor} = $form->format_amount(\%myconfig, $form->{factor} * 1);
|
||||
$form->header();
|
||||
9aaca433 | Moritz Bunkus | print $form->parse_html_template('am/edit_price_factor');
|
||
1e251313 | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
1e251313 | Moritz Bunkus | }
|
||
sub list_price_factors {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
1e251313 | Moritz Bunkus | |||
031251fb | Sven Schöling | my $form = $main::form;
|
||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
$main::auth->assert('config');
|
||||
8c7e4493 | Moritz Bunkus | |||
1e251313 | Moritz Bunkus | AM->get_all_price_factors(\%myconfig, \%$form);
|
||
foreach my $current (@{ $form->{PRICE_FACTORS} }) {
|
||||
$current->{factor} = $form->format_amount(\%myconfig, $current->{factor} * 1);
|
||||
}
|
||||
$form->{callback} = build_std_url('action=list_price_factors');
|
||||
$form->{title} = $locale->text('Price Factors');
|
||||
$form->{url_base} = build_std_url('callback');
|
||||
$form->header();
|
||||
9aaca433 | Moritz Bunkus | print $form->parse_html_template('am/list_price_factors');
|
||
1e251313 | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
1e251313 | Moritz Bunkus | }
|
||
sub save_price_factor {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
1e251313 | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
8c7e4493 | Moritz Bunkus | |||
1e251313 | Moritz Bunkus | $form->isblank("description", $locale->text('Description missing!'));
|
||
$form->isblank("factor", $locale->text('Factor missing!'));
|
||||
$form->{factor} = $form->parse_amount(\%myconfig, $form->{factor});
|
||||
AM->save_price_factor(\%myconfig, $form);
|
||||
$form->{callback} .= '&MESSAGE=' . $form->escape($locale->text('Price factor saved!')) if ($form->{callback});
|
||||
$form->redirect($locale->text('Price factor saved!'));
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
1e251313 | Moritz Bunkus | }
|
||
sub delete_price_factor {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
1e251313 | Moritz Bunkus | |||
031251fb | Sven Schöling | my $form = $main::form;
|
||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
$main::auth->assert('config');
|
||||
8c7e4493 | Moritz Bunkus | |||
1e251313 | Moritz Bunkus | AM->delete_price_factor(\%myconfig, \%$form);
|
||
$form->{callback} .= '&MESSAGE=' . $form->escape($locale->text('Price factor deleted!')) if ($form->{callback});
|
||||
$form->redirect($locale->text('Price factor deleted!'));
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
1e251313 | Moritz Bunkus | }
|
||
83914eeb | Moritz Bunkus | sub add_warehouse {
|
||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my $locale = $main::locale;
|
||||
83914eeb | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
83914eeb | Moritz Bunkus | |||
$form->{title} = $locale->text('Add Warehouse');
|
||||
$form->{callback} ||= build_std_url('action=add_warehouse');
|
||||
$form->header();
|
||||
print $form->parse_html_template('am/edit_warehouse');
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
83914eeb | Moritz Bunkus | }
|
||
sub edit_warehouse {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
83914eeb | Moritz Bunkus | |||
031251fb | Sven Schöling | my $form = $main::form;
|
||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
$main::auth->assert('config');
|
||||
83914eeb | Moritz Bunkus | |||
AM->get_warehouse(\%myconfig, $form);
|
||||
$form->get_lists('employees' => 'EMPLOYEES');
|
||||
$form->{title} = $locale->text('Edit Warehouse');
|
||||
$form->{callback} ||= build_std_url('action=list_warehouses');
|
||||
$form->header();
|
||||
print $form->parse_html_template('am/edit_warehouse');
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
83914eeb | Moritz Bunkus | }
|
||
sub list_warehouses {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
83914eeb | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
83914eeb | Moritz Bunkus | |||
AM->get_all_warehouses(\%myconfig, $form);
|
||||
$form->{callback} = build_std_url('action=list_warehouses');
|
||||
$form->{title} = $locale->text('Warehouses');
|
||||
$form->{url_base} = build_std_url('callback');
|
||||
$form->header();
|
||||
print $form->parse_html_template('am/list_warehouses');
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
83914eeb | Moritz Bunkus | }
|
||
sub save_warehouse {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
83914eeb | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
83914eeb | Moritz Bunkus | |||
$form->isblank("description", $locale->text('Description missing!'));
|
||||
$form->{number_of_new_bins} = $form->parse_amount(\%myconfig, $form->{number_of_new_bins});
|
||||
AM->save_warehouse(\%myconfig, $form);
|
||||
$form->{callback} .= '&saved_message=' . E($locale->text('Warehouse saved.')) if ($form->{callback});
|
||||
$form->redirect($locale->text('Warehouse saved.'));
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
83914eeb | Moritz Bunkus | }
|
||
sub delete_warehouse {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
83914eeb | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
83914eeb | Moritz Bunkus | |||
if (!$form->{confirmed}) {
|
||||
$form->{title} = $locale->text('Confirmation');
|
||||
$form->header();
|
||||
print $form->parse_html_template('am/confirm_delete_warehouse');
|
||||
b2945bf6 | Sven Schöling | ::end_of_request();
|
||
83914eeb | Moritz Bunkus | }
|
||
if (AM->delete_warehouse(\%myconfig, $form)) {
|
||||
$form->{callback} .= '&saved_message=' . E($locale->text('Warehouse deleted.')) if ($form->{callback});
|
||||
$form->redirect($locale->text('Warehouse deleted.'));
|
||||
} else {
|
||||
$form->error($locale->text('The warehouse could not be deleted because it has already been used.'));
|
||||
}
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
83914eeb | Moritz Bunkus | }
|
||
sub save_bin {
|
||||
031251fb | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
83914eeb | Moritz Bunkus | |||
031251fb | Sven Schöling | $main::auth->assert('config');
|
||
83914eeb | Moritz Bunkus | |||
AM->save_bins(\%myconfig, $form);
|
||||
$form->{callback} .= '&saved_message=' . E($locale->text('Bins saved.')) if ($form->{callback});
|
||||
$form->redirect($locale->text('Bins saved.'));
|
||||
031251fb | Sven Schöling | $main::lxdebug->leave_sub();
|
||
83914eeb | Moritz Bunkus | }
|