Ir al contenido
Menú
Se marcó esta pregunta
1 Responder
15430 Vistas

Since a lot of fields do not show any subtotals (SUM) if they are "grouped by" i would like to know how i can/should set the store=true parameter for existing fields of OpenERP?!?

eg. for the field:

Modell: hr_timesheet_sheet.sheet

Field: total_timesheet

(If i group the treeview of timesheets to validate by Employees i can not see the subtotals of total_timesheet in the treeview by employee.)

Avatar
Descartar
Mejor respuesta

copy both function fields and its function to your module and then add store=True e.g

'total_timesheet': fields.function(_total, method=True, string='Total Timesheet', multi="_total"), 'total_timesheet': fields.function(_total, method=True, string='Total Timesheet', multi="_total", store=True),

Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
1
mar 22
2274
1
mar 15
5249
2
jul 25
687
2
dic 24
1177
1
may 23
2039