Website Wishlist Save For Later
Multiple named wishlists, share links, back-in-stock alerts and move-to-cart for eCommerce
Website Wishlist Save For Later adds a full save-for-later layer on top of Odoo's native single flat wishlist, without touching or duplicating it. Shoppers, logged-in or anonymous, organise saved products into as many named lists as they like, share a list read-only with anyone, get alerted the moment an out-of-stock item comes back, and move a whole list into their cart in one click.
Key Features
Multiple named lists per shopper
product.wishlist.list lets a logged-in customer or an anonymous guest (identified by an opaque session token) keep any number of named lists, each with its own is_default flag so Save for Later always knows where the next product goes.
Shareable read-only links
Every list carries a unique, resettable share_token and computed share_url; toggling is_public lets anyone with the link browse the list read-only, no login required, and action_reset_share_token revokes and reissues a fresh token.
Back-in-stock detection and notice
cron_refresh_stock_status rescans every saved item's stock_status; the moment an out-of-stock item becomes available again the item is flagged needs_back_in_stock_notice and, when the list belongs to a real customer, a chatter notification is posted via action_notify_back_in_stock.
Move to cart, one item or a whole list
action_move_to_cart moves each movable (in-stock) item into the shopper's current sale.order as a real order line and removes it from the list, skipping out-of-stock items instead of failing the whole batch; action_move_all_to_cart runs it for an entire list at once.
Duplicate-safe saving
add_to_list treats re-saving a product already on a list as a no-op (only refreshing its note) instead of creating a duplicate row, backed by a model constraint that blocks the same product appearing twice on one list.
Guest-to-customer list merge
action_merge_guest_into_partner merges an anonymous visitor's list into the logged-in customer's default list on login, de-duplicating against what the customer already has via plan_guest_merge, then archives the guest list.
Framework-free wishlist engine
Duplicate detection, stock-status derivation, back-in-stock detection, share-token generation and the guest-merge plan all live in services/wishlist_logic.py, plain Python independently unit tested without a database.
On-demand default list resolution
get_or_create_default_list finds or creates an owner's default list the first time it is needed, so even a customer or guest session created after install always gets a working list rather than relying solely on a post_init_hook.
Use Cases
Screenshots
01 Wishlist List
02 Wishlist Form
03 Wishlist Item List
Why Choose This Module
Because duplicate detection, stock-status derivation, back-in-stock notification and the guest-to-customer merge plan all live in a framework-free, independently unit-tested Python engine, this module adds a genuinely richer save-for-later layer next to Odoo's native wishlist rather than a shallow re-skin, while every model and controller stays a thin, real, working layer on top of it.
Specifications
- Compatible: Odoo 18.0 / 19.0
- License: OPL-1
- Languages: 35+
- Author: Pokutsoft
- Dependencies: website_sale
- Support: odoo@gencbaris.com
- Update date: 2026-07-13
| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Odoo Apps Dependencies |
•
eCommerce (website_sale)
• Website (website) • Discuss (mail) • Invoicing (account) |
| Lines of code | 1247 |
| Technical Name |
website_wishlist_save_for_later |
| License | OPL-1 |
| Website | https://pokutsoft.com/ |
Odoo Proprietary License v1.0 This software and associated files (the "Software") may only be used (executed, modified, executed after modifications) if you have purchased a valid license from the authors, typically via Odoo Apps, or if you have received a written agreement from the authors of the Software (see the COPYRIGHT file). You may develop Odoo modules that use the Software as a library (typically by depending on it, importing it and using its resources), but without copying any source code or material from the Software. You may distribute those modules under the license of your choice, provided that this license is compatible with the terms of the Odoo Proprietary License (For example: LGPL, MIT, or proprietary licenses similar to this one). It is forbidden to publish, distribute, sublicense, or sell copies of the Software or modified copies of the Software. The above copyright notice and this permission notice must be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please log in to comment on this module