Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
2 Відповіді
5064 Переглядів

Can someone point to me what is the name of the javascript file that calculate the sum, for  example total quantity or total amount of products

Аватар
Відмінити
Найкраща відповідь

Aggregate Function Sum, Min, Max, Avg define in xml File.

Example,

  <field name="price_subtotal" sum="Total"/>

The below Java Scipt File used to calculate the Aggregate Fuction.

File Name:   \addons\web\static\src\js\view_list.js

Line No: 716  compute_aggregates: function (records) {

                       ------------------
                     }

 

Аватар
Відмінити
Автор Найкраща відповідь

Do you know how to override that to show in separate field the total or just to render a larger view? Example to its parent form assuming its one2many field. Not on the bottom of that column.

Аватар
Відмінити

where do you want to shows?.. Default it shows In List view. if you want to shows in form view as separate field then create functional field and calculate sum of amount.

Автор

I've already created that way but my client wants it realtime just like what happening when you add an item to the list view it automatically calculate the total without any actions trigger. In fact it stores on the browser, Do you know to manipulate openerp base module not web module thru javascript? I cant manipulate only the modules that uses the templates(qweb template) tag and not the openerp tag