How to activate OpenERP Developer Mode

泪湿孤枕 提交于 2019-12-13 12:30:02

问题


In my OpenERP HR Project I can not see or no link for access to developer mode as other projects. Please kindly help me to solve this.

to image


回答1:


Developer Mode

Odoo developer mode allows you to make substantial modifications to the Odoo database such as adding fields to your documents and views. You change the default views of your actions and can even create dynamic forms based on other fields within your models.

Advantage

While Odoo is a powerful application framework the development cycle can be brutal to test changes to your application. By utilizing the developer mode you can test expressions and solve many functional problems without having to restart the server over and over to test simple changes.

Additionally the Odoo developer tool is great for looking at the architecture of forms and views to see how fields are tied to modules, their domains, contexts and other attributes. In this video we explore exactly how we put these tools to use in modifying and creating Odoo applications.

Limitations

While it can be very tempting to use developer mode to make a great deal of changes to your application there are some drawbacks. Depending on what you modify and change you can lose these changes with future module updates or when you install additional applications into Odoo. This is particularly true for changes to views.

To activate developer mode you just simply write down

for version v7

&debug=

before # sign you just add it.

http://localhost:8069/?db=test_db&debug=#

for version > v7

http://localhost:8069/web?debug=

You can not see About Odoo menu because there is odoo debranding module installed might be.




回答2:


You can simply type "?debug=" in url after "localhost:8069/web".

Ex :

Url = http://localhost:8069/web?debug=



来源:https://stackoverflow.com/questions/32836304/how-to-activate-openerp-developer-mode

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!