Saturday, October 12, 2024
12 changes
1 change
Miscellaneous changes
When sending a document to the government, we have to put a certain document type. The document type are computed depending on what's on the lines of the move, the type of the move, etc The mapping was wrongly done. For the moment when doing an invoice with a service, it will be mapped as a TD03 which was wrong. It should still be TD01. We misinterpreted the professional fees by just checking if there is more service than goods product but now we will add a tag that can be used on account for
Original PR description
When sending a document to the government, we have to put a certain document type. The document type are computed depending on what's on the lines of the move, the type of the move, etc The mapping was wrongly done. For the moment when doing an invoice with a service, it will be mapped as a TD03 which was wrong. It should still be TD01. We misinterpreted the professional fees by just checking if there is more service than goods product but now we will add a tag that can be used on account for that. task:4244462 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#183337
4 changes
Miscellaneous changes
The JavaScript definition of the model mail.test.simple.main.attachment was removed from the test_mail_enterprise module. It was move to the test_mail module because it's python definition already lies there, and because it was needed in the attachment_view test. task-4032316 Forward-Port-Of: odoo/enterprise#70066
Original PR description
The JavaScript definition of the model mail.test.simple.main.attachment was removed from the test_mail_enterprise module. It was move to the test_mail module because it's python definition already lies there, and because it was needed in the attachment_view test. task-4032316 Forward-Port-Of: odoo/enterprise#70066
7 changes
Miscellaneous changes
In chromium based browsers, after poping out the attachment and closing the new window, the buttons (next, previous, popout) in the attachment preview are not clickable any more. This was happening because the mail_popout_service was relying on DOM manipulations instead of using owl framework. This commit fixes this problem. task-4032316 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#174878
Original PR description
In chromium based browsers, after poping out the attachment and closing the new window, the buttons (next, previous, popout) in the attachment preview are not clickable any more. This was happening because the mail_popout_service was relying on DOM manipulations instead of using owl framework. This commit fixes this problem. task-4032316 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#174878
The popover was set to bg-100 during darkmode redesign but it creates more issue than having it at 300. The initial issue was the button light behavior inside popover, but setting it to 100 doesn't solve the button light and breaks the elevation. Steps to reproduce (any popover): - Apply the Dark Mode - Go in CRM app - Open a lead - Clic the cog in the control panel next to the breadcrumb - Select "Add Properties" (it opens the popover) task-3593302 Forward-Port-Of: odoo/enterpris
Original PR description
The popover was set to bg-100 during darkmode redesign but it creates more issue than having it at 300. The initial issue was the button light behavior inside popover, but setting it to 100 doesn't solve the button light and breaks the elevation. Steps to reproduce (any popover): - Apply the Dark Mode - Go in CRM app - Open a lead - Clic the cog in the control panel next to the breadcrumb - Select "Add Properties" (it opens the popover) task-3593302 Forward-Port-Of: odoo/enterprise#51664
Forward-Port-Of: odoo/enterprise#70592
Original PR description
Forward-Port-Of: odoo/enterprise#70592
In this PR: - Simplified tax detail retrieval using Odoo ORM instead of complex SQL queries. - Directly mapped tax amounts from tax lines to improve accuracy. - Enhanced handling of journal items with 0% tax or no tax. Task ID: 4032825 Forward-Port-Of: odoo/enterprise#71735 Forward-Port-Of: odoo/enterprise#65983
Original PR description
In this PR: - Simplified tax detail retrieval using Odoo ORM instead of complex SQL queries. - Directly mapped tax amounts from tax lines to improve accuracy. - Enhanced handling of journal items with 0% tax or no tax. Task ID: 4032825 Forward-Port-Of: odoo/enterprise#71735 Forward-Port-Of: odoo/enterprise#65983
Steps to reproduce: - use ODOO.BALANCE("1",,1) (make sure it returns some value) - switch to another company (company 1 should not be active) => the balance doesn't appear even though the company_id is provided and set to 1 Issue introduced with a707f8345cec8f40407 Task: 4223319 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.
Original PR description
Steps to reproduce:
- use ODOO.BALANCE("1",,1) (make sure it returns some value)
- switch to another company (company 1 should not be active) => the balance doesn't appear even though the company_id is provided
and set to 1
Issue introduced with a707f8345cec8f40407
Task: 4223319
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#182344When sending a document to the government, we have to put a certain document type. The document type are computed depending on what's on the lines of the move, the type of the move, etc The mapping was wrongly done. For the moment when doing an invoice with a service, it will be mapped as a TD03 which was wrong. It should still be TD01. We misinterpreted the professional fees by just checking if there is more service than goods product but now we will add a tag that can be used on account for
Original PR description
When sending a document to the government, we have to put a certain document type. The document type are computed depending on what's on the lines of the move, the type of the move, etc The mapping was wrongly done. For the moment when doing an invoice with a service, it will be mapped as a TD03 which was wrong. It should still be TD01. We misinterpreted the professional fees by just checking if there is more service than goods product but now we will add a tag that can be used on account for that. task:4244462 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#183337
Before this commit, when some extension in chrome threw an unhandledrejection event, Chrome apparently redacts it. The error popped into Odoo as very generic one. The error Dialog was spawned, intempestively. After this commit, we use a heuristic to block that kind of errors: Apparently, the error event is a CustomEvent, with no `reason`. opw-4246402 Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I
Original PR description
Before this commit, when some extension in chrome threw an unhandledrejection event, Chrome apparently redacts it. The error popped into Odoo as very generic one. The error Dialog was spawned, intempestively. After this commit, we use a heuristic to block that kind of errors: Apparently, the error event is a CustomEvent, with no `reason`. opw-4246402 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#183408 Forward-Port-Of: odoo/odoo#183327
The JavaScript definition of the model mail.test.simple.main.attachment was removed from the test_mail_enterprise module. It was move to the test_mail module because it's python definition already lies there, and because it was needed in the attachment_view test. task-4032316 Forward-Port-Of: odoo/enterprise#70066
Original PR description
The JavaScript definition of the model mail.test.simple.main.attachment was removed from the test_mail_enterprise module. It was move to the test_mail module because it's python definition already lies there, and because it was needed in the attachment_view test. task-4032316 Forward-Port-Of: odoo/enterprise#70066
Forward-Port-Of: odoo/enterprise#70592
Original PR description
Forward-Port-Of: odoo/enterprise#70592
In this PR: - Simplified tax detail retrieval using Odoo ORM instead of complex SQL queries. - Directly mapped tax amounts from tax lines to improve accuracy. - Enhanced handling of journal items with 0% tax or no tax. Task ID: 4032825 Forward-Port-Of: odoo/enterprise#71735 Forward-Port-Of: odoo/enterprise#65983
Original PR description
In this PR: - Simplified tax detail retrieval using Odoo ORM instead of complex SQL queries. - Directly mapped tax amounts from tax lines to improve accuracy. - Enhanced handling of journal items with 0% tax or no tax. Task ID: 4032825 Forward-Port-Of: odoo/enterprise#71735 Forward-Port-Of: odoo/enterprise#65983