From c5e567c60709d3d939bc2dec4019b9a0ff989ce4 Mon Sep 17 00:00:00 2001 From: James Tante Date: Fri, 29 May 2026 07:14:56 +0000 Subject: [PATCH] [FIX] Add undocumented manifest field, sequence. 'sequence' is used in a lot of the default Apps of Odoo, but is missing in the documentation. X-original-commit: 3de48ec077d3116a60ad83ace2aaac7e7e0bfcd4 --- content/developer/reference/backend/module.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/developer/reference/backend/module.rst b/content/developer/reference/backend/module.rst index ed791d815d4..6e74c482b6f 100644 --- a/content/developer/reference/backend/module.rst +++ b/content/developer/reference/backend/module.rst @@ -150,6 +150,8 @@ Available manifest fields are: These hooks should only be used when setup/cleanup required for this module is either extremely difficult or impossible through the api. +``sequence`` (``int``) + Where in the list your module will show within the Apps module. A lower number means your module will be higher in the list. By default, it is set to ``100``. ``active`` (``bool``) Deprecated. Replaced by ``auto_install``.