2

我正在尝试比较 OpenERP 和 Dynamics AX。有谁可以告诉我编程 OpenErp 和 Dynamics AX 时的区别?例如,我知道 Dynamics AX 中存在一个自定义层,并且所有对象都是分层的和可编程的(和可自定义的)。OpenERP 中是否存在这种类型的概念?我可以以模块化的方式对其进行个性化吗?

谢谢

4

2 回答 2

2

I've never used Dynamics AX, so I can't compare them. I have written several custom modules for OpenERP, and their extension model works reasonably well. It's a bit unusual, so it takes a while to learn. They just released a description of their plans for version 7, and it sounds like the inheritance model will become much more standard.

If you want to learn more, look at the developer book's chapter on developing modules. Particularly important concepts are object inheritance and inheritance in views.

于 2012-04-10T17:01:14.943 回答
1

是的,是的:来自(标准)模块的任何 OpenERP 对象都可以在另一个特定/本地模块中扩展和定制。

这包括:

  • 自定义字段定义(添加/隐藏/重新定义)
  • 自定义视图和表单
  • 自定义工作流程
  • ...
于 2012-04-10T11:13:25.827 回答