i have a field that takes a value in a create function .. its working properly , but on edit its not saving the new value :( any help??
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Contabilità
- Magazzino
- PoS
- Project
- MRP
La domanda è stata contrassegnata
3267
Visualizzazioni
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!
Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!
Registrati
are you using function field? provide field details.
no its not a functional field , its a readonly char field that takes its value in the create function
If you want to update the readonly field while editing record, do the same for write method.
Like Nehal say, openerp dont return readonly field, they assume readonly cant not be modify (my opinion is BAD IDEA), so i think you change the field with on_change function, but save dont pass the new value. You need to do what Nehal tell you, overide the write function and redo you calcul for this field. OR change the web client fot client send all field.