Revision 7d2c6995
Von Bernd Bleßmann vor fast 14 Jahren hinzugefügt
SL/IS.pm | ||
---|---|---|
2076 | 2076 |
$pkr->{price} = $form->{"sellprice_$i"}; |
2077 | 2077 |
$pkr->{selected} = ' selected'; |
2078 | 2078 |
} |
2079 |
} |
|
2080 |
|
|
2081 |
if ($selectedpricegroup_id or $selectedpricegroup_id == 0) { |
|
2079 |
} else { |
|
2082 | 2080 |
if ($selectedpricegroup_id ne $pricegroup_old) { |
2083 | 2081 |
if ($pkr->{pricegroup_id} eq $selectedpricegroup_id) { |
2084 | 2082 |
$pkr->{selected} = ' selected'; |
2085 | 2083 |
} |
2086 |
} elsif (($price_new != $form->{"sellprice_$i"}) and ($price_new ne 0)) { |
|
2084 |
} elsif ( ( $form->parse_amount($myconfig, $price_new) |
|
2085 |
!= $form->parse_amount($myconfig, $form->{"sellprice_$i"})) |
|
2086 |
and ($price_new ne 0)) { |
|
2087 | 2087 |
if ($pkr->{pricegroup_id} == 0) { |
2088 | 2088 |
$pkr->{price} = $form->{"sellprice_$i"}; |
2089 | 2089 |
$pkr->{selected} = ' selected'; |
bin/mozilla/is.pl | ||
---|---|---|
266 | 266 |
|
267 | 267 |
$form->{"qty_$i"} = $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty); |
268 | 268 |
|
269 |
$form->{"sellprice_pg_$i"} = join ('--', $form->{"sellprice_$i"}, $form->{"pricegroup_id_$i"}); |
|
270 |
|
|
269 | 271 |
$form->{rowcount} = $i; |
270 | 272 |
|
271 | 273 |
} |
Auch abrufbar als: Unified diff
Preis überschreiben bei Preisgruppe. Fix f. Bug 1185
Aber: im Code f. die Preisgruppen sind noch mehr Bugs,
da muss nochmal umfassender nachgeschaut werden.