Commit graph

26 commits

Author SHA1 Message Date
Juerd Waalboer
a450aa7468 Use read_products in new namespace
(Would also work without this change, but indirectly through the
products plugin which imports this symbol)
2024-12-25 23:50:03 +01:00
Juerd Waalboer
b416c7be3e statiegeld: fix warning for undef $input on ^D 2024-02-11 04:14:05 +01:00
Juerd Waalboer
6aa33beedb statiegeld: fix warning 2024-01-18 18:16:26 +01:00
Juerd Waalboer
338ea37127 statiegeld: fix typo in ansi escape 2023-06-10 22:26:21 +02:00
Juerd Waalboer
a00384bb0e statiegeld: repeat color code on 2nd line of prompt
Found in interaction with `idle` plugin, which causes redraw.
2023-06-10 22:23:31 +02:00
Juerd Waalboer
701f9541cd Fix bug: statiegeld_ignore would stay true for market products 2023-05-13 01:12:11 +02:00
Juerd Waalboer
d33cc1fa18 Spelling 2023-04-09 22:40:35 +02:00
Juerd Waalboer
ff4ffd16f8 statiegeld: use correct id for deduplication key
Bug introduced in fffb2d72
2023-02-13 02:43:24 +01:00
Juerd Waalboer
1ecb2286df Fix comment 2023-02-12 22:09:24 +01:00
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
Juerd Waalboer
10eeabf707 Hidden feature for buying products via statiegeld terminal 2023-01-30 06:11:36 +01:00
Juerd Waalboer
a555c1ddf1 statiegeld: increase quantity instead of adding more of the same 2023-01-30 05:00:43 +01:00
Juerd Waalboer
7213b0a332 statiegeld: change prompt 2023-01-26 00:17:13 +01:00
Juerd Waalboer
44d0cb9b69 Don't repeat same description for statiegeld-only products 2023-01-25 04:37:17 +01:00
Juerd Waalboer
8c94410924 Move and extend statiegeld documentation 2023-01-20 18:42:04 +01:00
Juerd Waalboer
4603a1569f statiegeld: don't allow manual entry of hidden addons 2023-01-20 18:37:00 +01:00
Juerd Waalboer
e1aed5cbdf statiegeld: document deposit command 2023-01-19 03:35:14 +01:00
Juerd Waalboer
a2fd94241a statiegeld: better prompt hijacking 2023-01-19 03:05:36 +01:00
Juerd Waalboer
16d530ae16 Allow hook_prompt to mutate the prompt, like before, and use that
This functionality was accidentally broken by eed0db78

Also: ignore readline terminal sequence (\x01...\x02) in detection of ">"
2023-01-19 03:04:35 +01:00
Juerd Waalboer
5e91aaff3d statiegeld: support statiegeld-only products 2023-01-19 01:51:40 +01:00
Juerd Waalboer
5b0c85d770 Refactor read_products and its callers
- Promote to public function since it's used in other plugins anyway
- Move resolving of addons to read_products (print errors immediately)
- Cache product list based on mtime; mostly to reduce the amount of spam
  from errors as performance was never an issue.
- Cache product object in cart entry, so statiegeld_tokens plugin
  doesn't have to do the lookup all over again.
2023-01-17 20:28:35 +01:00
Juerd Waalboer
d44654e98a statiegeld_tokens: reuse code
Since that logic was factored into its own sub and is basically the same
as what was used here, let's use it here too.

This is still somewhat duplicated functionality from products::command.
Should adding addons be done in _read_products instead?
2023-01-16 04:53:50 +01:00
Juerd Waalboer
e17c092efe Allow statiegeld return via deposit command
May come in handy if there the bottle return revbank machine is dead.
2023-01-16 04:38:10 +01:00
Juerd Waalboer
ca03cb95d4 New plugin statiegeld_tokens
Activating statiegeld_tokens will limit the use of the statiegeld plugin
for container deposit refunds to what was bought at this venue.

Still needs documentation.

Changes to 'statiegeld' and 'undo' were made to support the new
plugin, specifically:

- metadata (attributes) added in $cart->add, for the statiegeld_tokens
  plugin to use.
- statiegeld plugin now shares a global variable (configuration).
- undo can now be rolled back during hook_checkout.
2023-01-16 03:08:42 +01:00
Juerd Waalboer
2836a5a671 Make GitHub do syntax highlighting 2023-01-09 03:43:39 +01:00
Juerd Waalboer
83c008dd61 Add 'statiegeld' plugin 2023-01-08 22:36:37 +01:00