kivitendo/bin/mozilla/am.pl @ 7dd95f35
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
|
||||
#
|
||||
#======================================================================
|
||||
8c7e4493 | Moritz Bunkus | use SL::Auth;
|
||
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;
|
||
bd34eaea | Udo Spallek | use CGI::Ajax;
|
||
use CGI;
|
||||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | use Data::Dumper;
|
||
d319704a | Moritz Bunkus | 1;
|
||
d629acd8 | Sven Schöling | require "bin/mozilla/common.pl";
|
||
30b38098 | Moritz Bunkus | |||
d319704a | Moritz Bunkus | # end of main
|
||
40782548 | Moritz Bunkus | sub add { call_sub("add_$form->{type}"); }
|
||
sub delete { call_sub("delete_$form->{type}"); }
|
||||
sub save { call_sub("save_$form->{type}"); }
|
||||
sub edit { call_sub("edit_$form->{type}"); }
|
||||
sub continue { call_sub($form->{"nextsub"}); }
|
||||
42ed89f3 | Philip Reetz | sub save_as_new { call_sub("save_as_new_$form->{type}"); }
|
||
b12e8d14 | Moritz Bunkus | |||
d319704a | Moritz Bunkus | sub add_account {
|
||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
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;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub edit_account {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
d319704a | Moritz Bunkus | $form->{title} = "Edit";
|
||
AM->get_account(\%myconfig, \%$form);
|
||||
foreach my $item (split(/:/, $form->{link})) {
|
||||
$form->{$item} = "checked";
|
||||
}
|
||||
&account_header;
|
||||
&form_footer;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub account_header {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
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
|
||
$newtaxkey_ref = {
|
||||
id => '',
|
||||
chart_id => '',
|
||||
accno => '',
|
||||
tax_id => '',
|
||||
taxdescription => '',
|
||||
rate => '',
|
||||
taxkey_id => '',
|
||||
pos_ustva => '',
|
||||
startdate => '',
|
||||
};
|
||||
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
|
||
54e4131e | Moritz Bunkus | if (@{ $form->{NEWACCOUNT} }) {
|
||
if (!$form->{new_chart_valid}) {
|
||||
bd34eaea | Udo Spallek | $form->{selectnewaccount} = qq|<option value=""> |. $locale->text('None') .q|</option>|;
|
||
54e4131e | Moritz Bunkus | }
|
||
foreach $item (@{ $form->{NEWACCOUNT} }) {
|
||||
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 | }
|
||
}
|
||||
}
|
||||
bd34eaea | Udo Spallek | $select_eur = q|<option value=""> |. $locale->text('None') .q|</option>\n|;
|
||
0d225f52 | Moritz Bunkus | %eur = (1 => "Umsatzerl?se",
|
||
2 => "sonstige Erl?se",
|
||||
d319704a | Moritz Bunkus | 3 => "Privatanteile",
|
||
0d225f52 | Moritz Bunkus | 4 => "Zinsertr?ge",
|
||
5 => "Ausserordentliche Ertr?ge",
|
||||
d319704a | Moritz Bunkus | 6 => "Vereinnahmte Umsatzst.",
|
||
7 => "Umsatzsteuererstattungen",
|
||||
0d225f52 | 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",
|
||||
0d225f52 | 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",
|
||||
0d225f52 | Moritz Bunkus | 20 => "Fachzeitschriften, B?cher",
|
||
21 => "Miete f?r Einrichtungen",
|
||||
d319704a | Moritz Bunkus | 22 => "Rechts- und Beratungskosten",
|
||
0d225f52 | 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");
|
||||
foreach $item (sort({ $a <=> $b } keys(%eur))) {
|
||||
a200453a | Moritz Bunkus | my $text = H(SL::Iconv::convert("ISO-8859-15", $dbcharset, $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 | }
|
||
}
|
||||
bd34eaea | Udo Spallek | $select_bwa = q|<option value=""> |. $locale->text('None') .q|</option>\n|;
|
||
d319704a | Moritz Bunkus | |||
0d225f52 | Moritz Bunkus | %bwapos = (1 => 'Umsatzerl?se',
|
||
d319704a | Moritz Bunkus | 2 => 'Best.Verdg.FE/UE',
|
||
3 => 'Aktiv.Eigenleistung',
|
||||
4 => 'Mat./Wareneinkauf',
|
||||
0d225f52 | Moritz Bunkus | 5 => 'So.betr.Erl?se',
|
||
d319704a | Moritz Bunkus | 10 => 'Personalkosten',
|
||
11 => 'Raumkosten',
|
||||
12 => 'Betriebl.Steuern',
|
||||
0d225f52 | 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.',
|
||||
0d225f52 | Moritz Bunkus | 19 => '?brige Steuern',
|
||
d319704a | Moritz Bunkus | 20 => 'Sonst.Kosten',
|
||
30 => 'Zinsauwand',
|
||||
31 => 'Sonst.neutr.Aufw.',
|
||||
0d225f52 | Moritz Bunkus | 32 => 'Zinsertr?ge',
|
||
d319704a | Moritz Bunkus | 33 => 'Sonst.neutr.Ertrag',
|
||
34 => 'Verr.kalk.Kosten',
|
||||
35 => 'Steuern Eink.u.Ertr.');
|
||||
foreach $item (sort({ $a <=> $b } keys %bwapos)) {
|
||||
a200453a | Moritz Bunkus | my $text = H(SL::Iconv::convert("ISO-8859-15", $dbcharset, $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 | }
|
||
}
|
||||
bd34eaea | Udo Spallek | # Wieder hinzugef?gt zu evaluationszwecken (us) 09.03.2007
|
||
$select_bilanz = q|<option value=""> |. $locale->text('None') .q|</option>\n|;
|
||||
foreach $item ((1, 2, 3, 4)) {
|
||||
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 | |||
bd34eaea | Udo Spallek | $select_category = q|<option value=""> |. $locale->text('None') .q|</option>\n|;
|
||
%category = (
|
||||
'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'),
|
||||
);
|
||||
foreach $item ( sort({ $a <=> $b } keys %category) ) {
|
||||
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
|
||
my $select_charttype = q{};
|
||||
my %charttype = (
|
||||
'A' => $locale->text('Account'),
|
||||
'H' => $locale->text('Header'),
|
||||
);
|
||||
c2def905 | Moritz Bunkus | |||
bd34eaea | Udo Spallek | foreach $item ( sort({ $a <=> $b } keys %charttype) ) {
|
||
if ($item eq $form->{charttype}) {
|
||||
$select_charttype .= qq|<option value="$item" selected="selected">$charttype{$item}\n|;
|
||||
} else {
|
||||
$select_charttype .= qq|<option value="$item">$charttype{$item}\n|;
|
||||
}
|
||||
d319704a | Moritz Bunkus | |||
}
|
||||
bd34eaea | Udo Spallek | my $ChartTypeIsAccount = ($form->{charttype} eq "A") ? "1":"";
|
||
c2def905 | Moritz Bunkus | |||
bd34eaea | Udo Spallek | $form->header();
|
||
c2def905 | Moritz Bunkus | |||
bd34eaea | Udo Spallek | my $parameters_ref = {
|
||
ChartTypeIsAccount => $ChartTypeIsAccount,
|
||||
select_category => $select_category,
|
||||
select_charttype => $select_charttype,
|
||||
newaccount => $newaccount,
|
||||
checked => $checked,
|
||||
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 | |||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub form_footer {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
d319704a | Moritz Bunkus | |||
8c7e4493 | Moritz Bunkus | print qq|
|
||
d319704a | Moritz Bunkus | |||
8c7e4493 | Moritz Bunkus | <input name=callback type=hidden value="| . H($form->{callback}) . qq|">
|
||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | <br>|;
|
||
if ((!$form->{id}) || ($form->{id} && $form->{orphaned}) || (($form->{type} eq "account") && (!$form->{new_chart_valid}))) {
|
||||
print qq|
|
||||
d319704a | Moritz Bunkus | <input type=submit class=submit name=action value="|
|
||
. $locale->text('Save') . qq|">
|
||||
|;
|
||||
54e4131e | Moritz Bunkus | }
|
||
d319704a | Moritz Bunkus | |||
if ($form->{id} && $form->{orphaned}) {
|
||||
print qq|<input type=submit class=submit name=action value="|
|
||||
. $locale->text('Delete') . qq|">|;
|
||||
}
|
||||
42ed89f3 | Philip Reetz | if ($form->{id} && $form->{type} eq "account") {
|
||
print qq|
|
||||
<input class=submit type=submit name=action value="|
|
||||
. $locale->text('Save as new') . qq|">|;
|
||||
}
|
||||
d319704a | Moritz Bunkus | print qq|
|
||
</form>
|
||||
</body>
|
||||
</html>
|
||||
|;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub save_account {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
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!'));
|
||||
}
|
||||
d319704a | Moritz Bunkus | |||
$form->redirect($locale->text('Account saved!'))
|
||||
if (AM->save_account(\%myconfig, \%$form));
|
||||
$form->error($locale->text('Cannot save account!'));
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
42ed89f3 | Philip Reetz | sub save_as_new_account {
|
||
$lxdebug->enter_sub();
|
||||
$auth->assert('config');
|
||||
$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;
|
||||
if ($form->{"original_accno"} &&
|
||||
($form->{"accno"} eq $form->{"original_accno"})) {
|
||||
$form->error($locale->text('Account Number already used!'));
|
||||
}
|
||||
$form->redirect($locale->text('Account saved!'))
|
||||
if (AM->save_account(\%myconfig, \%$form));
|
||||
$form->error($locale->text('Cannot save account!'));
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
d319704a | Moritz Bunkus | sub list_account {
|
||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
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 | |||
foreach $ca (@{ $form->{CA} }) {
|
||||
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 | |||
# Ajax
|
||||
b9882bee | Moritz Bunkus | my $pjx = new CGI::Ajax('list_account_details' => build_std_url('action=list_account_details'));
|
||
bd34eaea | Udo Spallek | |||
# Eneable AJAX debuging
|
||||
#$pjx->DEBUG(1);
|
||||
#$pjx->JSDEBUG(1);
|
||||
c2def905 | Moritz Bunkus | |||
bd34eaea | Udo Spallek | push(@ { $form->{AJAX} }, $pjx);
|
||
c7f9da81 | Moritz Bunkus | |||
$form->{stylesheets} = "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 | |||
bd34eaea | Udo Spallek | $lxdebug->leave_sub();
|
||
}
|
||||
sub list_account_details {
|
||||
b9882bee | Moritz Bunkus | # Ajax Funktion aus list_account_details
|
||
bd34eaea | Udo Spallek | $lxdebug->enter_sub();
|
||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
bd34eaea | Udo Spallek | my $chart_id = $form->{args};
|
||
b9882bee | Moritz Bunkus | CA->all_accounts(\%myconfig, \%$form, $chart_id);
|
||
d319704a | Moritz Bunkus | |||
foreach $ca (@{ $form->{CA} }) {
|
||||
$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')
|
||||
bd34eaea | Udo Spallek | # : ( $link eq 'CT_tax' ) ? $locale->text('Account Link CT_tax')
|
||
56041df3 | Udo Spallek | : $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');
|
||
$form->header();
|
||||
bd34eaea | Udo Spallek | |||
9aaca433 | Moritz Bunkus | print $form->parse_html_template('am/list_account_details');
|
||
bd34eaea | Udo Spallek | |||
d319704a | Moritz Bunkus | $lxdebug->leave_sub();
|
||
56041df3 | Udo Spallek | |||
d319704a | Moritz Bunkus | }
|
||
sub delete_account {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
d319704a | Moritz Bunkus | $form->{title} = $locale->text('Delete Account');
|
||
foreach $id (
|
||||
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!'));
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub add_department {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
d319704a | Moritz Bunkus | $form->{title} = "Add";
|
||
$form->{role} = "P";
|
||||
8c7e4493 | Moritz Bunkus | $form->{callback} = "am.pl?action=add_department" unless $form->{callback};
|
||
d319704a | Moritz Bunkus | |||
&department_header;
|
||||
&form_footer;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub edit_department {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
d319704a | Moritz Bunkus | $form->{title} = "Edit";
|
||
AM->get_department(\%myconfig, \%$form);
|
||||
&department_header;
|
||||
&form_footer;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub list_department {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
d319704a | Moritz Bunkus | AM->departments(\%myconfig, \%$form);
|
||
8c7e4493 | Moritz Bunkus | $form->{callback} = "am.pl?action=list_department";
|
||
d319704a | Moritz Bunkus | |||
$callback = $form->escape($form->{callback});
|
||||
$form->{title} = $locale->text('Departments');
|
||||
@column_index = qw(description cost profit);
|
||||
$column_header{description} =
|
||||
qq|<th class=listheading width=90%>|
|
||||
. $locale->text('Description')
|
||||
. qq|</th>|;
|
||||
$column_header{cost} =
|
||||
qq|<th class=listheading nowrap>|
|
||||
. $locale->text('Cost Center')
|
||||
. qq|</th>|;
|
||||
$column_header{profit} =
|
||||
qq|<th class=listheading nowrap>|
|
||||
. $locale->text('Profit Center')
|
||||
. qq|</th>|;
|
||||
$form->header;
|
||||
print qq|
|
||||
<body>
|
||||
<table width=100%>
|
||||
<tr>
|
||||
<th class=listtop>$form->{title}</th>
|
||||
</tr>
|
||||
<tr height="5"></tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table width=100%>
|
||||
<tr class=listheading>
|
||||
|;
|
||||
map { print "$column_header{$_}\n" } @column_index;
|
||||
print qq|
|
||||
</tr>
|
||||
|;
|
||||
foreach $ref (@{ $form->{ALL} }) {
|
||||
$i++;
|
||||
$i %= 2;
|
||||
print qq|
|
||||
<tr valign=top class=listrow$i>
|
||||
|;
|
||||
$costcenter = ($ref->{role} eq "C") ? "X" : "";
|
||||
$profitcenter = ($ref->{role} eq "P") ? "X" : "";
|
||||
$column_data{description} =
|
||||
8c7e4493 | Moritz Bunkus | qq|<td><a href="am.pl?action=edit_department&id=$ref->{id}&callback=$callback">$ref->{description}</td>|;
|
||
d319704a | Moritz Bunkus | $column_data{cost} = qq|<td align=center>$costcenter</td>|;
|
||
$column_data{profit} = qq|<td align=center>$profitcenter</td>|;
|
||||
map { print "$column_data{$_}\n" } @column_index;
|
||||
print qq|
|
||||
</tr>
|
||||
|;
|
||||
}
|
||||
print qq|
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><hr size=3 noshade></td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
8c7e4493 | Moritz Bunkus | <form method=post action=am.pl>
|
||
d319704a | Moritz Bunkus | |||
<input name=callback type=hidden value="$form->{callback}">
|
||||
<input type=hidden name=type value=department>
|
||||
<input class=submit type=submit name=action value="|
|
||||
8ec0d29a | Moritz Bunkus | . $locale->text('Add') . qq|">
|
||
d319704a | Moritz Bunkus | |||
</form>
|
||||
0576299f | Moritz Bunkus | |||
d319704a | Moritz Bunkus | </body>
|
||
0576299f | Moritz Bunkus | </html>
|
||
d319704a | Moritz Bunkus | |;
|
||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub department_header {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
d319704a | Moritz Bunkus | $form->{title} = $locale->text("$form->{title} Department");
|
||
# $locale->text('Add Department')
|
||||
# $locale->text('Edit Department')
|
||||
$form->{description} =~ s/\"/"/g;
|
||||
if (($rows = $form->numtextrows($form->{description}, 60)) > 1) {
|
||||
$description =
|
||||
qq|<textarea name="description" rows=$rows cols=60 wrap=soft>$form->{description}</textarea>|;
|
||||
} else {
|
||||
$description =
|
||||
qq|<input name=description size=60 value="$form->{description}">|;
|
||||
}
|
||||
$costcenter = "checked" if $form->{role} eq "C";
|
||||
$profitcenter = "checked" if $form->{role} eq "P";
|
||||
$form->header;
|
||||
print qq|
|
||||
<body>
|
||||
8c7e4493 | Moritz Bunkus | <form method=post action=am.pl>
|
||
d319704a | Moritz Bunkus | |||
<input type=hidden name=id value=$form->{id}>
|
||||
<input type=hidden name=type value=department>
|
||||
<table width=100%>
|
||||
<tr>
|
||||
<th class=listtop colspan=2>$form->{title}</th>
|
||||
</tr>
|
||||
<tr height="5"></tr>
|
||||
<tr>
|
||||
<th align=right>| . $locale->text('Description') . qq|</th>
|
||||
<td>$description</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td><input type=radio style=radio name=role value="C" $costcenter> |
|
||||
. $locale->text('Cost Center') . qq|
|
||||
<input type=radio style=radio name=role value="P" $profitcenter> |
|
||||
. $locale->text('Profit Center') . qq|
|
||||
</td>
|
||||
<tr>
|
||||
<td colspan=2><hr size=3 noshade></td>
|
||||
</tr>
|
||||
</table>
|
||||
|;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub save_department {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
d319704a | Moritz Bunkus | $form->isblank("description", $locale->text('Description missing!'));
|
||
AM->save_department(\%myconfig, \%$form);
|
||||
$form->redirect($locale->text('Department saved!'));
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub delete_department {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
d319704a | Moritz Bunkus | AM->delete_department(\%myconfig, \%$form);
|
||
$form->redirect($locale->text('Department deleted!'));
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
baf92f53 | Holger Lindemann | sub add_lead {
|
||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
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;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub edit_lead {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
baf92f53 | Holger Lindemann | $form->{title} = "Edit";
|
||
AM->get_lead(\%myconfig, \%$form);
|
||||
&lead_header;
|
||||
$form->{orphaned} = 1;
|
||||
&form_footer;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub list_lead {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
baf92f53 | Holger Lindemann | AM->lead(\%myconfig, \%$form);
|
||
8c7e4493 | Moritz Bunkus | $form->{callback} = "am.pl?action=list_lead";
|
||
baf92f53 | Holger Lindemann | |||
$callback = $form->escape($form->{callback});
|
||||
$form->{title} = $locale->text('Lead');
|
||||
@column_index = qw(description cost profit);
|
||||
$column_header{description} =
|
||||
qq|<th class=listheading width=100%>|
|
||||
. $locale->text('Description')
|
||||
. qq|</th>|;
|
||||
$form->header;
|
||||
print qq|
|
||||
<body>
|
||||
<table width=100%>
|
||||
<tr>
|
||||
<th class=listtop>$form->{title}</th>
|
||||
</tr>
|
||||
<tr height="5"></tr>
|
||||
<tr class=listheading>
|
||||
|;
|
||||
map { print "$column_header{$_}\n" } @column_index;
|
||||
print qq|
|
||||
</tr>
|
||||
|;
|
||||
foreach $ref (@{ $form->{ALL} }) {
|
||||
$i++;
|
||||
$i %= 2;
|
||||
print qq|
|
||||
<tr valign=top class=listrow$i>
|
||||
|;
|
||||
$lead = $ref->{lead};
|
||||
c2def905 | Moritz Bunkus | |||
8c7e4493 | Moritz Bunkus | $column_data{description} = qq|<td><a href="am.pl?action=edit_lead&id=$ref->{id}&callback=$callback">$ref->{lead}</td>|;
|
||
baf92f53 | Holger Lindemann | |||
map { print "$column_data{$_}\n" } @column_index;
|
||||
print qq|
|
||||
</tr>
|
||||
|;
|
||||
}
|
||||
print qq|
|
||||
<tr>
|
||||
<td><hr size=3 noshade></td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
8c7e4493 | Moritz Bunkus | <form method=post action=am.pl>
|
||
baf92f53 | Holger Lindemann | |||
<input name=callback type=hidden value="$form->{callback}">
|
||||
<input type=hidden name=type value=lead>
|
||||
<input class=submit type=submit name=action value="|
|
||||
8ec0d29a | Moritz Bunkus | . $locale->text('Add') . qq|">
|
||
baf92f53 | Holger Lindemann | |||
</form>
|
||||
</body>
|
||||
</html>
|
||||
|;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub lead_header {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
baf92f53 | Holger Lindemann | $form->{title} = $locale->text("$form->{title} Lead");
|
||
# $locale->text('Add Lead')
|
||||
# $locale->text('Edit Lead')
|
||||
$form->{description} =~ s/\"/"/g;
|
||||
$description =
|
||||
qq|<input name=description size=50 value="$form->{lead}">|;
|
||||
$form->header;
|
||||
print qq|
|
||||
<body>
|
||||
8c7e4493 | Moritz Bunkus | <form method=post action=am.pl>
|
||
baf92f53 | Holger Lindemann | |||
<input type=hidden name=id value=$form->{id}>
|
||||
<input type=hidden name=type value=lead>
|
||||
<table width=100%>
|
||||
<tr>
|
||||
<th class=listtop colspan=2>$form->{title}</th>
|
||||
</tr>
|
||||
<tr height="5"></tr>
|
||||
<tr>
|
||||
<th align=right>| . $locale->text('Description') . qq|</th>
|
||||
<td>$description</td>
|
||||
</tr>
|
||||
<td colspan=2><hr size=3 noshade></td>
|
||||
</tr>
|
||||
</table>
|
||||
|;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub save_lead {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
baf92f53 | Holger Lindemann | $form->isblank("description", $locale->text('Description missing!'));
|
||
AM->save_lead(\%myconfig, \%$form);
|
||||
$form->redirect($locale->text('lead saved!'));
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub delete_lead {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
baf92f53 | Holger Lindemann | AM->delete_lead(\%myconfig, \%$form);
|
||
$form->redirect($locale->text('lead deleted!'));
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
d319704a | Moritz Bunkus | sub add_business {
|
||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
d319704a | Moritz Bunkus | $form->{title} = "Add";
|
||
8c7e4493 | Moritz Bunkus | $form->{callback} = "am.pl?action=add_business" unless $form->{callback};
|
||
d319704a | Moritz Bunkus | |||
&business_header;
|
||||
&form_footer;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub edit_business {
|
||||
$lxdebug->enter_sub();
|
||||
$form->{title} = "Edit";
|
||||
AM->get_business(\%myconfig, \%$form);
|
||||
&business_header;
|
||||
$form->{orphaned} = 1;
|
||||
&form_footer;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub list_business {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
d319704a | Moritz Bunkus | AM->business(\%myconfig, \%$form);
|
||
8c7e4493 | Moritz Bunkus | $form->{callback} = "am.pl?action=list_business";
|
||
d319704a | Moritz Bunkus | |||
$callback = $form->escape($form->{callback});
|
||||
$form->{title} = $locale->text('Type of Business');
|
||||
@column_index = qw(description discount customernumberinit);
|
||||
$column_header{description} =
|
||||
qq|<th class=listheading width=60%>|
|
||||
. $locale->text('Description')
|
||||
. qq|</th>|;
|
||||
$column_header{discount} =
|
||||
qq|<th class=listheading width=10%>|
|
||||
. $locale->text('Discount')
|
||||
. qq| %</th>|;
|
||||
$column_header{customernumberinit} =
|
||||
qq|<th class=listheading>|
|
||||
. $locale->text('Customernumberinit')
|
||||
. qq|</th>|;
|
||||
$form->header;
|
||||
print qq|
|
||||
<body>
|
||||
<table width=100%>
|
||||
<tr>
|
||||
<th class=listtop>$form->{title}</th>
|
||||
</tr>
|
||||
<tr height="5"></tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table width=100%>
|
||||
<tr class=listheading>
|
||||
|;
|
||||
map { print "$column_header{$_}\n" } @column_index;
|
||||
print qq|
|
||||
</tr>
|
||||
|;
|
||||
foreach $ref (@{ $form->{ALL} }) {
|
||||
$i++;
|
||||
$i %= 2;
|
||||
print qq|
|
||||
<tr valign=top class=listrow$i>
|
||||
|;
|
||||
$discount =
|
||||
9d679693 | Moritz Bunkus | $form->format_amount(\%myconfig, $ref->{discount} * 100);
|
||
d319704a | Moritz Bunkus | $description =
|
||
0acf0e35 | Moritz Bunkus | $ref->{description};
|
||
8c7e4493 | Moritz Bunkus | $column_data{description} = qq|<td><a href="am.pl?action=edit_business&id=$ref->{id}&callback=$callback">$description</td>|;
|
||
d319704a | Moritz Bunkus | $column_data{discount} = qq|<td align=right>$discount</td>|;
|
||
$column_data{customernumberinit} =
|
||||
qq|<td align=right>$ref->{customernumberinit}</td>|;
|
||||
map { print "$column_data{$_}\n" } @column_index;
|
||||
print qq|
|
||||
</tr>
|
||||
|;
|
||||
}
|
||||
print qq|
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><hr size=3 noshade></td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
8c7e4493 | Moritz Bunkus | <form method=post action=am.pl>
|
||
d319704a | Moritz Bunkus | |||
<input name=callback type=hidden value="$form->{callback}">
|
||||
<input type=hidden name=type value=business>
|
||||
<input class=submit type=submit name=action value="|
|
||||
8ec0d29a | Moritz Bunkus | . $locale->text('Add') . qq|">
|
||
0576299f | Moritz Bunkus | |||
d319704a | Moritz Bunkus | </form>
|
||
0576299f | Moritz Bunkus | |||
d319704a | Moritz Bunkus | </body>
|
||
0576299f | Moritz Bunkus | </html>
|
||
d319704a | Moritz Bunkus | |;
|
||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub business_header {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
d319704a | Moritz Bunkus | $form->{title} = $locale->text("$form->{title} Business");
|
||
# $locale->text('Add Business')
|
||||
# $locale->text('Edit Business')
|
||||
$form->{description} =~ s/\"/"/g;
|
||||
$form->{discount} =
|
||||
$form->format_amount(\%myconfig, $form->{discount} * 100);
|
||||
$form->header;
|
||||
print qq|
|
||||
<body>
|
||||
8c7e4493 | Moritz Bunkus | <form method=post action=am.pl>
|
||
d319704a | Moritz Bunkus | |||
<input type=hidden name=id value=$form->{id}>
|
||||
<input type=hidden name=type value=business>
|
||||
<table width=100%>
|
||||
<tr>
|
||||
<th class=listtop colspan=2>$form->{title}</th>
|
||||
</tr>
|
||||
<tr height="5"></tr>
|
||||
<tr>
|
||||
<th align=right>| . $locale->text('Type of Business') . qq|</th>
|
||||
<td><input name=description size=30 value="$form->{description}"></td>
|
||||
<tr>
|
||||
<tr>
|
||||
<th align=right>| . $locale->text('Discount') . qq| %</th>
|
||||
<td><input name=discount size=5 value=$form->{discount}></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th align=right>| . $locale->text('Customernumberinit') . qq|</th>
|
||||
<td><input name=customernumberinit size=10 value=$form->{customernumberinit}></td>
|
||||
</tr>
|
||||
<td colspan=2><hr size=3 noshade></td>
|
||||
</tr>
|
||||
</table>
|
||||
|;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub save_business {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
d319704a | Moritz Bunkus | $form->isblank("description", $locale->text('Description missing!'));
|
||
9d679693 | Moritz Bunkus | $form->{discount} = $form->parse_amount(\%myconfig, $form->{discount}) / 100;
|
||
d319704a | Moritz Bunkus | AM->save_business(\%myconfig, \%$form);
|
||
$form->redirect($locale->text('Business saved!'));
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub delete_business {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
d319704a | Moritz Bunkus | AM->delete_business(\%myconfig, \%$form);
|
||
$form->redirect($locale->text('Business deleted!'));
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
54e4131e | Moritz Bunkus | sub add_language {
|
||
d319704a | Moritz Bunkus | $lxdebug->enter_sub();
|
||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
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;
|
||
$lxdebug->leave_sub();
|
||||
}
|
||||
54e4131e | Moritz Bunkus | sub edit_language {
|
||
d319704a | Moritz Bunkus | $lxdebug->enter_sub();
|
||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
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;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
54e4131e | Moritz Bunkus | sub list_language {
|
||
d319704a | Moritz Bunkus | $lxdebug->enter_sub();
|
||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
54e4131e | Moritz Bunkus | AM->language(\%myconfig, \%$form);
|
||
d319704a | Moritz Bunkus | |||
8c7e4493 | Moritz Bunkus | $form->{callback} = "am.pl?action=list_language";
|
||
d319704a | Moritz Bunkus | |||
$callback = $form->escape($form->{callback});
|
||||
54e4131e | Moritz Bunkus | $form->{title} = $locale->text('Languages');
|
||
d319704a | Moritz Bunkus | |||
08882e8c | Moritz Bunkus | @column_index = qw(description template_code article_code output_numberformat output_dateformat output_longdates);
|
||
d319704a | Moritz Bunkus | |||
$column_header{description} =
|
||||
54e4131e | Moritz Bunkus | qq|<th class=listheading width=60%>|
|
||
. $locale->text('Description')
|
||||
. qq|</th>|;
|
||||
$column_header{template_code} =
|
||||
qq|<th class=listheading width=10%>|
|
||||
. $locale->text('Template Code')
|
||||
. qq|</th>|;
|
||||
$column_header{article_code} =
|
||||
qq|<th class=listheading>|
|
||||
. $locale->text('Article Code')
|
||||
. qq|</th>|;
|
||||
08882e8c | Moritz Bunkus | $column_header{output_numberformat} =
|
||
qq|<th class=listheading>|
|
||||
. $locale->text('Number Format')
|
||||
. qq|</th>|;
|
||||
$column_header{output_dateformat} =
|
||||
qq|<th class=listheading>|
|
||||
. $locale->text('Date Format')
|
||||
. qq|</th>|;
|
||||
$column_header{output_longdates} =
|
||||
qq|<th class=listheading>|
|
||||
. $locale->text('Long Dates')
|
||||
. qq|</th>|;
|
||||
d319704a | Moritz Bunkus | |||
$form->header;
|
||||
print qq|
|
||||
<body>
|
||||
<table width=100%>
|
||||
<tr>
|
||||
<th class=listtop>$form->{title}</th>
|
||||
</tr>
|
||||
<tr height="5"></tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table width=100%>
|
||||
<tr class=listheading>
|
||||
|;
|
||||
map { print "$column_header{$_}\n" } @column_index;
|
||||
print qq|
|
||||
</tr>
|
||||
|;
|
||||
foreach $ref (@{ $form->{ALL} }) {
|
||||
$i++;
|
||||
$i %= 2;
|
||||
54e4131e | Moritz Bunkus | print qq|
|
||
d319704a | Moritz Bunkus | <tr valign=top class=listrow$i>
|
||
|;
|
||||
54e4131e | Moritz Bunkus | $column_data{description} =
|
||
8c7e4493 | Moritz Bunkus | qq|<td><a href="am.pl?action=edit_language&id=$ref->{id}&callback=$callback">$ref->{description}</td>|;
|
||
54e4131e | Moritz Bunkus | $column_data{template_code} = qq|<td align=right>$ref->{template_code}</td>|;
|
||
$column_data{article_code} =
|
||||
qq|<td align=right>$ref->{article_code}</td>|;
|
||||
08882e8c | Moritz Bunkus | $column_data{output_numberformat} =
|
||
"<td nowrap>" .
|
||||
($ref->{output_numberformat} ? $ref->{output_numberformat} :
|
||||
$locale->text("use program settings")) .
|
||||
"</td>";
|
||||
$column_data{output_dateformat} =
|
||||
"<td nowrap>" .
|
||||
($ref->{output_dateformat} ? $ref->{output_dateformat} :
|
||||
$locale->text("use program settings")) .
|
||||
"</td>";
|
||||
$column_data{output_longdates} =
|
||||
"<td nowrap>" .
|
||||
($ref->{output_longdates} ? $locale->text("Yes") : $locale->text("No")) .
|
||||
"</td>";
|
||||
d319704a | Moritz Bunkus | |||
map { print "$column_data{$_}\n" } @column_index;
|
||||
print qq|
|
||||
</tr>
|
||||
|;
|
||||
}
|
||||
print qq|
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><hr size=3 noshade></td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
8c7e4493 | Moritz Bunkus | <form method=post action=am.pl>
|
||
d319704a | Moritz Bunkus | |||
<input name=callback type=hidden value="$form->{callback}">
|
||||
54e4131e | Moritz Bunkus | <input type=hidden name=type value=language>
|
||
d319704a | Moritz Bunkus | |||
<input class=submit type=submit name=action value="|
|
||||
8ec0d29a | Moritz Bunkus | . $locale->text('Add') . qq|">
|
||
54e4131e | Moritz Bunkus | |||
d319704a | Moritz Bunkus | </form>
|
||
0576299f | Moritz Bunkus | |||
d319704a | Moritz Bunkus | </body>
|
||
0576299f | Moritz Bunkus | </html>
|
||
d319704a | Moritz Bunkus | |;
|
||
$lxdebug->leave_sub();
|
||||
}
|
||||
54e4131e | Moritz Bunkus | sub language_header {
|
||
d319704a | Moritz Bunkus | $lxdebug->enter_sub();
|
||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
54e4131e | Moritz Bunkus | $form->{title} = $locale->text("$form->{title} Language");
|
||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | # $locale->text('Add Language')
|
||
# $locale->text('Edit Language')
|
||||
d319704a | Moritz Bunkus | |||
$form->{description} =~ s/\"/"/g;
|
||||
54e4131e | Moritz Bunkus | $form->{template_code} =~ s/\"/"/g;
|
||
$form->{article_code} =~ s/\"/"/g;
|
||||
d319704a | Moritz Bunkus | |||
$form->header;
|
||||
08882e8c | Moritz Bunkus | my $numberformat =
|
||
qq|<option value="">| . $locale->text("use program settings") .
|
||||
qq|</option>|;
|
||||
foreach $item (qw(1,000.00 1000.00 1.000,00 1000,00)) {
|
||||
$numberformat .=
|
||||
($item eq $form->{output_numberformat})
|
||||
? "<option selected>$item"
|
||||
: "<option>$item"
|
||||
. "</option>";
|
||||
}
|
||||
my $dateformat =
|
||||
qq|<option value="">| . $locale->text("use program settings") .
|
||||
qq|</option>|;
|
||||
foreach $item (qw(mm-dd-yy mm/dd/yy dd-mm-yy dd/mm/yy dd.mm.yy yyyy-mm-dd)) {
|
||||
$dateformat .=
|
||||
($item eq $form->{output_dateformat})
|
||||
? "<option selected>$item"
|
||||
: "<option>$item"
|
||||
. "</option>";
|
||||
}
|
||||
d319704a | Moritz Bunkus | print qq|
|
||
<body>
|
||||
8c7e4493 | Moritz Bunkus | <form method=post action=am.pl>
|
||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | <input type=hidden name=id value=$form->{id}>
|
||
<input type=hidden name=type value=language>
|
||||
d319704a | Moritz Bunkus | |||
<table width=100%>
|
||||
<tr>
|
||||
<th class=listtop colspan=2>$form->{title}</th>
|
||||
</tr>
|
||||
<tr height="5"></tr>
|
||||
<tr>
|
||||
54e4131e | Moritz Bunkus | <th align=right>| . $locale->text('Language') . qq|</th>
|
||
08882e8c | Moritz Bunkus | <td><input name=description size=30 value="| . $form->quote($form->{description}) . qq|"></td>
|
||
d319704a | Moritz Bunkus | <tr>
|
||
<tr>
|
||||
54e4131e | Moritz Bunkus | <th align=right>| . $locale->text('Template Code') . qq|</th>
|
||
08882e8c | Moritz Bunkus | <td><input name=template_code size=5 value="| . $form->quote($form->{template_code}) . qq|"></td>
|
||
54e4131e | Moritz Bunkus | </tr>
|
||
d319704a | Moritz Bunkus | <tr>
|
||
54e4131e | Moritz Bunkus | <th align=right>| . $locale->text('Article Code') . qq|</th>
|
||
08882e8c | Moritz Bunkus | <td><input name=article_code size=10 value="| . $form->quote($form->{article_code}) . qq|"></td>
|
||
</tr>
|
||||
<tr>
|
||||
<th align=right>| . $locale->text('Number Format') . qq|</th>
|
||||
<td><select name="output_numberformat">$numberformat</select></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th align=right>| . $locale->text('Date Format') . qq|</th>
|
||||
<td><select name="output_dateformat">$dateformat</select></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th align=right>| . $locale->text('Long Dates') . qq|</th>
|
||||
<td><input type="radio" name="output_longdates" value="1"| .
|
||||
($form->{output_longdates} ? " checked" : "") .
|
||||
qq|>| . $locale->text("Yes") .
|
||||
qq|<input type="radio" name="output_longdates" value="0"| .
|
||||
($form->{output_longdates} ? "" : " checked") .
|
||||
qq|>| . $locale->text("No") .
|
||||
qq|</td>
|
||||
d319704a | Moritz Bunkus | </tr>
|
||
54e4131e | Moritz Bunkus | <td colspan=2><hr size=3 noshade></td>
|
||
d319704a | Moritz Bunkus | </tr>
|
||
</table>
|
||||
|;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
54e4131e | Moritz Bunkus | sub save_language {
|
||
d319704a | Moritz Bunkus | $lxdebug->enter_sub();
|
||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
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 | |||
$lxdebug->leave_sub();
|
||||
}
|
||||
54e4131e | Moritz Bunkus | sub delete_language {
|
||
d319704a | Moritz Bunkus | $lxdebug->enter_sub();
|
||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
54e4131e | Moritz Bunkus | AM->delete_language(\%myconfig, \%$form);
|
||
$form->redirect($locale->text('Language deleted!'));
|
||||
d319704a | Moritz Bunkus | |||
$lxdebug->leave_sub();
|
||||
}
|
||||
54e4131e | Moritz Bunkus | |||
sub add_buchungsgruppe {
|
||||
d319704a | Moritz Bunkus | $lxdebug->enter_sub();
|
||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
54e4131e | Moritz Bunkus | # $locale->text("Add Buchungsgruppe")
|
||
# $locale->text("Edit Buchungsgruppe")
|
||||
$form->{title} = "Add";
|
||||
8c7e4493 | Moritz Bunkus | $form->{callback} = "am.pl?action=add_buchungsgruppe" unless $form->{callback};
|
||
54e4131e | Moritz Bunkus | AM->get_buchungsgruppe(\%myconfig, \%$form);
|
||
62f99e30 | Moritz Bunkus | $form->{"inventory_accno_id"} = $form->{"std_inventory_accno_id"};
|
||
for (my $i = 0; 4 > $i; $i++) {
|
||||
map({ $form->{"${_}_accno_id_$i"} = $form->{"std_${_}_accno_id"}; }
|
||||
qw(income expense));
|
||||
1beff66b | Moritz Bunkus | }
|
||
54e4131e | Moritz Bunkus | |||
&buchungsgruppe_header;
|
||||
&form_footer;
|
||||
d319704a | Moritz Bunkus | |||
$lxdebug->leave_sub();
|
||||
}
|
||||
54e4131e | Moritz Bunkus | sub edit_buchungsgruppe {
|
||
d319704a | Moritz Bunkus | $lxdebug->enter_sub();
|
||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
54e4131e | Moritz Bunkus | $form->{title} = "Edit";
|
||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | AM->get_buchungsgruppe(\%myconfig, \%$form);
|
||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | &buchungsgruppe_header;
|
||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | &form_footer;
|
||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | $lxdebug->leave_sub();
|
||
}
|
||||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | sub list_buchungsgruppe {
|
||
$lxdebug->enter_sub();
|
||||
d319704a | Moritz Bunkus | |||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
54e4131e | Moritz Bunkus | AM->buchungsgruppe(\%myconfig, \%$form);
|
||
d319704a | Moritz Bunkus | |||
8c7e4493 | Moritz Bunkus | $form->{callback} = "am.pl?action=list_buchungsgruppe";
|
||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | $callback = $form->escape($form->{callback});
|
||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | $form->{title} = $locale->text('Buchungsgruppen');
|
||
d319704a | Moritz Bunkus | |||
c98a426e | Moritz Bunkus | @column_index = qw(up down description inventory_accno
|
||
income_accno_0 expense_accno_0
|
||||
income_accno_1 expense_accno_1
|
||||
income_accno_2 expense_accno_2
|
||||
income_accno_3 expense_accno_3 );
|
||||
$column_header{up} =
|
||||
ecbfb57d | Moritz Bunkus | qq|<th class="listheading" width="16">|
|
||
c98a426e | Moritz Bunkus | . qq|<img src="image/up.png" alt="| . $locale->text("up") . qq|">|
|
||
. qq|</th>|;
|
||||
$column_header{down} =
|
||||
ecbfb57d | Moritz Bunkus | qq|<th class="listheading" width="16">|
|
||
c98a426e | Moritz Bunkus | . qq|<img src="image/down.png" alt="| . $locale->text("down") . qq|">|
|
||
. qq|</th>|;
|
||||
54e4131e | Moritz Bunkus | $column_header{description} =
|
||
c98a426e | Moritz Bunkus | qq|<th class="listheading" width="40%">|
|
||
54e4131e | Moritz Bunkus | . $locale->text('Description')
|
||
. qq|</th>|;
|
||||
$column_header{inventory_accno} =
|
||||
c98a426e | Moritz Bunkus | qq|<th class=listheading>|
|
||
54e4131e | Moritz Bunkus | . $locale->text('Bestandskonto')
|
||
. qq|</th>|;
|
||||
$column_header{income_accno_0} =
|
||||
qq|<th class=listheading>|
|
||||
63024c9f | Moritz Bunkus | . $locale->text('National Revenues')
|
||
54e4131e | Moritz Bunkus | . qq|</th>|;
|
||
$column_header{expense_accno_0} =
|
||||
qq|<th class=listheading>|
|
||||
63024c9f | Moritz Bunkus | . $locale->text('National Expenses')
|
||
54e4131e | Moritz Bunkus | . qq|</th>|;
|
||
$column_header{income_accno_1} =
|
||||
qq|<th class=listheading>|
|
||||
63024c9f | Moritz Bunkus | . $locale->text('Revenues EU with UStId')
|
||
54e4131e | Moritz Bunkus | . qq|</th>|;
|
||
$column_header{expense_accno_1} =
|
||||
qq|<th class=listheading>|
|
||||
63024c9f | Moritz Bunkus | . $locale->text('Expenses EU with UStId')
|
||
54e4131e | Moritz Bunkus | . qq|</th>|;
|
||
$column_header{income_accno_2} =
|
||||
qq|<th class=listheading>|
|
||||
63024c9f | Moritz Bunkus | . $locale->text('Revenues EU without UStId')
|
||
54e4131e | Moritz Bunkus | . qq|</th>|;
|
||
$column_header{expense_accno_2} =
|
||||
qq|<th class=listheading>|
|
||||
63024c9f | Moritz Bunkus | . $locale->text('Expenses EU without UStId')
|
||
54e4131e | Moritz Bunkus | . qq|</th>|;
|
||
$column_header{income_accno_3} =
|
||||
qq|<th class=listheading>|
|
||||
63024c9f | Moritz Bunkus | . $locale->text('Foreign Revenues')
|
||
54e4131e | Moritz Bunkus | . qq|</th>|;
|
||
$column_header{expense_accno_3} =
|
||||
qq|<th class=listheading>|
|
||||
63024c9f | Moritz Bunkus | . $locale->text('Foreign Expenses')
|
||
54e4131e | Moritz Bunkus | . qq|</th>|;
|
||
$form->header;
|
||||
d319704a | Moritz Bunkus | |||
print qq|
|
||||
54e4131e | Moritz Bunkus | <body>
|
||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | <table width=100%>
|
||
<tr>
|
||||
<th class=listtop>$form->{title}</th>
|
||||
</tr>
|
||||
<tr height="5"></tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table width=100%>
|
||||
<tr class=listheading>
|
||||
d319704a | Moritz Bunkus | |;
|
||
54e4131e | Moritz Bunkus | map { print "$column_header{$_}\n" } @column_index;
|
||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | print qq|
|
||
</tr>
|
||||
|;
|
||||
d319704a | Moritz Bunkus | |||
8c7e4493 | Moritz Bunkus | my $swap_link = qq|am.pl?action=swap_buchungsgruppen&|;
|
||
c98a426e | Moritz Bunkus | |||
my $row = 0;
|
||||
54e4131e | Moritz Bunkus | foreach $ref (@{ $form->{ALL} }) {
|
||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | $i++;
|
||
$i %= 2;
|
||||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | print qq|
|
||
<tr valign=top class=listrow$i>
|
||||
|;
|
||||
d319704a | Moritz Bunkus | |||
c98a426e | Moritz Bunkus | if ($row) {
|
||
my $pref = $form->{ALL}->[$row - 1];
|
||||
$column_data{up} =
|
||||
ecbfb57d | Moritz Bunkus | qq|<td align="center" valign="center" width="16">| .
|
||
c98a426e | Moritz Bunkus | qq|<a href="${swap_link}id1=$ref->{id}&id2=$pref->{id}">| .
|
||
b8b43236 | Moritz Bunkus | qq|<img border="0" src="image/up.png" alt="| . $locale->text("up") . qq|">| .
|
||
c98a426e | Moritz Bunkus | qq|</a></td>|;
|
||
} else {
|
||||
ecbfb57d | Moritz Bunkus | $column_data{up} = qq|<td width="16"> </td>|;
|
||
c98a426e | Moritz Bunkus | }
|
||
if ($row == (scalar(@{ $form->{ALL} }) - 1)) {
|
||||
ecbfb57d | Moritz Bunkus | $column_data{down} = qq|<td width="16"> </td>|;
|
||
c98a426e | Moritz Bunkus | } else {
|
||
my $nref = $form->{ALL}->[$row + 1];
|
||||
$column_data{down} =
|
||||
ecbfb57d | Moritz Bunkus | qq|<td align="center" valign="center" width="16">| .
|
||
c98a426e | Moritz Bunkus | qq|<a href="${swap_link}id1=$ref->{id}&id2=$nref->{id}">| .
|
||
b8b43236 | Moritz Bunkus | qq|<img border="0" src="image/down.png" alt="| . $locale->text("down") . qq|">| .
|
||
c98a426e | Moritz Bunkus | qq|</a></td>|;
|
||
}
|
||||
54e4131e | Moritz Bunkus | |||
8c7e4493 | Moritz Bunkus | $column_data{description} = qq|<td><a href="am.pl?action=edit_buchungsgruppe&id=$ref->{id}&callback=$callback">$ref->{description}</td>|;
|
||
54e4131e | Moritz Bunkus | $column_data{inventory_accno} = qq|<td align=right>$ref->{inventory_accno}</td>|;
|
||
$column_data{income_accno_0} =
|
||||
qq|<td align=right>$ref->{income_accno_0}</td>|;
|
||||
$column_data{expense_accno_0} = qq|<td align=right>$ref->{expense_accno_0}</td>|;
|
||||
$column_data{income_accno_1} =
|
||||
qq|<td align=right>$ref->{income_accno_1}</td>|;
|
||||
$column_data{expense_accno_1} = qq|<td align=right>$ref->{expense_accno_1}</td>|;
|
||||
$column_data{income_accno_2} =
|
||||
qq|<td align=right>$ref->{income_accno_2}</td>|;
|
||||
$column_data{expense_accno_2} = qq|<td align=right>$ref->{expense_accno_2}</td>|;
|
||||
$column_data{income_accno_3} =
|
||||
qq|<td align=right>$ref->{income_accno_3}</td>|;
|
||||
$column_data{expense_accno_3} = qq|<td align=right>$ref->{expense_accno_3}</td>|;
|
||||
map { print "$column_data{$_}\n" } @column_index;
|
||||
print qq|
|
||||
</tr>
|
||||
|;
|
||||
c98a426e | Moritz Bunkus | |||
$row++;
|
||||
54e4131e | Moritz Bunkus | }
|
||
d319704a | Moritz Bunkus | |||
print qq|
|
||||
54e4131e | Moritz Bunkus | </table>
|
||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><hr size=3 noshade></td>
|
||||
</tr>
|
||||
</table>
|
||||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | <br>
|
||
8c7e4493 | Moritz Bunkus | <form method=post action=am.pl>
|
||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | <input name=callback type=hidden value="$form->{callback}">
|
||
<input type=hidden name=type value=buchungsgruppe>
|
||||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | <input class=submit type=submit name=action value="|
|
||
8ec0d29a | Moritz Bunkus | . $locale->text('Add') . qq|">
|
||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | </form>
|
||
d319704a | Moritz Bunkus | |||
54e4131e | Moritz Bunkus | </body>
|
||
</html>
|
||||
d319704a | Moritz Bunkus | |;
|
||
$lxdebug->leave_sub();
|
||||
}
|
||||
54e4131e | Moritz Bunkus | sub buchungsgruppe_header {
|
||
d319704a | Moritz Bunkus | $lxdebug->enter_sub();
|
||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
54e4131e | Moritz Bunkus | $form->{title} = $locale->text("$form->{title} Buchungsgruppe");
|
||
d319704a | Moritz Bunkus | |||
63024c9f | Moritz Bunkus | # $locale->text('Add Accounting Group')
|
||
# $locale->text('Edit Accounting Group')
|
||||
d319704a | Moritz Bunkus | |||
30b38098 | Moritz Bunkus | my ($acc_inventory, $acc_income, $acc_expense) = ({}, {}, {});
|
||
my %acc_type_map = (
|
||||
"IC" => $acc_inventory,
|
||||
"IC_income" => $acc_income,
|
||||
"IC_sale" => $acc_income,
|
||||
"IC_expense" => $acc_expense,
|
||||
"IC_cogs" => $acc_expense,
|
||||
);
|
||||
d319704a | Moritz Bunkus | |||
30b38098 | Moritz Bunkus | foreach $key (keys(%acc_type_map)) {
|
||
54e4131e | Moritz Bunkus | foreach $ref (@{ $form->{IC_links}{$key} }) {
|
||
30b38098 | Moritz Bunkus | $acc_type_map{$key}->{$ref->{"id"}} = $ref;
|
||
54e4131e | Moritz Bunkus | }
|
||
}
|
||||
30b38098 | Moritz Bunkus | |||
foreach my $type (qw(IC IC_income IC_expense)) {
|
||||
$form->{"select$type"} =
|
||||
join("",
|
||||
map({ "<option value=$_->{id} $_->{selected}>" .
|
||||
"$_->{accno}--" . H($_->{description}) . "</option>" }
|
||||
sort({ $a->{"accno"} cmp $b->{"accno"} }
|
||||
values(%{$acc_type_map{$type}}))));
|
||||
}
|
||||
54e4131e | Moritz Bunkus | |||
if ($form->{id}) {
|
||||
$form->{selectIC} =~ s/selected//g;
|
||||
5cf977e5 | Moritz Bunkus | $form->{selectIC} =~ s/ value=\Q$form->{inventory_accno_id}\E/ value=$form->{inventory_accno_id} selected/;
|
||
54e4131e | Moritz Bunkus | $form->{selectIC_income} =~ s/selected//g;
|
||
5cf977e5 | Moritz Bunkus | $form->{selectIC_income} =~ s/ value=\Q$form->{income_accno_id_0}\E/ value=$form->{income_accno_id_0} selected/;
|
||
54e4131e | Moritz Bunkus | $form->{selectIC_expense} =~ s/selected//g;
|
||
5cf977e5 | Moritz Bunkus | $form->{selectIC_expense} =~ s/ value=\Q$form->{expense_accno_id_0}\E/ value=$form->{expense_accno_id_0} selected/;
|
||
54e4131e | Moritz Bunkus | }
|
||
if (!$eur) {
|
||||
$linkaccounts = qq|
|
||||
<tr>
|
||||
<th align=right>| . $locale->text('Inventory') . qq|</th>
|
||||
<td><select name=inventory_accno_id>$form->{selectIC}</select></td>
|
||||
<input name=selectIC type=hidden value="$form->{selectIC}">
|
||||
</tr>|;
|
||||
} else {
|
||||
$linkaccounts = qq|
|
||||
ff24c71b | Moritz Bunkus | <input type=hidden name=inventory_accno_id value=$form->{inventory_accno_id}>|;
|
||
30b38098 | Moritz Bunkus | }
|
||
54e4131e | Moritz Bunkus | |||
30b38098 | Moritz Bunkus | $linkaccounts .= qq|
|
||
54e4131e | Moritz Bunkus | <tr>
|
||
63024c9f | Moritz Bunkus | <th align=right>| . $locale->text('National Revenues') . qq|</th>
|
||
54e4131e | Moritz Bunkus | <td><select name=income_accno_id_0>$form->{selectIC_income}</select></td>
|
||
</tr>
|
||||
<tr>
|
||||
63024c9f | Moritz Bunkus | <th align=right>| . $locale->text('National Expenses') . qq|</th>
|
||
54e4131e | Moritz Bunkus | <td><select name=expense_accno_id_0>$form->{selectIC_expense}</select></td>
|
||
</tr>|;
|
||||
if ($form->{id}) {
|
||||
$form->{selectIC_income} =~ s/selected//g;
|
||||
5cf977e5 | Moritz Bunkus | $form->{selectIC_income} =~ s/ value=\Q$form->{income_accno_id_1}\E/ value=$form->{income_accno_id_1} selected/;
|
||
54e4131e | Moritz Bunkus | $form->{selectIC_expense} =~ s/selected//g;
|
||
5cf977e5 | Moritz Bunkus | $form->{selectIC_expense} =~ s/ value=\Q$form->{expense_accno_id_1}\E/ value=$form->{expense_accno_id_1} selected/;
|
||
54e4131e | Moritz Bunkus | }
|
||
$linkaccounts .= qq| <tr>
|
||||
63024c9f | Moritz Bunkus | <th align=right>| . $locale->text('Revenues EU with UStId') . qq|</th>
|
||
54e4131e | Moritz Bunkus | <td><select name=income_accno_id_1>$form->{selectIC_income}</select></td>
|
||
</tr>
|
||||
<tr>
|
||||
63024c9f | Moritz Bunkus | <th align=right>| . $locale->text('Expenses EU with UStId') . qq|</th>
|
||
54e4131e | Moritz Bunkus | <td><select name=expense_accno_id_1>$form->{selectIC_expense}</select></td>
|
||
</tr>|;
|
||||
if ($form->{id}) {
|
||||
$form->{selectIC_income} =~ s/selected//g;
|
||||
5cf977e5 | Moritz Bunkus | $form->{selectIC_income} =~ s/ value=\Q$form->{income_accno_id_2}\E/ value=$form->{income_accno_id_2} selected/;
|
||
54e4131e | Moritz Bunkus | $form->{selectIC_expense} =~ s/selected//g;
|
||
5cf977e5 | Moritz Bunkus | $form->{selectIC_expense} =~ s/ value=\Q$form->{expense_accno_id_2}\E/ value=$form->{expense_accno_id_2} selected/;
|
||
54e4131e | Moritz Bunkus | }
|
||
$linkaccounts .= qq| <tr>
|
||||
63024c9f | Moritz Bunkus | <th align=right>| . $locale->text('Revenues EU without UStId') . qq|</th>
|
||
54e4131e | Moritz Bunkus | <td><select name=income_accno_id_2>$form->{selectIC_income}</select></td>
|
||
</tr>
|
||||
<tr>
|
||||
63024c9f | Moritz Bunkus | <th align=right>| . $locale->text('Expenses EU without UStId') . qq|</th>
|
||
54e4131e | Moritz Bunkus | <td><select name=expense_accno_id_2>$form->{selectIC_expense}</select></td>
|
||
</tr>|;
|
||||
if ($form->{id}) {
|
||||
$form->{selectIC_income} =~ s/selected//g;
|
||||
5cf977e5 | Moritz Bunkus | $form->{selectIC_income} =~ s/ value=\Q$form->{income_accno_id_3}\E/ value=$form->{income_accno_id_3} selected/;
|
||
54e4131e | Moritz Bunkus | $form->{selectIC_expense} =~ s/selected//g;
|
||
5cf977e5 | Moritz Bunkus | $form->{selectIC_expense} =~ s/ value=\Q$form->{expense_accno_id_3}\E/ value=$form->{expense_accno_id_3} selected/;
|
||
54e4131e | Moritz Bunkus | }
|
||
$linkaccounts .= qq| <tr>
|
||||
63024c9f | Moritz Bunkus | <th align=right>| . $locale->text('Foreign Revenues') . qq|</th>
|
||
54e4131e | Moritz Bunkus | <td><select name=income_accno_id_3>$form->{selectIC_income}</select></td>
|
||
</tr>
|
||||
<tr>
|
||||
63024c9f | Moritz Bunkus | <th align=right>| . $locale->text('Foreign Expenses') . qq|</th>
|
||
54e4131e | Moritz Bunkus | <td><select name=expense_accno_id_3>$form->{selectIC_expense}</select></td>
|
||
</tr>
|
||||
|;
|
||||
$form->header;
|
||||
print qq|
|
||||
<body>
|
||||
8c7e4493 | Moritz Bunkus | <form method=post action=am.pl>
|
||
54e4131e | Moritz Bunkus | |||
<input type=hidden name=id value=$form->{id}>
|
||||
<input type=hidden name=type value=buchungsgruppe>
|
||||
<table width=100%>
|
||||
<tr>
|
||||
<th class=listtop colspan=2>$form->{title}</th>
|
||||
</tr>
|
||||
<tr height="5"></tr>
|
||||
<tr>
|
||||
<th align=right>| . $locale->text('Buchungsgruppe') . qq|</th>
|
||||
30b38098 | Moritz Bunkus | <td><input name=description size=30 value="| . $form->quote($form->{description}) . qq|"></td>
|
||
54e4131e | Moritz Bunkus | <tr>
|
||
$linkaccounts
|
||||
<td colspan=2><hr size=3 noshade></td>
|
||||
</tr>
|
||||
</table>
|
||||
|;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub save_buchungsgruppe {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
54e4131e | Moritz Bunkus | $form->isblank("description", $locale->text('Description missing!'));
|
||
AM->save_buchungsgruppe(\%myconfig, \%$form);
|
||||
63024c9f | Moritz Bunkus | $form->redirect($locale->text('Accounting Group saved!'));
|
||
54e4131e | Moritz Bunkus | |||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub delete_buchungsgruppe {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
54e4131e | Moritz Bunkus | AM->delete_buchungsgruppe(\%myconfig, \%$form);
|
||
63024c9f | Moritz Bunkus | $form->redirect($locale->text('Accounting Group deleted!'));
|
||
54e4131e | Moritz Bunkus | |||
$lxdebug->leave_sub();
|
||||
}
|
||||
c98a426e | Moritz Bunkus | sub swap_buchungsgruppen {
|
||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
652397fc | Moritz Bunkus | AM->swap_sortkeys(\%myconfig, $form, "buchungsgruppen");
|
||
c98a426e | Moritz Bunkus | list_buchungsgruppe();
|
||
$lxdebug->leave_sub();
|
||||
}
|
||||
54e4131e | Moritz Bunkus | |||
sub add_printer {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
54e4131e | Moritz Bunkus | $form->{title} = "Add";
|
||
8c7e4493 | Moritz Bunkus | $form->{callback} = "am.pl?action=add_printer" unless $form->{callback};
|
||
54e4131e | Moritz Bunkus | |||
&printer_header;
|
||||
&form_footer;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub edit_printer {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
54e4131e | Moritz Bunkus | $form->{title} = "Edit";
|
||
AM->get_printer(\%myconfig, \%$form);
|
||||
&printer_header;
|
||||
$form->{orphaned} = 1;
|
||||
&form_footer;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub list_printer {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
54e4131e | Moritz Bunkus | AM->printer(\%myconfig, \%$form);
|
||
8c7e4493 | Moritz Bunkus | $form->{callback} = "am.pl?action=list_printer";
|
||
54e4131e | Moritz Bunkus | |||
$callback = $form->escape($form->{callback});
|
||||
$form->{title} = $locale->text('Printer');
|
||||
@column_index = qw(printer_description printer_command template_code);
|
||||
$column_header{printer_description} =
|
||||
qq|<th class=listheading width=60%>|
|
||||
. $locale->text('Printer Description')
|
||||
. qq|</th>|;
|
||||
$column_header{printer_command} =
|
||||
qq|<th class=listheading width=10%>|
|
||||
. $locale->text('Printer Command')
|
||||
. qq|</th>|;
|
||||
$column_header{template_code} =
|
||||
qq|<th class=listheading>|
|
||||
. $locale->text('Template Code')
|
||||
. qq|</th>|;
|
||||
$form->header;
|
||||
print qq|
|
||||
<body>
|
||||
<table width=100%>
|
||||
<tr>
|
||||
<th class=listtop>$form->{title}</th>
|
||||
</tr>
|
||||
<tr height="5"></tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table width=100%>
|
||||
<tr class=listheading>
|
||||
|;
|
||||
map { print "$column_header{$_}\n" } @column_index;
|
||||
print qq|
|
||||
</tr>
|
||||
|;
|
||||
foreach $ref (@{ $form->{ALL} }) {
|
||||
$i++;
|
||||
$i %= 2;
|
||||
print qq|
|
||||
<tr valign=top class=listrow$i>
|
||||
|;
|
||||
9dc9cfef | Moritz Bunkus | $column_data{printer_description} = qq|<td><a href="am.pl?action=edit_printer&id=$ref->{id}&callback=$callback">$ref->{printer_description}</td>|;
|
||
54e4131e | Moritz Bunkus | $column_data{printer_command} = qq|<td align=right>$ref->{printer_command}</td>|;
|
||
$column_data{template_code} =
|
||||
qq|<td align=right>$ref->{template_code}</td>|;
|
||||
map { print "$column_data{$_}\n" } @column_index;
|
||||
print qq|
|
||||
</tr>
|
||||
|;
|
||||
}
|
||||
print qq|
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><hr size=3 noshade></td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
8c7e4493 | Moritz Bunkus | <form method=post action=am.pl>
|
||
54e4131e | Moritz Bunkus | |||
<input name=callback type=hidden value="$form->{callback}">
|
||||
<input type=hidden name=type value=printer>
|
||||
<input class=submit type=submit name=action value="|
|
||||
8ec0d29a | Moritz Bunkus | . $locale->text('Add') . qq|">
|
||
54e4131e | Moritz Bunkus | |||
</form>
|
||||
</body>
|
||||
</html>
|
||||
|;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub printer_header {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
54e4131e | Moritz Bunkus | $form->{title} = $locale->text("$form->{title} Printer");
|
||
# $locale->text('Add Printer')
|
||||
# $locale->text('Edit Printer')
|
||||
$form->{printer_description} =~ s/\"/"/g;
|
||||
$form->{template_code} =~ s/\"/"/g;
|
||||
$form->{printer_command} =~ s/\"/"/g;
|
||||
$form->header;
|
||||
print qq|
|
||||
<body>
|
||||
8c7e4493 | Moritz Bunkus | <form method=post action=am.pl>
|
||
54e4131e | Moritz Bunkus | |||
<input type=hidden name=id value=$form->{id}>
|
||||
<input type=hidden name=type value=printer>
|
||||
<table width=100%>
|
||||
<tr>
|
||||
<th class=listtop colspan=2>$form->{title}</th>
|
||||
</tr>
|
||||
<tr height="5"></tr>
|
||||
<tr>
|
||||
<th align=right>| . $locale->text('Printer') . qq|</th>
|
||||
<td><input name=printer_description size=30 value="$form->{printer_description}"></td>
|
||||
<tr>
|
||||
<tr>
|
||||
<th align=right>| . $locale->text('Printer Command') . qq|</th>
|
||||
<td><input name=printer_command size=30 value="$form->{printer_command}"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th align=right>| . $locale->text('Template Code') . qq|</th>
|
||||
<td><input name=template_code size=5 value="$form->{template_code}"></td>
|
||||
</tr>
|
||||
<td colspan=2><hr size=3 noshade></td>
|
||||
</tr>
|
||||
</table>
|
||||
|;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub save_printer {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
54e4131e | Moritz Bunkus | $form->isblank("printer_description", $locale->text('Description missing!'));
|
||
$form->isblank("printer_command", $locale->text('Printer Command missing!'));
|
||||
AM->save_printer(\%myconfig, \%$form);
|
||||
$form->redirect($locale->text('Printer saved!'));
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub delete_printer {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
54e4131e | Moritz Bunkus | AM->delete_printer(\%myconfig, \%$form);
|
||
$form->redirect($locale->text('Printer deleted!'));
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub add_payment {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
54e4131e | Moritz Bunkus | $form->{title} = "Add";
|
||
8c7e4493 | Moritz Bunkus | $form->{callback} = "am.pl?action=add_payment" unless $form->{callback};
|
||
54e4131e | Moritz Bunkus | |||
d8593f08 | Philip Reetz | $form->{terms_netto} = 0;
|
||
$form->{terms_skonto} = 0;
|
||||
$form->{percent_skonto} = 0;
|
||||
dcef6ec7 | Moritz Bunkus | my @languages = AM->language(\%myconfig, $form, 1);
|
||
map({ $_->{"language"} = $_->{"description"};
|
||||
$_->{"language_id"} = $_->{"id"}; } @languages);
|
||||
$form->{"TRANSLATION"} = \@languages;
|
||||
54e4131e | Moritz Bunkus | &payment_header;
|
||
&form_footer;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub edit_payment {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
54e4131e | Moritz Bunkus | $form->{title} = "Edit";
|
||
dcef6ec7 | Moritz Bunkus | AM->get_payment(\%myconfig, $form);
|
||
828bd683 | Moritz Bunkus | $form->{percent_skonto} =
|
||
$form->format_amount(\%myconfig, $form->{percent_skonto} * 100);
|
||||
54e4131e | Moritz Bunkus | |||
&payment_header;
|
||||
$form->{orphaned} = 1;
|
||||
&form_footer;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub list_payment {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
54e4131e | Moritz Bunkus | AM->payment(\%myconfig, \%$form);
|
||
828bd683 | Moritz Bunkus | $form->{callback} = build_std_url("action=list_payment");
|
||
54e4131e | Moritz Bunkus | |||
$callback = $form->escape($form->{callback});
|
||||
$form->{title} = $locale->text('Payment Terms');
|
||||
828bd683 | Moritz Bunkus | @column_index = qw(up down description description_long terms_netto
|
||
terms_skonto percent_skonto);
|
||||
54e4131e | Moritz Bunkus | |||
828bd683 | Moritz Bunkus | $column_header{up} =
|
||
ecbfb57d | Moritz Bunkus | qq|<th class="listheading" align="center" valign="center" width="16">|
|
||
828bd683 | Moritz Bunkus | . qq|<img src="image/up.png" alt="| . $locale->text("up") . qq|">|
|
||
. qq|</th>|;
|
||||
$column_header{down} =
|
||||
ecbfb57d | Moritz Bunkus | qq|<th class="listheading" align="center" valign="center" width="16">|
|
||
828bd683 | Moritz Bunkus | . qq|<img src="image/down.png" alt="| . $locale->text("down") . qq|">|
|
||
. qq|</th>|;
|
||||
54e4131e | Moritz Bunkus | $column_header{description} =
|
||
qq|<th class=listheading>|
|
||||
. $locale->text('Description')
|
||||
. qq|</th>|;
|
||||
$column_header{description_long} =
|
||||
qq|<th class=listheading>|
|
||||
. $locale->text('Long Description')
|
||||
. qq|</th>|;
|
||||
$column_header{terms_netto} =
|
||||
qq|<th class=listheading>|
|
||||
. $locale->text('Netto Terms')
|
||||
. qq|</th>|;
|
||||
$column_header{terms_skonto} =
|
||||
qq|<th class=listheading>|
|
||||
. $locale->text('Skonto Terms')
|
||||
. qq|</th>|;
|
||||
$column_header{percent_skonto} =
|
||||
qq|<th class=listheading>|
|
||||
. $locale->text('Skonto')
|
||||
. qq| %</th>|;
|
||||
$form->header;
|
||||
print qq|
|
||||
<body>
|
||||
<table width=100%>
|
||||
<tr>
|
||||
<th class=listtop>$form->{title}</th>
|
||||
</tr>
|
||||
<tr height="5"></tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table width=100%>
|
||||
<tr class=listheading>
|
||||
|;
|
||||
map { print "$column_header{$_}\n" } @column_index;
|
||||
print qq|
|
||||
</tr>
|
||||
|;
|
||||
828bd683 | Moritz Bunkus | my $swap_link = build_std_url("action=swap_payment_terms");
|
||
my $row = 0;
|
||||
54e4131e | Moritz Bunkus | foreach $ref (@{ $form->{ALL} }) {
|
||
$i++;
|
||||
$i %= 2;
|
||||
print qq|
|
||||
<tr valign=top class=listrow$i>
|
||||
|;
|
||||
828bd683 | Moritz Bunkus | if ($row) {
|
||
my $pref = $form->{ALL}->[$row - 1];
|
||||
$column_data{up} =
|
||||
ecbfb57d | Moritz Bunkus | qq|<td align="center" valign="center" width="16">| .
|
||
828bd683 | Moritz Bunkus | qq|<a href="${swap_link}&id1=$ref->{id}&id2=$pref->{id}">| .
|
||
b8b43236 | Moritz Bunkus | qq|<img border="0" src="image/up.png" alt="| . $locale->text("up") . qq|">| .
|
||
828bd683 | Moritz Bunkus | qq|</a></td>|;
|
||
} else {
|
||||
ecbfb57d | Moritz Bunkus | $column_data{up} = qq|<td width="16"> </td>|;
|
||
828bd683 | Moritz Bunkus | }
|
||
if ($row == (scalar(@{ $form->{ALL} }) - 1)) {
|
||||
ecbfb57d | Moritz Bunkus | $column_data{down} = qq|<td width="16"> </td>|;
|
||
828bd683 | Moritz Bunkus | } else {
|
||
my $nref = $form->{ALL}->[$row + 1];
|
||||
$column_data{down} =
|
||||
ecbfb57d | Moritz Bunkus | qq|<td align="center" valign="center" width="16">| .
|
||
828bd683 | Moritz Bunkus | qq|<a href="${swap_link}&id1=$ref->{id}&id2=$nref->{id}">| .
|
||
b8b43236 | Moritz Bunkus | qq|<img border="0" src="image/down.png" alt="| . $locale->text("down") . qq|">| .
|
||
828bd683 | Moritz Bunkus | qq|</a></td>|;
|
||
}
|
||||
54e4131e | Moritz Bunkus | |||
$column_data{description} =
|
||||
828bd683 | Moritz Bunkus | qq|<td><a href="| .
|
||
build_std_url("action=edit_payment", "id=$ref->{id}", "callback=$callback") .
|
||||
qq|">| . H($ref->{description}) . qq|</a></td>|;
|
||||
$column_data{description_long} =
|
||||
3efd4e7d | Moritz Bunkus | qq|<td>| . H($ref->{description_long}) . qq|</td>|;
|
||
54e4131e | Moritz Bunkus | $column_data{terms_netto} =
|
||
qq|<td align=right>$ref->{terms_netto}</td>|;
|
||||
$column_data{terms_skonto} =
|
||||
qq|<td align=right>$ref->{terms_skonto}</td>|;
|
||||
$column_data{percent_skonto} =
|
||||
828bd683 | Moritz Bunkus | qq|<td align=right>| .
|
||
$form->format_amount(\%myconfig, $ref->{percent_skonto} * 100) .
|
||||
qq|%</td>|;
|
||||
54e4131e | Moritz Bunkus | map { print "$column_data{$_}\n" } @column_index;
|
||
print qq|
|
||||
</tr>
|
||||
|;
|
||||
828bd683 | Moritz Bunkus | $row++;
|
||
54e4131e | Moritz Bunkus | }
|
||
print qq|
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><hr size=3 noshade></td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
8c7e4493 | Moritz Bunkus | <form method=post action=am.pl>
|
||
54e4131e | Moritz Bunkus | |||
<input name=callback type=hidden value="$form->{callback}">
|
||||
9ceafde6 | Moritz Bunkus | <input type=hidden name=type value=payment>
|
||
54e4131e | Moritz Bunkus | |||
<input class=submit type=submit name=action value="|
|
||||
8ec0d29a | Moritz Bunkus | . $locale->text('Add') . qq|">
|
||
54e4131e | Moritz Bunkus | |||
</form>
|
||||
</body>
|
||||
</html>
|
||||
|;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub payment_header {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
54e4131e | Moritz Bunkus | $form->{title} = $locale->text("$form->{title} Payment Terms");
|
||
# $locale->text('Add Payment Terms')
|
||||
# $locale->text('Edit Payment Terms')
|
||||
$form->{description} =~ s/\"/"/g;
|
||||
$form->header;
|
||||
print qq|
|
||||
<body>
|
||||
8c7e4493 | Moritz Bunkus | <form method=post action=am.pl>
|
||
54e4131e | Moritz Bunkus | |||
<input type=hidden name=id value=$form->{id}>
|
||||
<input type=hidden name=type value=payment>
|
||||
<table width=100%>
|
||||
<tr>
|
||||
<th class=listtop colspan=2>$form->{title}</th>
|
||||
</tr>
|
||||
<tr height="5"></tr>
|
||||
<tr>
|
||||
<th align=right>| . $locale->text('Description') . qq|</th>
|
||||
<td><input name=description size=30 value="$form->{description}"></td>
|
||||
<tr>
|
||||
<tr>
|
||||
<th align=right>| . $locale->text('Long Description') . qq|</th>
|
||||
<td><input name=description_long size=50 value="$form->{description_long}"></td>
|
||||
</tr>
|
||||
dcef6ec7 | Moritz Bunkus | |;
|
||
foreach my $language (@{ $form->{"TRANSLATION"} }) {
|
||||
print qq|
|
||||
<tr>
|
||||
<th align="right">| .
|
||||
sprintf($locale->text('Translation (%s)'),
|
||||
$language->{"language"})
|
||||
. qq|</th>
|
||||
<td><input name="description_long_$language->{language_id}" size="50"
|
||||
value="| . Q($language->{"description_long"}) . qq|"></td>
|
||||
</tr>
|
||||
|;
|
||||
}
|
||||
print qq|
|
||||
54e4131e | Moritz Bunkus | <tr>
|
||
<th align=right>| . $locale->text('Netto Terms') . qq|</th>
|
||||
<td><input name=terms_netto size=10 value="$form->{terms_netto}"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th align=right>| . $locale->text('Skonto Terms') . qq|</th>
|
||||
<td><input name=terms_skonto size=10 value="$form->{terms_skonto}"></td>
|
||||
c2def905 | Moritz Bunkus | </tr>
|
||
54e4131e | Moritz Bunkus | <tr>
|
||
<th align=right>| . $locale->text('Skonto') . qq| %</th>
|
||||
<td><input name=percent_skonto size=10 value="$form->{percent_skonto}"></td>
|
||||
c2def905 | Moritz Bunkus | </tr>
|
||
54e4131e | Moritz Bunkus | <td colspan=2><hr size=3 noshade></td>
|
||
</tr>
|
||||
</table>
|
||||
8154c3b1 | Moritz Bunkus | |||
<p>| . $locale->text("You can use the following strings in the long " .
|
||||
"description and all translations. They will be " .
|
||||
"replaced by their actual values by Lx-Office " .
|
||||
"before they're output.")
|
||||
. qq|</p>
|
||||
<ul>
|
||||
<li>| . $locale->text("<%netto_date%> -- Date the payment is due in " .
|
||||
"full")
|
||||
. qq|</li>
|
||||
<li>| . $locale->text("<%skonto_date%> -- Date the payment is due " .
|
||||
"with discount")
|
||||
. qq|</li>
|
||||
<li>| . $locale->text("<%skonto_amount%> -- The deductible amount")
|
||||
. qq|</li>
|
||||
<li>| . $locale->text("<%total%> -- Amount payable")
|
||||
52ee8da6 | Moritz Bunkus | . qq|</li>
|
||
<li>| . $locale->text("<%total_wo_skonto%> -- Amount payable less discount")
|
||||
8154c3b1 | Moritz Bunkus | . qq|</li>
|
||
<li>| . $locale->text("<%invtotal%> -- Invoice total")
|
||||
52ee8da6 | Moritz Bunkus | . qq|</li>
|
||
<li>| . $locale->text("<%invtotal_wo_skonto%> -- Invoice total less discount")
|
||||
8154c3b1 | Moritz Bunkus | . qq|</li>
|
||
<li>| . $locale->text("<%currency%> -- The selected currency")
|
||||
. qq|</li>
|
||||
<li>| . $locale->text("<%terms_netto%> -- The number of days for " .
|
||||
"full payment")
|
||||
. qq|</li>
|
||||
<li>| . $locale->text("<%account_number%> -- Your account number")
|
||||
. qq|</li>
|
||||
<li>| . $locale->text("<%bank%> -- Your bank")
|
||||
. qq|</li>
|
||||
<li>| . $locale->text("<%bank_code%> -- Your bank code")
|
||||
. qq|</li>
|
||||
</ul>|;
|
||||
54e4131e | Moritz Bunkus | |||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub save_payment {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
828bd683 | Moritz Bunkus | $form->isblank("description", $locale->text('Description missing!'));
|
||
$form->{"percent_skonto"} =
|
||||
$form->parse_amount(\%myconfig, $form->{percent_skonto}) / 100;
|
||||
54e4131e | Moritz Bunkus | AM->save_payment(\%myconfig, \%$form);
|
||
$form->redirect($locale->text('Payment Terms saved!'));
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub delete_payment {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
54e4131e | Moritz Bunkus | AM->delete_payment(\%myconfig, \%$form);
|
||
$form->redirect($locale->text('Payment terms deleted!'));
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
828bd683 | Moritz Bunkus | sub swap_payment_terms {
|
||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
828bd683 | Moritz Bunkus | AM->swap_sortkeys(\%myconfig, $form, "payment_terms");
|
||
list_payment();
|
||||
54e4131e | Moritz Bunkus | $lxdebug->leave_sub();
|
||
}
|
||||
e549422f | Moritz Bunkus | sub edit_defaults {
|
||
$lxdebug->enter_sub();
|
||||
# get defaults for account numbers and last numbers
|
||||
AM->defaultaccounts(\%myconfig, \%$form);
|
||||
map { $form->{"defaults_${_}"} = $form->{defaults}->{$_} } keys %{ $form->{defaults} };
|
||||
foreach $key (keys %{ $form->{IC} }) {
|
||||
foreach $accno (sort keys %{ $form->{IC}->{$key} }) {
|
||||
my $array = "ACCNOS_" . uc($key);
|
||||
$form->{$array} ||= [];
|
||||
my $value = "${accno}--" . $form->{IC}->{$key}->{$accno}->{description};
|
||||
push @{ $form->{$array} }, {
|
||||
'name' => $value,
|
||||
'value' => $value,
|
||||
'selected' => $form->{IC}->{$key}->{$accno}->{id} == $form->{defaults}->{$key},
|
||||
};
|
||||
}
|
||||
}
|
||||
$form->{title} = $locale->text('Ranges of numbers and default accounts');
|
||||
$form->header();
|
||||
print $form->parse_html_template('am/edit_defaults');
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub save_defaults {
|
||||
$lxdebug->enter_sub();
|
||||
AM->save_defaults();
|
||||
$form->redirect($locale->text('Defaults saved.'));
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
a7cb4783 | Moritz Bunkus | sub _build_cfg_options {
|
||
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 {
|
||
$lxdebug->enter_sub();
|
||||
a7cb4783 | Moritz Bunkus | _build_cfg_options('dateformat', qw(mm-dd-yy mm/dd/yy dd-mm-yy dd/mm/yy dd.mm.yy yyyy-mm-dd));
|
||
_build_cfg_options('numberformat', qw(1,000.00 1000.00 1.000,00 1000,00));
|
||||
d319704a | Moritz Bunkus | |||
a7403105 | Moritz Bunkus | @formats = ();
|
||
if ($opendocument_templates && $openofficeorg_writer_bin &&
|
||||
$xvfb_bin && (-x $openofficeorg_writer_bin) && (-x $xvfb_bin)) {
|
||||
push(@formats, { "name" => $locale->text("PDF (OpenDocument/OASIS)"),
|
||||
"value" => "opendocument_pdf" });
|
||||
}
|
||||
if ($latex_templates) {
|
||||
push(@formats, { "name" => $locale->text("PDF"), "value" => "pdf" });
|
||||
}
|
||||
push(@formats, { "name" => "HTML", "value" => "html" });
|
||||
if ($latex_templates) {
|
||||
push(@formats, { "name" => $locale->text("Postscript"),
|
||||
"value" => "postscript" });
|
||||
}
|
||||
if ($opendocument_templates) {
|
||||
push(@formats, { "name" => $locale->text("OpenDocument/OASIS"),
|
||||
"value" => "opendocument" });
|
||||
}
|
||||
if (!$myconfig{"template_format"}) {
|
||||
$myconfig{"template_format"} = "pdf";
|
||||
}
|
||||
a7cb4783 | Moritz Bunkus | $form->{TEMPLATE_FORMATS} = [];
|
||
a7403105 | Moritz Bunkus | foreach $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 | |||
AM->printer(\%myconfig, $form);
|
||||
a7cb4783 | Moritz Bunkus | |||
$form->{PRINTERS} = [];
|
||||
f16abae9 | Moritz Bunkus | foreach my $printer (@{$form->{"ALL"}}) {
|
||
a7cb4783 | Moritz Bunkus | push @{ $form->{PRINTERS} }, {
|
||
'name' => $printer->{printer_description},
|
||||
'value' => $printer->{id},
|
||||
'selected' => $printer->{id} == $myconfig{default_printer_id},
|
||||
};
|
||||
f16abae9 | Moritz Bunkus | }
|
||
d319704a | Moritz Bunkus | %countrycodes = User->country_codes;
|
||
081a4f97 | Moritz Bunkus | |||
a7cb4783 | Moritz Bunkus | $countrycodes{""} = "American English";
|
||
$form->{COUNTRYCODES} = [];
|
||||
foreach $countrycode (sort { $countrycodes{$a} cmp $countrycodes{$b} } keys %countrycodes) {
|
||||
push @{ $form->{COUNTRYCODES} }, {
|
||||
'name' => $countrycodes{$countrycode},
|
||||
'value' => $countrycode,
|
||||
'selected' => $countrycode eq $myconfig{countrycode},
|
||||
};
|
||||
d319704a | Moritz Bunkus | }
|
||
a7cb4783 | Moritz Bunkus | $form->{STYLESHEETS} = [];
|
||
foreach $item (qw(lx-office-erp.css Win2000.css)) {
|
||||
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}));
|
||
$form->{CAN_CHANGE_PASSWORD} = $auth->can_change_password();
|
||||
$form->{todo_cfg} = { TODO->get_user_config('login' => $form->{login}) };
|
||||
d319704a | Moritz Bunkus | |||
a7cb4783 | Moritz Bunkus | $form->{title} = $locale->text('Edit Preferences for #1', $form->{login});
|
||
58fcb69f | Stephan Köhler | |||
a7cb4783 | Moritz Bunkus | $form->header();
|
||
9aaca433 | Moritz Bunkus | print $form->parse_html_template('am/config');
|
||
d319704a | Moritz Bunkus | |||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub save_preferences {
|
||||
$lxdebug->enter_sub();
|
||||
$form->{stylesheet} = $form->{usestylesheet};
|
||||
713a6d70 | Moritz Bunkus | TODO->save_user_config('login' => $form->{login}, %{ $form->{todo_cfg} || { } });
|
||
8c7e4493 | Moritz Bunkus | $form->redirect($locale->text('Preferences saved!')) if (AM->save_preferences(\%myconfig, \%$form, $webdav));
|
||
d319704a | Moritz Bunkus | $form->error($locale->text('Cannot save preferences!'));
|
||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub audit_control {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
d319704a | Moritz Bunkus | $form->{title} = $locale->text('Audit Control');
|
||
AM->closedto(\%myconfig, \%$form);
|
||||
$form->header;
|
||||
print qq|
|
||||
<body>
|
||||
8c7e4493 | Moritz Bunkus | <form method=post action=am.pl>
|
||
d319704a | Moritz Bunkus | |||
<table width=100%>
|
||||
<tr><th class=listtop>$form->{title}</th></tr>
|
||||
<tr height="5"></tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table>
|
||||
<tr>
|
||||
<th>| . $locale->text('Close Books up to') . qq|</th>
|
||||
<td><input name=closedto size=11 title="$myconfig{dateformat}" value=$form->{closedto}></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr size=3 noshade>
|
||||
<br>
|
||||
<input type=hidden name=nextsub value=doclose>
|
||||
<input type=submit class=submit name=action value="|
|
||||
. $locale->text('Continue') . qq|">
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
|;
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub doclose {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
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 | }
|
||
$lxdebug->leave_sub();
|
||||
}
|
||||
54e4131e | Moritz Bunkus | sub edit_units {
|
||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
07948c34 | Moritz Bunkus | $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}));
|
||||
af853490 | Moritz Bunkus | @languages = AM->language(\%myconfig, $form, 1);
|
||
eaf4d483 | Moritz Bunkus | @unit_list = sort({ $a->{"sortkey"} <=> $b->{"sortkey"} } values(%{$units}));
|
||
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);
|
||
54e4131e | Moritz Bunkus | $ddbox = AM->unit_select_data($units, undef, 1);
|
||
07948c34 | Moritz Bunkus | my $updownlink = build_std_url("action=swap_units");
|
||
eaf4d483 | 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,
|
||||
"updownlink" => $updownlink }));
|
||||
54e4131e | Moritz Bunkus | |||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub add_unit {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
54e4131e | Moritz Bunkus | $form->isblank("new_name", $locale->text("The name is missing."));
|
||
07948c34 | Moritz Bunkus | $units = AM->retrieve_units(\%myconfig, $form);
|
||
3de3c100 | Moritz Bunkus | $all_units = AM->retrieve_units(\%myconfig, $form);
|
||
$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();
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
af853490 | Moritz Bunkus | sub set_unit_languages {
|
||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
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}"},
|
||||
});
|
||||
}
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
54e4131e | Moritz Bunkus | sub save_unit {
|
||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
07948c34 | Moritz Bunkus | $old_units = AM->retrieve_units(\%myconfig, $form, "resolved_");
|
||
54e4131e | Moritz Bunkus | AM->units_in_use(\%myconfig, $form, $old_units);
|
||
af853490 | Moritz Bunkus | @languages = AM->language(\%myconfig, $form, 1);
|
||
54e4131e | Moritz Bunkus | $new_units = {};
|
||
@delete_units = ();
|
||||
foreach $i (1..($form->{"rowcount"} * 1)) {
|
||||
$old_unit = $old_units->{$form->{"old_name_$i"}};
|
||||
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 | }
|
||
foreach $unit (values(%{$new_units})) {
|
||||
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;
|
||||
}
|
||||
}
|
||||
foreach $unit (values(%{$new_units})) {
|
||||
next if ($unit->{"unchanged_unit"});
|
||||
map({ $_->{"seen"} = 0; } values(%{$new_units}));
|
||||
$new_unit = $unit;
|
||||
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();
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
eaf4d483 | Moritz Bunkus | |||
9d1e95b0 | Thomas Kasulke | sub show_history_search {
|
||
c2def905 | Moritz Bunkus | $lxdebug->enter_sub();
|
||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
c2def905 | Moritz Bunkus | $form->{title} = $locale->text("History Search");
|
||
$form->header();
|
||||
print $form->parse_html_template("common/search_history");
|
||||
$lxdebug->leave_sub();
|
||||
9d1e95b0 | Thomas Kasulke | }
|
||
sub show_am_history {
|
||||
c2def905 | Moritz Bunkus | $lxdebug->enter_sub();
|
||
8c7e4493 | Moritz Bunkus | |||
$auth->assert('config');
|
||||
c2def905 | Moritz Bunkus | my %search = ( "Artikelnummer" => "parts",
|
||
"Kundennummer" => "customer",
|
||||
"Lieferantennummer" => "vendor",
|
||||
"Projektnummer" => "project",
|
||||
"Buchungsnummer" => "oe",
|
||||
"Eingangsrechnungnummer" => "ap",
|
||||
"Ausgangsrechnungnummer" => "ar",
|
||||
"Mahnungsnummer" => "dunning"
|
||||
);
|
||||
my %searchNo = ( "Artikelnummer" => "partnumber",
|
||||
"Kundennummer" => "customernumber",
|
||||
"Lieferantennummer" => "vendornumber",
|
||||
"Projektnummer" => "projectnummer",
|
||||
"Buchungsnummer" => "ordnumber",
|
||||
"Eingangsrechnungnummer" => "invnumber",
|
||||
"Ausgangsrechnungnummer" => "invnumber",
|
||||
"Mahnungsnummer" => "dunning_id"
|
||||
);
|
||||
b4078ad9 | Moritz Bunkus | my $dbh = $form->dbconnect(\%myconfig);
|
||
85a85386 | Moritz Bunkus | |||
b4078ad9 | Moritz Bunkus | my $restriction = qq| AND (| . join(' OR ', map { " addition = " . $dbh->quote($_) } split(m/\,/, $form->{einschraenkungen})) . qq|)| if $form->{einschraenkungen};
|
||
$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};
|
||||
$restriction .= qq| AND employee_id = | . $form->{mitarbeiter} if $form->{mitarbeiter} =~ m/^\d+$/;
|
||||
$restriction .= qq| AND employee_id = | . get_employee_id($form->{mitarbeiter}, $dbh) if $form->{mitarbeiter};
|
||||
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|'|);
|
||||
my @ids = selectall_array_query($form, $dbh, $query);
|
||||
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,
|
||||
uc($sort) . "BY" => $sortby
|
||||
});
|
||||
$dbh->disconnect();
|
||||
41a03969 | Thomas Kasulke | $lxdebug->leave_sub();
|
||
9d1e95b0 | Thomas Kasulke | }
|
||
sub get_employee_id {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | |||
$auth->assert('config');
|
||||
9d1e95b0 | Thomas Kasulke | my $query = qq|SELECT id FROM employee WHERE name = '| . $_[0] . qq|'|;
|
||
my $sth = $_[1]->prepare($query);
|
||||
$sth->execute() || $form->dberror($query);
|
||||
my $return = $sth->fetch();
|
||||
$sth->finish();
|
||||
return ${$return}[0];
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
eaf4d483 | Moritz Bunkus | sub swap_units {
|
||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
eaf4d483 | Moritz Bunkus | my $dir = $form->{"dir"} eq "down" ? "down" : "up";
|
||
07948c34 | Moritz Bunkus | AM->swap_units(\%myconfig, $form, $dir, $form->{"name"});
|
||
eaf4d483 | Moritz Bunkus | |||
edit_units();
|
||||
$lxdebug->leave_sub();
|
||||
b8b43236 | Moritz Bunkus | }
|
||
d38be021 | Udo Spallek | |||
sub add_tax {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
d38be021 | Udo Spallek | $form->{title} = $locale->text('Add');
|
||
8c7e4493 | Moritz Bunkus | $form->{callback} ||= "am.pl?action=add_tax";
|
||
d38be021 | Udo Spallek | |||
_get_taxaccount_selection();
|
||||
$form->header();
|
||||
c2def905 | Moritz Bunkus | |||
d38be021 | Udo Spallek | my $parameters_ref = {
|
||
# ChartTypeIsAccount => $ChartTypeIsAccount,
|
||||
};
|
||||
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 | |||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub edit_tax {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
d38be021 | Udo Spallek | $form->{title} = $locale->text('Edit');
|
||
AM->get_tax(\%myconfig, \%$form);
|
||||
_get_taxaccount_selection();
|
||||
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 = {
|
||
};
|
||||
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 | |||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub list_tax {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
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 | |||
d38be021 | Udo Spallek | # Ausgabe des Templates
|
||
9aaca433 | Moritz Bunkus | print($form->parse_html_template('am/list_tax', $parameters_ref));
|
||
d38be021 | Udo Spallek | |||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub _get_taxaccount_selection{
|
||||
9c548b6f | Moritz Bunkus | $lxdebug->enter_sub();
|
||
d38be021 | Udo Spallek | |||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
d38be021 | Udo Spallek | AM->get_tax_accounts(\%myconfig, \%$form);
|
||
9c548b6f | Moritz Bunkus | map { $_->{selected} = $form->{chart_id} == $_->{id} } @{ $form->{ACCOUNTS} };
|
||
d38be021 | Udo Spallek | |||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub save_tax {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
d38be021 | Udo Spallek | $form->isblank("rate", $locale->text('Taxrate missing!'));
|
||
$form->isblank("taxdescription", $locale->text('Taxdescription missing!'));
|
||||
$form->isblank("taxkey", $locale->text('Taxkey missing!'));
|
||||
a3057d3f | Moritz Bunkus | |||
$form->{rate} = $form->parse_amount(\%myconfig, $form->{rate});
|
||||
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 | |||
AM->save_tax(\%myconfig, \%$form);
|
||||
$form->redirect($locale->text('Tax saved!'));
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub delete_tax {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
d38be021 | Udo Spallek | AM->delete_tax(\%myconfig, \%$form);
|
||
$form->redirect($locale->text('Tax deleted!'));
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
1e251313 | Moritz Bunkus | |||
sub add_price_factor {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
1e251313 | Moritz Bunkus | $form->{title} = $locale->text('Add Price Factor');
|
||
$form->{callback} ||= build_std_url('action=add_price_factor');
|
||||
$form->{fokus} = 'description';
|
||||
$form->header();
|
||||
9aaca433 | Moritz Bunkus | print $form->parse_html_template('am/edit_price_factor');
|
||
1e251313 | Moritz Bunkus | |||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub edit_price_factor {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
1e251313 | Moritz Bunkus | $form->{title} = $locale->text('Edit Price Factor');
|
||
$form->{callback} ||= build_std_url('action=add_price_factor');
|
||||
$form->{fokus} = 'description';
|
||||
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 | |||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub list_price_factors {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
1e251313 | Moritz Bunkus | AM->get_all_price_factors(\%myconfig, \%$form);
|
||
my $previous;
|
||||
foreach my $current (@{ $form->{PRICE_FACTORS} }) {
|
||||
if ($previous) {
|
||||
$previous->{next_id} = $current->{id};
|
||||
$current->{previous_id} = $previous->{id};
|
||||
}
|
||||
$current->{factor} = $form->format_amount(\%myconfig, $current->{factor} * 1);
|
||||
$previous = $current;
|
||||
}
|
||||
$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 | |||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub save_price_factor {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
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!'));
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub delete_price_factor {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
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!'));
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub swap_price_factors {
|
||||
$lxdebug->enter_sub();
|
||||
8c7e4493 | Moritz Bunkus | $auth->assert('config');
|
||
1e251313 | Moritz Bunkus | AM->swap_sortkeys(\%myconfig, $form, 'price_factors');
|
||
list_price_factors();
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
83914eeb | Moritz Bunkus | sub add_warehouse {
|
||
$lxdebug->enter_sub();
|
||||
$auth->assert('config');
|
||||
$form->{title} = $locale->text('Add Warehouse');
|
||||
$form->{callback} ||= build_std_url('action=add_warehouse');
|
||||
$form->{fokus} = 'description';
|
||||
$form->header();
|
||||
print $form->parse_html_template('am/edit_warehouse');
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub edit_warehouse {
|
||||
$lxdebug->enter_sub();
|
||||
$auth->assert('config');
|
||||
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->{fokus} = 'description';
|
||||
$form->header();
|
||||
print $form->parse_html_template('am/edit_warehouse');
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub list_warehouses {
|
||||
$lxdebug->enter_sub();
|
||||
$auth->assert('config');
|
||||
AM->get_all_warehouses(\%myconfig, $form);
|
||||
my $previous;
|
||||
foreach my $current (@{ $form->{WAREHOUSES} }) {
|
||||
if ($previous) {
|
||||
$previous->{next_id} = $current->{id};
|
||||
$current->{previous_id} = $previous->{id};
|
||||
}
|
||||
$previous = $current;
|
||||
}
|
||||
$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');
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub save_warehouse {
|
||||
$lxdebug->enter_sub();
|
||||
$auth->assert('config');
|
||||
$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.'));
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub swap_warehouses {
|
||||
$lxdebug->enter_sub();
|
||||
$auth->assert('config');
|
||||
AM->swap_sortkeys(\%myconfig, $form, 'warehouse');
|
||||
list_warehouses();
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub delete_warehouse {
|
||||
$lxdebug->enter_sub();
|
||||
$auth->assert('config');
|
||||
if (!$form->{confirmed}) {
|
||||
$form->{title} = $locale->text('Confirmation');
|
||||
$form->header();
|
||||
print $form->parse_html_template('am/confirm_delete_warehouse');
|
||||
exit 0;
|
||||
}
|
||||
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.'));
|
||||
}
|
||||
$lxdebug->leave_sub();
|
||||
}
|
||||
sub save_bin {
|
||||
$lxdebug->enter_sub();
|
||||
$auth->assert('config');
|
||||
AM->save_bins(\%myconfig, $form);
|
||||
$form->{callback} .= '&saved_message=' . E($locale->text('Bins saved.')) if ($form->{callback});
|
||||
$form->redirect($locale->text('Bins saved.'));
|
||||
$lxdebug->leave_sub();
|
||||
}
|