如何在qweb报告odoo中计算总和
How to sum calculated in qweb report odoo
如何计算报告qweb中的多条记录使用odoo。我试图在报告 py 中创建方法来计算
@api.one
@api.depends("total_do")
def _get_total(self):
batch_ids = self.batch_ids
total_do = self.total_do
for in item batch_ids:
total_do += item.qty_received
print total_do
我在 qweb 中是这样显示的:
<div class="col-xs-1" style="text-align:center;border: 1px solid #568eff;border-left:0px;">
<span t-esc="o.total_do" />
</div>
当我打印报告时,我想显示多行的总计。在我的例子中只显示 0
您必须在该模型的本地上下文中设置您的 total 方法 (report_sxw.rml_parse)
def __init__(self, cr, uid, name, context):
super(class_name, self).__init__(cr, uid, name, context=context)
self.localcontext.update({
'time': time,
'_get_total': self._get_total,
})
您只需要从调用该总方法的地方更新那部分。
<div class="col-xs-1" style="text-align:center;border: 1px solid #568eff;border-left:0px;">
<span t-esc="o._get_total" />
</div>
你的总方法就像,
def _get_total(self):
batch_ids = self.batch_ids
total_do = 0
for in item batch_ids:
total_do += item.qty_received
return total_do
也许你正在寻找这个
<t t-esc="sum(l.amount for l in object.lines)"/>
和这个linkQWeb loop cannot set value to vaiables outside the loop
如何计算报告qweb中的多条记录使用odoo。我试图在报告 py 中创建方法来计算
@api.one
@api.depends("total_do")
def _get_total(self):
batch_ids = self.batch_ids
total_do = self.total_do
for in item batch_ids:
total_do += item.qty_received
print total_do
我在 qweb 中是这样显示的:
<div class="col-xs-1" style="text-align:center;border: 1px solid #568eff;border-left:0px;">
<span t-esc="o.total_do" />
</div>
当我打印报告时,我想显示多行的总计。在我的例子中只显示 0
您必须在该模型的本地上下文中设置您的 total 方法 (report_sxw.rml_parse)
def __init__(self, cr, uid, name, context):
super(class_name, self).__init__(cr, uid, name, context=context)
self.localcontext.update({
'time': time,
'_get_total': self._get_total,
})
您只需要从调用该总方法的地方更新那部分。
<div class="col-xs-1" style="text-align:center;border: 1px solid #568eff;border-left:0px;">
<span t-esc="o._get_total" />
</div>
你的总方法就像,
def _get_total(self):
batch_ids = self.batch_ids
total_do = 0
for in item batch_ids:
total_do += item.qty_received
return total_do
也许你正在寻找这个
<t t-esc="sum(l.amount for l in object.lines)"/>
和这个linkQWeb loop cannot set value to vaiables outside the loop