From c12a1742d03ff5d0e8ae3cd55cc8883c2660e329 Mon Sep 17 00:00:00 2001 From: mtpc4s9 Date: Tue, 18 Nov 2025 23:52:13 +0700 Subject: [PATCH] ok --- addons/foo/__manifest__.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 addons/foo/__manifest__.py diff --git a/addons/foo/__manifest__.py b/addons/foo/__manifest__.py new file mode 100644 index 0000000..39254db --- /dev/null +++ b/addons/foo/__manifest__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# https://www.odoo.com/documentation/18.0/developer/reference/backend/module.html +{ + 'name': 'Foo', + 'summary': """Foo custom addon""", + 'description': """Foo module description""", + 'author': 'minhng.info', + 'maintainer': 'minhng.info', + 'website': 'https://minhng.info', + 'category': 'Uncategorized', # https://github.com/odoo/odoo/blob/18.0/odoo/addons/base/data/ir_module_category_data.xml + 'version': '0.1', + 'depends': [ + 'sale', + 'hr', + ], + 'data': [], + 'demo': [], + 'css': [], + # 'qweb': ['static/src/xml/*.xml'], + 'installable': True, + 'auto_install': False, + 'application': True, +} \ No newline at end of file