xmlを使用してカスタムボタンAdd Bro
を作成できました。Odoo 9カスタムボタンでアクションを作成する方法
は、ここで私は私がボタンを押したときに呼び出されます。このボタンにアクションを作成する方法、
<templates>
<tr t-extend="ListView.buttons">
<t t-jquery="button.o_list_button_add" t-operation="after">
<button id="tahu" name="action" type="object" class="btn btn-sm btn-primary">
Add Bro
</button>
</t>
</tr>
</templates>
私の質問がされるXMLです。私は名前のaction
とメソッドを作成しようとしましたので、ボタンのname
属性を整えますが、何も起こりませんでした。
<record id="invoice_form_my" model="ir.ui.view">
<field name="name">account.invoice.form.my</field>
<field name="model">account.invoice</field>
<field name="inherit_id" ref="account.invoice_form"/>
<field name="arch" type="xml">
<xpath expr="/form/header/button[2][@string='Print']" position="after">
<button name="my_button" string="Print2" class="oe_highlight"/>
</xpath>
</field>
</record>