revbank/revbank.plugins
Juerd Waalboer fffb2d72e9 Fix deduplication bug, refactor deduplication to own plugin
(Bumps version to 3.8 because admins should update the plugin list.)

Deduplication didn't work on quantified additions, i.e. if you added
"20x clubmate" when there was already clubmate in the cart, it would add
just ONE item, and have a lingering message that the next thing would be
multiplied by 20.

This old bug was especially annoying if there is a barcode "20x
clubmate" to scan 20 bottles (which is the size of a crate), and this is
repeated.

The fix also uncovered another bug: newly added entries were selected
too early. There are two hooks, hook_add_entry and hook_added_entry, and
of course the selection should happen in between, not before the former.
No entry in UPGRADING.md, because I think it is extremely unlikely that
any plugin author will have used the selection feature yet, which is
very new.
2023-02-12 17:53:14 +01:00

39 lines
914 B
Text

# Order matters. Read RevBank::Plugins for documentation.
# First, plugins with no commands, or very specific commands
log # first, so that the registrations of other plugins are logged
beep
sigint
restart
help
idle
undo
give
grandtotal
take
split
#cash # cash tracking also requires deposit_methods to make sense
#skim # cash tracking also requires deposit_methods to make sense
stock
unlisted
#warnings
adduser
edit
beep_terminal
dinnerbonus
# Then, plugins that apply heuristics
repeat
deduplicate # wants to be after 'repeat'
statiegeld
statiegeld_tokens
products # matches product IDs (barcodes)
market # also matches product IDs
withdraw # matches amounts
users # matches usernames
deposit # wants to be after 'users'
deposit_methods # Extra options for 'deposit'. Edit/configure first!
#deposit_iban_qr # QR code display, edit/configure first! (needs qrencode(1))