Tuesday, October 15, 2019
6 changes · master
Resolved issues and error corrections
The Accounting app now uses the term “Vendors” instead of “Suppliers” in the affected partner view. This aligns the wording with the existing menu label, making navigation and terminology more consistent for users.
Original PR description
For more consistency, as the menu item calling the corresponding action is named "Vendors".
This fix removes an unwanted gap that appeared before sale order lines when previewing quotations on the website. The spacing behavior is now limited to website edit mode, so customer-facing previews display more cleanly without affecting editing tools.
Original PR description
[FIX] website: oe_no_empty only in edit mode Test case; The user as edition rights on the website Install quotation builder Have a sale order with many lines Click preview > you end up on the portal view Before this commit, there was a blank space just before the sale order lines per se This was because the sale order's lines website description were in the dom and took some fixed space, which is a feature meant for the edit mode by using the class oe_no_empty After this commit, we restrict the effect of that class concerning the fixed height only to edit mode There is no more gaps in the sale order preview OPW 2082267 Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#38396
Portal messages posted by portal users now send email notifications from the user's own partner email address instead of OdooBot. This makes recipient communications clearer and avoids confusion about who sent the message.
Original PR description
[FIX] portal: portal send mail with right email address Go on the portal with a portal user Drop a message in the chatter The message is logged in the chatter from the right partner Before this commit however, the email that was sent had its address from of the OdooBot After this commit, the mail is sent with the partner's email from OPW 2074154 Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#38507 Forward-Port-Of: odoo/odoo#38410
Website editor snippets can now display multiple matching options when they are meant to apply to the same snippet. This fixes a case where some map snippet settings in the Avantgarde theme were hidden, helping users configure pages as intended.
Original PR description
[FIX] web_editor: allow a snippet to use the same option multiple times If two snippet options are declared using the same data-js="..." and that they end up targeting the same snippet in some cases, only one of those two snippet options was shown. This case occurred in a theme (avantgarde) for the map snippet. Forward-Port-Of: odoo/odoo#38498 Forward-Port-Of: odoo/odoo#38385
This update fixes the Helpdesk accounting flow so users can reverse multiple accounting documents at the same time. It keeps the reversal wizard aligned with updated accounting behavior, reducing errors when handling refunds or corrections from helpdesk-related invoices.
Original PR description
[FIX] helpdesk_account: adapt for reverting multiple document at the same time The wizard account.move.reversal now implements default_get to retrieve the default values instead of a function per field. Community PR: https://github.com/odoo/odoo/pull/37681 Forward-Port-Of: odoo/enterprise#5876
Receipt printing during Point of Sale session closing is now handled directly in the screen layout instead of being added through extra script logic. This makes the behavior more reliable and easier to maintain without changing what users see.
Original PR description
In commit d63f02f we had to dynamically add the 'pos-receipt-print' class in the JS because we couldn't change the view in stable. We can now change the view directly.