openepaperlink: keep deleted products linked
This allows commenting a product in revbank.products to temporarily make it unavailable, which is useful in the workflow that @PI4DEC wants.
This commit is contained in:
parent
d703638e68
commit
65e387d84b
2 changed files with 4 additions and 17 deletions
|
@ -348,9 +348,9 @@ my @lines = slurp ".revbank.oepl";
|
||||||
my %new_hwtype;
|
my %new_hwtype;
|
||||||
|
|
||||||
my $products = read_products;
|
my $products = read_products;
|
||||||
$products->{_DELETED_} = {
|
$products->{_NOTFOUND_} = {
|
||||||
id => "_DELETED_",
|
id => "_NOTFOUND_",
|
||||||
description => "(deleted)",
|
description => "(product unavailable)",
|
||||||
price => "999.99",
|
price => "999.99",
|
||||||
tag_price => "999.99",
|
tag_price => "999.99",
|
||||||
};
|
};
|
||||||
|
@ -361,10 +361,7 @@ for my $line (@lines) {
|
||||||
$product_id or next;
|
$product_id or next;
|
||||||
(grep { $_ eq $product_id or $_ eq $mac } @ARGV) or next if @ARGV;
|
(grep { $_ eq $product_id or $_ eq $mac } @ARGV) or next if @ARGV;
|
||||||
|
|
||||||
my $product = $products->{$product_id} or do {
|
my $product = $products->{$product_id} || $products->{_NOTFOUND_};
|
||||||
warn "Product not found ($product_id)\n";
|
|
||||||
next;
|
|
||||||
};
|
|
||||||
|
|
||||||
$hwtype ||= $new_hwtype{$mac} = get_hwtype($mac) || next;
|
$hwtype ||= $new_hwtype{$mac} = get_hwtype($mac) || next;
|
||||||
my $fn = draw($product, $hwtype, !!@ARGV) or next;
|
my $fn = draw($product, $hwtype, !!@ARGV) or next;
|
||||||
|
|
|
@ -78,18 +78,8 @@ sub hook_products_changed($class, $changes, $mtime, @) {
|
||||||
$product2mac{$id} or next;
|
$product2mac{$id} or next;
|
||||||
|
|
||||||
push @macs, $product2mac{$id};
|
push @macs, $product2mac{$id};
|
||||||
$deleted{$id} = 1 if not defined $new;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (%deleted) {
|
|
||||||
rewrite $fn, sub($line) {
|
|
||||||
my ($mac, $product_id, $hwtype) = split " ", $line;
|
|
||||||
|
|
||||||
return "$mac _DELETED_ $hwtype\n" if $deleted{$product_id};
|
|
||||||
return $line;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
@macs or return;
|
@macs or return;
|
||||||
_run @macs;
|
_run @macs;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue