[FEATURE] Packing List Improvements #207
Replies: 8 comments
|
I would also add a possible optimization for the packing list: with version 2.7.1 i can import directly from the trip page, using a external csv. Once i create the list in the trip i cannot move it to another one. I can create a template and use it wherever, but it will be a manual insert for all the data.
I don't know if those will require a complete rework of the function, I'm happy anyway with how it's been evolving :) |
|
Also to add on to this feature request, it would be nice to have private and public categories. This would allow all users in the trip to be able to add to both a hidden list that only they can see for more personal items (personal hygiene, medications) as well as contribute to public lists (food, games, equipment). I think utilizing the existing user selection functionality would be great so you can have a private category that is shared with the selected users (good for couples or friends sharing things), and then the public category that is shared with everyone. |
|
Currently, packing list items only support a single weight field (likely total weight). There's no way to specify a quantity of items and their unit weight separately, which limits accurate tracking for multiples. Best regards, |
|
Hey all, quick update on what landed in the upcoming v2.9.0: Done:
Not planned:
Thanks for all the feedback! |
|
Hello, I'm still quite a beginner using this tool, so please forgive any mistakes (v.3.0.21). I can create a packing list as a template for a trip – great! Unfortunately, and this is my issue, the bag assignments and weights aren't saved. The reason is that I very often pack the same items in the same bags and, of course, forget what goes where. I'd like to put the following suggestions up for discussion: i) So it would be fantastic if there were an option to save this information (weight, bag) in the template. I look forward to hearing your feedback on this. Great Tool! @mauriceboe I see the discussion is closed, should I open a new one or what would you prefer? |
|
Confirming @effectpears' report on v3.4.1 — copies still lose weights and bag assignments — with the code paths, in case it helps to pin it down. Also one correction on bag weight limits. 1. Templates and "Copy to my list" drop weight and bag
CREATE TABLE packing_template_items (
id INTEGER PRIMARY KEY AUTOINCREMENT,
category_id INTEGER,
name TEXT,
sort_order INTEGER
);So "save as template" discards the data before it is ever stored — applying the template cannot restore what was never written. The per-item path has the same gap. return createItem(tripId, {
name: item.name,
category: item.category || undefined,
quantity: item.quantity,
visibility: 'personal'
}, userId);
Worth noting: Why this matters for groups: the natural workflow is "one person curates the list, everyone copies it and adjusts". We tried exactly that for a three-person trip and ended up re-entering 50 weights per traveller by hand, because every copy arrives empty. The alternative — keeping one shared list — doesn't work either, since every item then counts towards everyone's bag (see 3.). 2. Bag weight limits are not reachable from the UI@mauriceboe wrote above that bag weight tracking "was already available (weight limits per bag)". The storage and the API are, but there is no way to enter a limit in the interface. The column exists and f = e.weight_limit_grams || Math.max(...)But the only bag-related strings in the client bundle are We set ours through the API; the fill bar then works correctly, which suggests this is a missing form field rather than missing functionality. 3. Filed separatelyWhile testing the above we found that items shared through "Shared with…" are added to the recipient's bag total although the owner carries them. That one is a straightforward bug rather than a feature request, so I've opened it as its own issue. |
|
reopen |
|
@singularix-maker's report is accurate, and two of the three points are in #1773. Copies keep their weight. The bag needed more thought than the weight. Bags belong to the trip but can be assigned to a person, so inheriting the original's bag would drop your copy into someone else's luggage and inflate their total. A copy now keeps the bag only when nobody owns it, or when you're one of its members. The weight always comes along. Bag weight limits can be entered now. The column, the contract and the route existed, but there was no field to type a limit into — the only way to record one was to write it into the bag name, where nothing can act on it. Desktop and mobile both take it in kg now and store it in grams. While adding the field I found the fill-bar formula in three places, and the copy in the bag modal had been written without the limit — so on a window narrower than Deliberately still open: Templates still lose weight and quantity — Tare weight — the checkbox in the first post ("if a bag weighs 1.5 kg that would be accounted for") was about the weight of the empty bag, which has never existed. A limit isn't the same thing, so that one isn't done. @MartinFerenec #1767 — the symptom is real, but the fix suggested there would break the shared total: On (ii), the weight counting unchecked items: that's intended. The number is what your luggage will weigh, so it has to include what you haven't packed yet — otherwise it reads 0 kg exactly when you're planning. A second "packed / total" figure is the thing worth adding. Closing this one again — the remaining items are tracked separately. |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Bags in Packing lists should be improved:
Additional requests from comments:
All reactions