コンテンツへスキップ
メニュー
この質問にフラグが付けられました
2 返信
5080 ビュー

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