跳至内容
菜单
此问题已终结
1 回复
4155 查看

Hello every body,

I trying to call function in mako file to create report with webkit but when I call function from python fill in mako this message appeare for me TypeError: 'Undefined' object is not callable so I will be thankful alot if any one help me

thanks alot

形象
丢弃
最佳答案

In mako, call the function %
                %for l in get_lines(o.order_line):
OR 
            <% lines = get_lines(o.order_line)

In py file, 

class sale_order_report(report_sxw.rml_parse):
    def __init__(self, cr, uid, name, context):
        super(grid_report, self).__init__(cr, uid, name, context=context)
        self.localcontext.update({
            'time': time,
            'get_lines': self._get_lines,
        })

形象
丢弃
相关帖文 回复 查看 活动
4
10月 16
31003
1
9月 15
3722
1
6月 15
692
0
4月 15
528
2
4月 15
691