Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
1 Ответить
10159 Представления

I want to make some calculations with product data and display them in a custom table, for example: I have a list of the kind: [{'name': u'Ipad', 'percentage': 45}, {'name': u'Imac', 'percentage': 20}] , how I can show this table in a form view, maybe I can do this with Qweb templates?, any example?, thanks.

Аватар
Отменить
Лучший ответ

You need to create an osv.osv_memory class with the structure

class my_calculation(osv.osv_memory):
_columns={
'name':fields.char('Name',),
'percentage':fields.integer('Percentage',),
}

you have to display it the same way the 'Change Password' view is shown.

Pls refer to the class 'change_password_wizard' in addons\base\res\wizard


The same data could be shown using a Qweb template, if you see them as a report data.


Аватар
Отменить
Related Posts Ответы Просмотры Активность
1
окт. 16
3698
1
окт. 19
2480
3
мая 16
5288
1
сент. 15
3539
3
апр. 25
3948