I wanted to add a new feature into survey module, which is adding an option in the questions where the user can upload a file or a picture but I'm having a problem when I run the survey it doesn't show the upload button. Can anyone please walk me through the steps on how to add this feature smoothly?
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
2
Risposte
2991
Visualizzazioni
Hi,
First you need to define a binary field in the python file.
field_name = fields.Binary(string=’give a name for this field’ )
And you should give a view in the XML file.
Once you define the field, you will have a button near the field to Upload your file.
Regards
Thank you sooo much ^^
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!
RegistratiPost correlati | Risposte | Visualizzazioni | Attività | |
---|---|---|---|---|
|
1
mag 25
|
952 | ||
|
1
feb 24
|
1436 | ||
|
2
apr 25
|
3286 | ||
|
0
lug 23
|
1552 | ||
|
1
apr 23
|
9367 |
See how to use binary field: https://goo.gl/2JAxhD
Thank you soo much!!! this was really helpful ^^