Saving a custom module synchronized in OpenERP7

I am using Open ERP 7 and want to create my own module. I put everything in PyCharm for editing parts there, but sometimes I edit some forms or add some fields in OpenERP itself in the database structure.

Any changes I make to the database structure (like adding a field) won't show up in my PyCharm. Is there a way to keep them in sync?

Thank you in advance

+3


source to share


1 answer


Any changes made directly to the OpenERP / Odoo GUI are not written back to the module and are overwritten the next time the module is updated.



Use these direct edits only for experimentation or rapid prototyping. The changes you want to make final must always be made in your module files.

0


source







All Articles