Saturday, July 6, 2024
6 changes · saas-17.1
Miscellaneous changes
Small fix and improvement on dumpstack function Forward-Port-Of: odoo/odoo#171261
Original PR description
Small fix and improvement on dumpstack function Forward-Port-Of: odoo/odoo#171261
Before this commit: If 2 IoT box are set on different companies and both have a printer with the same identifier. On the completion request, the server can not be sure from which device the priting was completed and might choose the wrong IoT. As such the "fail to print" notification will appear while it is false opw-3965623 Forward-Port-Of: odoo/odoo#171808
Original PR description
Before this commit: If 2 IoT box are set on different companies and both have a printer with the same identifier. On the completion request, the server can not be sure from which device the priting was completed and might choose the wrong IoT. As such the "fail to print" notification will appear while it is false opw-3965623 Forward-Port-Of: odoo/odoo#171808
before this commit, there is no option to enable tracking for draft sale orders. In some cases end users need this functionality, right now we have to customize and make this possible after this commit, a new system parameter is introduced sale.track_draft_orders , by which end user can control the tracking. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#171442
Original PR description
before this commit, there is no option to enable tracking for draft sale orders. In some cases end users need this functionality, right now we have to customize and make this possible after this commit, a new system parameter is introduced sale.track_draft_orders , by which end user can control the tracking. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#171442
Forward-Port-Of: odoo/enterprise#66060
Original PR description
Forward-Port-Of: odoo/enterprise#66060
This commit fixes the size of studio icons when the window is resized. The w-75 class was applied, which caused the element to be resized instead of keeping the desired width of 70px, like other icons do. Now, the icon keep the same dimensions, like any other app icon. task-3998287 Forward-Port-Of: odoo/enterprise#66123
Original PR description
This commit fixes the size of studio icons when the window is resized. The w-75 class was applied, which caused the element to be resized instead of keeping the desired width of 70px, like other icons do. Now, the icon keep the same dimensions, like any other app icon. task-3998287 Forward-Port-Of: odoo/enterprise#66123
Before this commit: If an IoT is set on a company (other than the default one), when printing a report set to an IoT device. It would always show the "error to print" pop-up. This happened as the notification that the printing operation was successful was always send to the channel of the first company. After this commit: We force to use the company set on the device of the identifier (which is the iot box company). This heuristic is not perfect as different IoT might have devices wit
Original PR description
Before this commit: If an IoT is set on a company (other than the default one), when printing a report set to an IoT device. It would always show the "error to print" pop-up. This happened as the notification that the printing operation was successful was always send to the channel of the first company. After this commit: We force to use the company set on the device of the identifier (which is the iot box company). This heuristic is not perfect as different IoT might have devices with the same identifier, in this case, it would accidentally send to the wrong IoT channel. To solve this other issue, another PR in the IoT will force to send the IoT mac address in order to make sure to use the right IoT. As the code of the IoT might be outdated, we define it with a default value. opw-3965623 Forward-Port-Of: odoo/enterprise#65996