odoo中的模块和应用程序之间有什么区别吗
Is there any difference between modules & app in odoo
我已经在我的本地机器上安装了 odoo ver8.0。
我只想知道:
odoo 中的模块和应用程序之间有什么区别吗?如果是,那是什么?
另外我想知道odoo
左侧菜单中链接'Local modules'和'Apps'的区别
左侧菜单中链接 'Local modules' 和 'Apps' 的区别:
"Apps"在线(我用的是OCA版本,所以对我不起作用),"Local modules"可以离线安装。我所做的是安装 disable_openerp_online
模块,以隐藏 "Apps" 菜单,因为您也可以从 "Local modules" 菜单安装您自己的本地 "Apps"。
"Application"和"Module"的主要区别:
It’s common to hear about Odoo modules and applications. But what
exactly is the difference between them? Modules are building blocks of
Odoo applications. A module can add or modify Odoo features. It is
supported by a directory containing a manifest or descriptor file
(named __openerp__.py
) and the remaining files that implement its
features. Sometimes, modules can also be referred to as “add-ons.”
Applications are not different from regular modules, but functionally,
they provide a central feature, around which other modules add
features or options. They provide the core elements for a functional
area, such as accounting or HR, around which other modules add
features. Because of this, they are highlighted in the Odoo Apps menu.
模块是扩展引入功能的单独 pieces/directories 代码。应用程序是模块的集合,通常具有配置选项,代表相同的目的(例如:销售或购买)。
https://www.odoo.com/forum/help-1/question/what-is-the-difference-between-an-app-an-addon-and-a-module-56285
我已经在我的本地机器上安装了 odoo ver8.0。 我只想知道:
odoo 中的模块和应用程序之间有什么区别吗?如果是,那是什么?
另外我想知道odoo
左侧菜单中链接'Local modules'和'Apps'的区别
左侧菜单中链接 'Local modules' 和 'Apps' 的区别:
"Apps"在线(我用的是OCA版本,所以对我不起作用),"Local modules"可以离线安装。我所做的是安装 disable_openerp_online
模块,以隐藏 "Apps" 菜单,因为您也可以从 "Local modules" 菜单安装您自己的本地 "Apps"。
"Application"和"Module"的主要区别:
It’s common to hear about Odoo modules and applications. But what exactly is the difference between them? Modules are building blocks of Odoo applications. A module can add or modify Odoo features. It is supported by a directory containing a manifest or descriptor file (named
__openerp__.py
) and the remaining files that implement its features. Sometimes, modules can also be referred to as “add-ons.” Applications are not different from regular modules, but functionally, they provide a central feature, around which other modules add features or options. They provide the core elements for a functional area, such as accounting or HR, around which other modules add features. Because of this, they are highlighted in the Odoo Apps menu.
模块是扩展引入功能的单独 pieces/directories 代码。应用程序是模块的集合,通常具有配置选项,代表相同的目的(例如:销售或购买)。 https://www.odoo.com/forum/help-1/question/what-is-the-difference-between-an-app-an-addon-and-a-module-56285