server-tools
server-tools copied to clipboard
Tools for Odoo Administrators to improve some technical features on Odoo.
if a sales order is under many validation steps sometimes the nitifactions are sent, but if the order is following different routes not perfectly that is coded we will not...
This is to migrate field_vector module to 19.0.
depends on: - https://github.com/odoo/odoo/pull/232993 This allow to create a trigram index on translatable fields. Searches on translatable fields look like this: ```sql SELECT * FROM table WHERE COALESCE({column_name}->>'{lang}', {column_name}->>'en_US' %...
- Remove the self.env.su condition in unlink, since it is always called with sudo() in Odoo 19. https://github.com/odoo/odoo/blob/98bae80f57733162c67593539ef47dfd0c6d8797/addons/mail/controllers/attachment.py#L98 @qrtl QT5667
Today, the module `attachment_queue` implements its own way to process an attachement, by a cron. It should depends on queue_job as it does the same but better and it would...
## Module Auditlog ## Describe the bug An error is triggered when trying to delete an Auditlog Rule, this error isn't always triggered and is quite inconsistent. The suspected cause...
Adds an option to an auditlog rule to output a log entry to Odoo's logger, instead of creating `auditlog.log` and `auditlog.log.line` records. why? it's a use case f.e. if you...
## Module auditlog ## Describe the bug Related fields with `store=True` have no value (`False`) after a `create` call on models where an `auditlog.rule` is defined for creation events. This...