You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
598 B
14 lines
598 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
<!-- Inheriting and adding a button in the view -->
|
|
<record id="view_in_invoice_bill_tree" model="ir.ui.view">
|
|
<field name="name">account.move.view.tree.inherit.bill.digitization</field>
|
|
<field name="model">account.move</field>
|
|
<field name="inherit_id" ref="account.view_in_invoice_bill_tree"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//tree" position="attributes">
|
|
<attribute name="js_class">button_in_tree</attribute>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|