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

Hello Odoo Community:

    I would like to see average margin_percentage in the sale list view. I used this code: 

   I am able to see the average value for all sale orders; however, when I grouped orders according to customers, average values become sum values for each group. How could I change it to average again? Thank you so much!

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

Hi,

You can use the group_operator attribute to decide which value to see when using grouping.

group_operator="avg" gives the average value when grouping.


Here's an example for your reference:
margin_percentage = fields.Float(string="Margin Percentage",
                 group_operator='avg')


Hope it helps

Аватар
Отменить
Автор

Thank you so much!

Лучший ответ

The code is not visible, 

This is an example of showing Average 


Also odoo reference state the following regarding avg:
displays the corresponding aggregate at the bottom of the column. The aggregation is only computed on currently displayed records. The aggregation operation must match the corresponding field’s group_operator.

If you code was visible, I might be able to help you more

Аватар
Отменить
Автор

Thank you for your reply, but I cannot see the example you shown

Related Posts Ответы Просмотры Активность
1
авг. 25
702
1
нояб. 22
3017
2
апр. 19
8144
1
янв. 24
15504
1
мар. 15
4063