Monday, February 2, 2026
2 changes · saas-19.1
New functionality added to Odoo
This update adds support for processing payments through Mollie payment terminals directly in the Point of Sale (POS) system. Users can link their Mollie account and the system will initiate payments via the Mollie API, with automatic notifications upon completion. Refunds are also supported without requiring customers to re-enter their card details.
Original PR description
This commit adds the `pos_mollie` module which implements payments via Mollie payment terminals in the POS. Since Mollie was already supported for online payments via the `payment_mollie` module, this module depends on it so they can share the same API credentials. The user links their Mollie account via an API key, and provides the ID of their payment terminal in the payment method. The Odoo DB can then initiate payments on the terminal via the Mollie API. When the payment completes, Mollie calls a webhook endpoint on the Odoo DB which then notifies the POS of the outcome. Refunds are also supported, they do not require the client to present their card again, the payment is simply reversed. task-5474076 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#242836
This update allows the POS system to automatically send SMS or WhatsApp messages to customers regarding their order status – from initial placement to completion. This enhances customer communication and provides real-time updates, improving the overall customer experience. The changes were made to support both WhatsApp and SMS notifications for self-service orders.
Original PR description
… to warn the client about order status This task aims to provide a solution for communicating the status of various customer orders. Now, the POS can send an SMS or a WhatsApp message when an order at the self-service is placed, either through WhatsApp, SMS, or both. When the order is completed, the customer can also be notified. task : 5246552 enterprise pr : https://github.com/odoo/enterprise/pull/99318 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#235389