Thursday, October 1, 2020
11 changes · master
Miscellaneous changes
- Install accounting - Create a company with a '.' as last character of the name, e.g. 'Test Inc.' - Set the Fiscal Localization for the company An error occurs: "You cannot use anything else than unaccented latin characters in the alias address." This happens because we try to create the alias `test-inc..inv`: `..` is not allowed by the RFC 3696. We replace the `.` by `-` which is a supported character in the localpart. opw-2347965 Description of the issue/feature this PR
Original PR description
- Install accounting - Create a company with a '.' as last character of the name, e.g. 'Test Inc.' - Set the Fiscal Localization for the company An error occurs: "You cannot use anything else than unaccented latin characters in the alias address." This happens because we try to create the alias `test-inc..inv`: `..` is not allowed by the RFC 3696. We replace the `.` by `-` which is a supported character in the localpart. opw-2347965 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#58893
There seems to be an issue with the import of factur-x pdf. The unit price is being divided by the quantity resulting in wrong values. This commit will correct that by dividing the unit price by the number of products in one unit, instead of the number of units. Task id #2341111 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#58658 Forward-Port-Of: odoo/odoo#57855
Original PR description
There seems to be an issue with the import of factur-x pdf. The unit price is being divided by the quantity resulting in wrong values. This commit will correct that by dividing the unit price by the number of products in one unit, instead of the number of units. Task id #2341111 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#58658 Forward-Port-Of: odoo/odoo#57855
PR #45400 disabled the Export feature for those who where not in group 'base.group_allow_export'. However, it only considered the 'Export' link in the actions menu. The (quick) export button in the control panel (displayed next to 'Create') was displayed, whether the user was in the group or not. This commit fixes this issue. Task 2348571 Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: -- I confirm
Original PR description
PR #45400 disabled the Export feature for those who where not in group 'base.group_allow_export'. However, it only considered the 'Export' link in the actions menu. The (quick) export button in the control panel (displayed next to 'Create') was displayed, whether the user was in the group or not. This commit fixes this issue. Task 2348571 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#58890 Forward-Port-Of: odoo/odoo#58819
- Go to Project > All Tasks and open an Task - Toggle Studio: * Activate "Show invisible elements" in View menu tab * In Extra info tab of Task, select "Sales Order" field and uncheck invisible option - Go to Sales and create a Quotation (i.e. SO0001) - Go to Project > All Tasks and create a Task with SO0001 as SO - Go back to Quotation SO0001 The created Task is not counted in the Tasks smart button. Tasks smart button on SO only shows Tasks associated to a SO line and does not s
Original PR description
- Go to Project > All Tasks and open an Task - Toggle Studio: * Activate "Show invisible elements" in View menu tab * In Extra info tab of Task, select "Sales Order" field and uncheck invisible option - Go to Sales and create a Quotation (i.e. SO0001) - Go to Project > All Tasks and create a Task with SO0001 as SO - Go back to Quotation SO0001 The created Task is not counted in the Tasks smart button. Tasks smart button on SO only shows Tasks associated to a SO line and does not show Tasks associated to SO. opw-2335040 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#58898 Forward-Port-Of: odoo/odoo#58841
32ec8a974ddd8715bd76faf7a2d95e4a870c6132 aims to give the possibility to admins to send reset password emails to users. `groups_id` expects a `res.groups` id, not a `res.users` Forward-Port-Of: odoo/odoo#58932
Original PR description
32ec8a974ddd8715bd76faf7a2d95e4a870c6132 aims to give the possibility to admins to send reset password emails to users. `groups_id` expects a `res.groups` id, not a `res.users` Forward-Port-Of: odoo/odoo#58932
As the tips can be put anywhere in the DOM, external css rules may target them by mistake. This was for instance discovered on the frontend where the boxed layout does something like this: ``` #wrapwrap > * { width: XXX; } ``` which does breaks the tips which would be placed in the #wrapwrap. This commit solves the problem by forcing rules with !important flags. Forward-Port-Of: odoo/odoo#58822
Original PR description
As the tips can be put anywhere in the DOM, external css rules may
target them by mistake. This was for instance discovered on the frontend
where the boxed layout does something like this:
```
#wrapwrap > * { width: XXX; }
```
which does breaks the tips which would be placed in the #wrapwrap.
This commit solves the problem by forcing rules with !important flags.
Forward-Port-Of: odoo/odoo#58822Before this commit, we were looking for text content inside SVG element to set the selected value of a select in the left panel. After this commit, we avoid looking inside SVG tags. task-2312878 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#56739
Original PR description
Before this commit, we were looking for text content inside SVG element to set the selected value of a select in the left panel. After this commit, we avoid looking inside SVG tags. task-2312878 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#56739
With demo data this time Forward-Port-Of: odoo/enterprise#13682
Original PR description
With demo data this time Forward-Port-Of: odoo/enterprise#13682
Steps to reproduce the bug: - Let's consider a bank journal J in CHF - Let's consider a camt file F with a transaction T of 12108.6$ and XchgRate = 0.9163 - Import F Bug: The amount of T in the bank statement was equal to 12108.6 CHF instead of 11095.11 CHF opw:2343063 Forward-Port-Of: odoo/enterprise#13634
Original PR description
Steps to reproduce the bug: - Let's consider a bank journal J in CHF - Let's consider a camt file F with a transaction T of 12108.6$ and XchgRate = 0.9163 - Import F Bug: The amount of T in the bank statement was equal to 12108.6 CHF instead of 11095.11 CHF opw:2343063 Forward-Port-Of: odoo/enterprise#13634
This commit adapts a test w.r.t PR odoo/odoo#58819 Forward-Port-Of: odoo/enterprise#13708
Original PR description
This commit adapts a test w.r.t PR odoo/odoo#58819 Forward-Port-Of: odoo/enterprise#13708
Including demo data this time Forward-Port-Of: odoo/odoo#58821
Original PR description
Including demo data this time Forward-Port-Of: odoo/odoo#58821