v6.0.3: add warning for duplicates in revbank.products
This commit is contained in:
parent
4b6fa729ff
commit
1105fbc3b2
2 changed files with 15 additions and 11 deletions
|
@ -91,16 +91,20 @@ sub read_products() {
|
|||
next;
|
||||
}
|
||||
}
|
||||
$products{$_} = {
|
||||
id => $ids[0],
|
||||
price => $sign * $price,
|
||||
percent => $percent,
|
||||
description => $desc,
|
||||
contra => $contra || $default_contra,
|
||||
_addon_ids => \@addon_ids,
|
||||
line => $linenr,
|
||||
tags => \%tags,
|
||||
} for @ids;
|
||||
for my $id (@ids) {
|
||||
warn "Product '$id' redefined at $filename line $linenr (original at line $products{$id}{line}).\n" if exists $products{$id};
|
||||
|
||||
$products{$id} = {
|
||||
id => $ids[0],
|
||||
price => $sign * $price,
|
||||
percent => $percent,
|
||||
description => $desc,
|
||||
contra => $contra || $default_contra,
|
||||
_addon_ids => \@addon_ids,
|
||||
line => $linenr,
|
||||
tags => \%tags,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
PRODUCT: for my $product (values %products) {
|
||||
|
|
2
revbank
2
revbank
|
@ -16,7 +16,7 @@ use RevBank::Messages;
|
|||
use RevBank::Cart;
|
||||
use RevBank::Prompt;
|
||||
|
||||
our $VERSION = "6.0.2";
|
||||
our $VERSION = "6.0.3";
|
||||
our %HELP1 = (
|
||||
"abort" => "Abort the current transaction",
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue