Tuesday, November 12, 2024
4 changes · master
Resolved issues and error corrections
Sendcloud delivery documents are now posted as separate messages instead of being grouped together. This helps route labels, slips, and A4 documents to the correct printers and avoids mixed print jobs during transfer validation.
Original PR description
Validating a transfer for a Sendcloud delivery puts all attachments in the same chatter message, which seems to cause problems with all files being sent to the same printer in one go. This is undesirable when stickers, slips and A4 documents need separate printers. This change makes it generate a new message for every attachment. Task ID: [4011224](https://www.odoo.com/odoo/966/tasks/4011224)
This fix prevents users from accidentally creating new field definitions from quick-create options in selected automation and data cleanup screens. It avoids confusing errors and keeps configuration choices limited to valid existing fields.
Original PR description
\* = base_automation_hr_contract, data_cleaning, marketing_automation Quick create an `ir.model.fields` should not be possible in the UI, This commit prevents it instead of raising an error see https://github.com/odoo/odoo/pull/186295#pullrequestreview-2417762562 community pr: https://github.com/odoo/odoo/pull/186738
This fix prevents financial report export settings from being recalculated unnecessarily when reports are exported as files. It helps ensure comparison data remains consistent during file exports and reduces the risk of incorrect report output.
Original PR description
This commit add a condition for the generation of options. If the report is exported in export_mode = file, we don't re-compute the options for the comparison.
Fixed an issue that could cause an error when exporting from Web Studio due to an unsupported field format. The export configuration now uses a compatible format, helping users complete exports without interruption.
Original PR description
Issue: ====== 'domain' widget used on field `domain` does not support Text type thus giving validation error. After this commit: ================== Changed data type of `domain`field to Char, supported in 'domain' widget. Task-4319471