如何删除向导中显示的多个超链接(oddo 9)

时间:2016-11-07 06:23:53

标签: python openerp odoo-8 odoo-9

创建向导以从用户输入数据,当我点击按钮时, wizard input data 它将通过点击查看按钮

打开新表格

但是在新的表单标题中,将显示多个超链接(来自以前的输入数据) multiple hyperlink

我希望只有活动/最后输入数据才会显示在这样的超链接上

怎么办? 我的代码就是这样重定向其他表单

 return {
        'name': string_title,
        'type': 'ir.actions.act_window',
        'res_model': 'sales_report_custom.sales_data',
        'domain' : domain,
        'view_type': 'form',
        'target': 'self',
        'view_mode': 'graph,pivot,tree',
        'context':{'date_transaction_from':date_from, 'date_transaction_to':date_to, 'date_transaction': date_trans, 'salesperson':salIds, "search_default_date_transaction":'1', "period_filter":period_fil},

    }

由于

0 个答案:

没有答案