Daily updates from Odoo
Wednesday, May 15, 2019
2 changes
Resolved issues and error corrections
The payment form library was updated to better handle mobile browser input events. This helps prevent issues where card expiry dates were formatted incorrectly, reducing cases where customers could get blocked during checkout.
Original PR description
After deep comparison between majors versions, it seems that there is no breaking changes and this fix a lot of issues in mobile. e.g.: Before this update, the validity date wasn't correctly formated and the end user had to enter the right format himself. Some users were blocked at the payment process. The root cause for this issue is the inconsistent list of native events triggered by mobile devices. Note that this library is only used for acquirer forms (S2S Form Template) when "Redirection to the acquirer website" is checked (payment_flow == 's2s') in the acquirer configuration. We are aware that this library is deprecated and should be replaced in the future. See https://github.com/stripe/jquery.payment opw-1986545 closes #33356
Odoo now shows users notifications again when their connection to the server is lost or restored. This helps users understand temporary service interruptions and reduces confusion when the system is unavailable.
Original PR description
The disconnected/connected notifications were broken due to changes in the way the Notification template was loaded. We need it loaded in assets as we cannot load it afterward if the server is disconnected. This was broken by : https://github.com/odoo/odoo/pull/32793 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr