Revision 87eebe6c
Von Niclas Zimmermann vor mehr als 11 Jahren hinzugefügt
sql/Pg-upgrade2/steuerfilterung.pl | ||
---|---|---|
15 | 15 |
my $categories; |
16 | 16 |
my $tax_id; |
17 | 17 |
|
18 |
if ( $::form->{'continued'} ) {
|
|
18 |
if ( $::form->{continued_tax} ) {
|
|
19 | 19 |
my $update_query; |
20 | 20 |
foreach my $i (1 .. $::form->{rowcount}) { |
21 | 21 |
$tax_id = $::form->{"tax_id_$i"}; |
templates/webpages/dbupgrade/steuerfilterung.html | ||
---|---|---|
6 | 6 |
|
7 | 7 |
<form name="Form" method="post" action="login.pl"> |
8 | 8 |
<input type="hidden" name="action" value="login"> |
9 |
<input type="hidden" name="continued" value="1"> |
|
9 |
<input type="hidden" name="continued_tax" value="1">
|
|
10 | 10 |
|
11 | 11 |
<p>[% 'From this version on a new feature is available.' | $T8 %]</p> |
12 | 12 |
<p>[% 'You can choose account categories for taxes. Depending on these categories taxes will be displayed for transfers in the general ledger or not.' | $T8 %]</p> |
Auch abrufbar als: Unified diff
Konflikt zwischen zwei Upgrade-Scripten beheben
Im template erzeugnisnummern.html vom Upgrade erzeugnisnummern.pl
wurde eine Form-Variable continued gesetzt, die auch vom Upgrade
steuerfilterung.pl benutzt wurde. Dadurch kam es zu Problemen.
Die Variable 'continued' wurde nun in steuerfilterung umbenannt.
Behebt Bug #2252.