繁体   English   中英

在XML报告中调用Python函数(odoo 10)

[英]Calling Python function in XML report (odoo 10)

我正在尝试调用返回值的方法。 我想获取这些值并在报表中使用它们。

@api.one
    def check_month(self,record,res):        
        fd = datetime.strptime(str(record.from_date), "%Y-%m-%d")   
        for rec in record.sales_record_ids:
            res.append(rec.jan_month)

    @api.one
    def get_sales_rec(self):
        result=[]
        target_records = self.env['sales.target'].search([('sales_team','=', self.sales_team_ids.id)])         
        for rec in target_records:
            self.check_month(rec,result)
        return result     

像这样在xml中:

   <tbody>
        <tr t-foreach="get_sales_rec()" t-as="data">                                        
            <tr>
                <td>
                    <span t-esc="data[0]" />
                </td>
            </tr>                                       
        </tr>
    </tbody>

将您的xml代码更改为:

<tbody>
    <tr t-foreach="o.get_sales_rec()" t-as="data">                                        
        <tr>
            <td>
                <span t-esc="data[0]" />
            </td>
        </tr>                                       
    </tr>
</tbody>

o代表报表模型对象,因此请确保已在同一对象中添加了python方法。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM