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
- Accounting
- Inventory
- PoS
- Project management
- MRP
This question has been flagged
2
Replies
2734
Views
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 ^^
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
0
Nov 24
|
371 | ||
|
1
Feb 24
|
561 | ||
|
2
Feb 24
|
2640 | ||
|
0
Jul 23
|
923 | ||
|
1
Apr 23
|
8343 |
See how to use binary field: https://goo.gl/2JAxhD
Thank you soo much!!! this was really helpful ^^