Odoo选项卡索引不适用于向导按钮

时间:2019-06-07 08:04:37

标签: xml odoo odoo-11 tabindex

我的向导中有一个Print按钮。我可以使用tab专注于其他字段。但是对于Print按钮,这是不可能的。我想专注于{ {1}}按钮,当我点击Print时,我需要按下按钮。 我这样尝试过:

首次尝试

  

XML

Enter

我的按钮名称是 <group> <field name = "xn_barcode" /> <field name = "price"/> <button name="generate" tabindex="1" type="object" string="Print"/> </group> <footer> <button name="generate" tabindex="1" type="object" string="Print"/> </footer> ,我尝试使用generate属性。 然后,我尝试将此按钮放在tabindexgroup内。

第二次尝试footer的回复中也提到)

我在“帐户发票”中引用了一个向导。(EasyOdoo(发票树>“操作”>“确认草稿发票”)正在运行。我在比较时发现,该向导中没有任何字段。 (仅account.account_invoice_confirm_view标记中包含该向导中的一些数据),我尝试了向导中没有任何字段的向导,该向导正在运行。但是我想要向导中的字段。该怎么办?我认为这是一个巫术问题。

  

Odoo的“确认发票草稿向导”的代码

<p>

请帮助我。 预先感谢。

1 个答案:

答案 0 :(得分:1)

尝试一下:

<field name="arch" type="xml">
    <form>
        <sheet>
            <group>
              <field name = "xn_barcode" />
              <field name = "price"/>
            </group>
        </sheet>
        <footer>
           <button name="generate" type="object" string="Print"/>
           <button string="Cancel" class="btn-secondary" special="cancel"/>
        </footer>
    </form>
</field>

结果应如下所示:

You should see a result looks like this