Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
search 或者read_group中有sum吗 不是在xml文件里面是后台读出的数据要进行sum distinct对某字段
不知道你说的search里面用sum是什么意思呢?search后结果是idsread_group是可以对某个字段定义sum的,你可以在定义字段里面设定[b]group_operator[/b]参数(max,sum,min,avg ...)
'price_standard': fields.float('Products Value', readonly=True, group_operator="sum")
很感谢,你说的是用一个字段专门来存储sum,或者avg之类的值,有可能这是OE里面的方法。我想做的是searchid,然后对数据返回回来的数据进行累加,ids =self.pool.get('tablelname').search(cr,uid,[]) for id in ids: a= self.pool.get('tablename').browse(cr,uid,id) summoney+=a.moneyOE里面有没有像search一样的方法去做这样的事情。是否能通过read_group直接做出数据来。
read_group
请教一下 domain条件 求和字段read_group(cr,uid,[('id','in','43,44'))],['money'])是这样写吗,谢谢!或者是哪里还需要些'sum'