Commit graph

489 commits

Author SHA1 Message Date
Juerd Waalboer
5e5c27a203 Remove dead code
As a side effect of a7a5f14e, "123 x <product>" (with a space between the
number and the operator) is no longer supported. Breaking that was
unintentional, but since it was an undocumented feature and unintuitive
hack anyway, the feature won't come back.

When it still worked, it was implemented by *converting* a raw amount
(withdrawal or unlisted product, which you could still enter as just a
number -- since the aforementioned commit you need to be explicit and
use `withdraw` or `unlisted`) into a stub that would finally apply a
repetition when adding something else.
2023-01-29 22:52:02 +01:00
Juerd Waalboer
af5567da8b Typo in documentation 2023-01-29 19:28:08 +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
147bfe7045 Make error message fit in 80 chars 2023-01-25 04:34:17 +01:00
Juerd Waalboer
8bbca724a3 Document statiegeld_tokens 2023-01-24 21:45:05 +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
8a3a76e0d0 statiegeld_tokens: implement expiry
Done in the _write routine, which means tokens will not expire the exact
moment they should, but the first transaction after that. And if that
transaction is done by the user, they're in luck as expiry checking
happens after using them tokens.
2023-01-20 18:07:41 +01:00
Juerd Waalboer
10d1965bf0 Add 'void' command 2023-01-19 05:26:58 +01:00
Juerd Waalboer
f479060576 Fix bug: ->changed is getter only, not a setter 2023-01-19 05:24:50 +01:00
Juerd Waalboer
e1aed5cbdf statiegeld: document deposit command 2023-01-19 03:35:14 +01:00
Juerd Waalboer
32470ff92b Extra newline 2023-01-19 03:16:57 +01:00
Juerd Waalboer
a2fd94241a statiegeld: better prompt hijacking 2023-01-19 03:05:36 +01:00
Juerd Waalboer
2bbaf20366 Improve text in idle message 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
4d5eae3ad7 statiegeld_tokens: new token format, rename id to token_type
Added some fields for debugging and maybe future use.
2023-01-19 01:34:12 +01:00
Juerd Waalboer
bd0ebce71a Fix undef warning 2023-01-18 03:28:22 +01:00
Juerd Waalboer
b19609c6f6 Show deposit tokens on user info
Also, singular without s
2023-01-17 20:29:17 +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
fdd098e215 Full stop 2023-01-16 05:00:17 +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
dbb11b5898 Document hook_checkout_prepare 2023-01-16 04:00:20 +01:00
Juerd Waalboer
6180bf6ea5 Add new hook_checkout_prepare, rollback earlier change of hook_checkout
In hindsight, it was a bad idea to allow manipulating the cart (entries)
in hook_checkout, because that hook is used by the `log` plugin. You now
get unused entries in the log.

Although that plugin should maybe have used hook_checkout_done, existing
log file readers (including scripts) and custom plugins may depend on
the CHECKOUT items in the log being before the BALANCE items.
2023-01-16 03:52:00 +01:00
Juerd Waalboer
50d93b3f6e v3.7
New core functionality (commit 11ca0a86) warrants new version number.
2023-01-16 03:18:06 +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
0b43e5d7a4 undo: recent transaction list as part of prompt
This hides it when the command is given as a oneliner ("undo 123\n", as
opposed to "undo\n" + "123\n").
2023-01-16 03:06:48 +01:00
Juerd Waalboer
11ca0a86b2 Allow cart manipulation during hook_checkout 2023-01-16 03:05:03 +01:00
Juerd Waalboer
6089e212dc Release locks on abort
Fixes deadlock if hook_checkout returns ABORT.

One of these days I want to implement the abort mechanism through
exceptions, even though that means handling it explicitly in more
places. Or maybe *because* that means handling it explicitly in more
places.
2023-01-16 01:17:33 +01:00
Juerd Waalboer
094fbcb1db Fix bug/warning
Apparently nobody uses "return ABORT;" in a hook, because it emitted an
ugly warning. main::abort() takes a list, so destructuring the message
to a scalar was wrong.
2023-01-16 00:51: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
Juerd Waalboer
c667fa676d Document percentage addon products 2023-01-05 20:47:00 +01:00
Juerd Waalboer
d4c6c1be35 Replace add_info() with extra parameter for add_contra()
add_info was a thing that grew organically to account for hidden
contras, but just wasn't right. The assumption was that if the
contra account is hidden, the contra itself should be hidden from
view - the sign of the amount would be wrong anyway.

The correct approach, however, would of course to flip the sign so it
matches the user's perspective, and to add a separate description string
to display to the user.
2023-01-05 20:46:46 +01:00
Juerd Waalboer
7c05b3108c New feature: percentage addons (discounts etc) 2023-01-05 19:42:34 +01:00
Juerd Waalboer
eb55aa0eb5 revbank.products: trim whitespace, document comment/whitespace rules
Beginning of a line was already trimmed, courtesy of the whitespace
split. The end of a line was previously not trimmed because of the limit
for split.
2022-12-26 04:54:41 +01:00
Juerd Waalboer
7d5018a5ef Remove plugins/revspace_bounties
Replaced by 3 lines in revbank.products:

BOUNTY1  -10.00@-expenses/bounties  Bedankt voor het vegen/stofzuigen
BOUNTY2  -10.00@-expenses/bounties  Bedankt voor het afvoeren van het afval
BOUNTY3  -25.00@-expenses/bounties  Bedankt voor het dweilen
2022-12-25 05:50:44 +01:00
Juerd Waalboer
a444512bf1 Enable Perl warnings for plugins 2022-12-25 05:39:15 +01:00
Juerd Waalboer
da523f8daa v3.6: products overhaul
New features, new documentation.
2022-12-25 05:32:00 +01:00
Juerd Waalboer
e748566913 Silence warnings if there are <10 transactions 2022-12-25 02:10:22 +01:00
Juerd Waalboer
8998566068 Remove "pfand" plugin
Originally written as a proof of concept demo. Reportedly it's broken
and cumbersome to use anyway, because of the external config file.

I don't think anyone is actually using this right now.
2022-12-25 02:10:18 +01:00
Juerd Waalboer
c34caf434a Fix bug: "split" ignored quantity set by "repeat" or "plus" plugin 2022-12-22 19:37:57 +01:00
Juerd Waalboer
b9c91c0054 Formatting
One more character so values >= 100.00 don't mess up the columns, at
least up to 999.99. I hope nobody's actually parsing the logs with fixed
character offsets.
2022-12-13 21:39:57 +01:00
Juerd Waalboer
a2e0512ff5 Add help2 line for log 2022-11-14 20:34:40 +01:00
Juerd Waalboer
ad168a87e1 Tab completion for log command 2022-11-01 18:51:52 +01:00
Juerd Waalboer
50675af660 Case insensitive sort 2022-11-01 04:50:52 +01:00
Juerd Waalboer
4613a14a9f pager: don't scroll down for non-log
+ some code moved around in TextEditor
2022-11-01 04:48:49 +01:00
Juerd Waalboer
a18ef9939a Sort shame 2022-11-01 04:45:59 +01:00