如何在Odoo 10中分离打印报告?

时间:2018-02-06 07:30:19

标签: python xml odoo odoo-10 odoo-view

在销售模块中,我们创建销售订单和报价报告。两个报告都显示在打印按钮中。我们需要根据报价和销售订单分离报告。

我们使用相同的型号名称进行销售和报价,但写入不同的视图文件。

3 个答案:

答案 0 :(得分:1)

  • 您尝试使用此代码创建两个具有相同代码的不同按钮,但更改字符串和Id。

    <report id="report_sale_order" string="Quotation" model="sale.order" report_type="qweb-pdf" file="sale.report_saleorder" name="sale.report_saleorder" />

答案 1 :(得分:1)

在销售订单和报价单中,如果您符合报价单,它将打印销售订单报告,不打印报价报告。因此它们彼此分开。

答案 2 :(得分:0)

You can not apply a domain over that menu, you should remove this menus and use/create buttons to print Quotation or Order, you can apply domain over a button.