Odoo Help
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
|
etc.
RML Reports summation of answers columns
I have edited the survey.answer and add a POINTS field.. What I need to do is, when a user answer a question. their is a corresponding point for that, the formula is response * points but then i need to get the sum of all answer, it means i need to have this formula * sum(response * points )* .. I dont know how to do this summation of columns in survey.answer
Hello lhadiesleo
you can use field.function() which will do the calculation at run time and print the result in your desire field.
py file class survey_answer:
def _my_point_sum():
calculate your sum here
columns={
'function' : fields.function(
_my_point_sum,
type='char',
string='Points'),
}
I already do that but it is not working, it still gets the value in the last line of the column,
About This Community
This platform is for beginners and experts willing to share their Odoo knowledge. It's not a forum to discuss ideas, but a knowledge base of questions and their answers.
RegisterOdoo Training Center
Access to our E-learning platform and experience all Odoo Apps through learning videos, exercises and Quizz.
Test it nowQuestion tools
Stats
Asked: 1/24/14, 4:00 AM |
Seen: 2003 times |
Last updated: 3/16/15, 8:10 AM |