Monday, August 10, 2020
3 changes · master
Resolved issues and error corrections
This update replaces an outdated internal action used in Argentine localization demo data. It prevents unnecessary warning messages in system logs, making demonstrations and testing cleaner without changing business workflows.
Original PR description
task 348
---
### Description of the issue/feature this PR addresses:
Change references of deprecated method in demo data to avoid WARNING message in
odoo log
### Current behavior before PR:
```sh
... WARNING ar py.warnings: ... DeprecationWarning: RedirectWarning method 'post()' is a deprecated alias
to 'action_post()' or _post() DeprecationWarning
```
### Desired behavior after PR is merged:
No error warning message
--
I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-prThe invoice form now displays Latin American document type and document number fields with their labels and proper spacing. This makes invoice details easier to read and reduces confusion during invoice entry or review.
Original PR description
task 349 --- ### Description of the issue/feature this PR addresses: Fix look and feel of invoice form view ### Current behavior before PR: The latam documents used for document type an document number are not showed correctly in the view, they displaying to close side by side and the related labels are not show.  ### Desired behavior after PR is merged: After this PR this has been fixed and now we have the labels and the proper separation of the fields in the invoice form view.  -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The Documents onboarding guide has been repaired after a prior interface change caused it to stop working. This helps new users complete the guided introduction to Documents and related accounting document flows without getting stuck.
Original PR description
Currenttly, the documents onborading tour is broken because of data-id which is removed during searchpanel refactoring. So in this commit, Fix the onboarding tour and use eq for element selection instead of data-id and data-value-id as both are removed from searchpanel and there is other specific selector for particular element. TaskID: 2313883 Closes: #12318