Debugging in OpenERP 7.0

后端 未结 8 1109
小鲜肉
小鲜肉 2021-01-18 06:05

How to do debug in OpenERP v7?

In previous versions of OpenERP, it was easy to debug. But in the latest version it\'s tough to debug.

8条回答
  •  梦谈多话
    2021-01-18 06:47

    Debugging is quite simple in interface.

    For Programmers

    By Default when you login to openerp, your url will look something like this

    http://localhost:7373/?db=Test_July_25#menu_id=107&action=97
    

    Edit the url and add debug=&

    localhost:7373/?debug=&db=Test_July_25#menu_id=107&action=97

    For Functional Users

    • Navigate mouse to top right corner and select About OpenERP

    enter image description here

    • Now Activate Debug Mode

    enter image description here

    You Should be done now with interface debugging.

    For Code Debugging (along with arya's method these images may help you)

    • You can use browse button to select the project and the openerp server file

    enter image description here

    enter image description here

    Finally place breakpoints in your code where ever necessary

提交回复
热议问题