Browse Source

[ADD] beesdoo_custom: provider_reference on invoice_supplier_tree

pull/135/head
robin.keunen 4 years ago
committed by Rémy Taymans
parent
commit
865e7f807a
  1. 1
      beesdoo_custom/__openerp__.py
  2. 17
      beesdoo_custom/views/account_invoice.xml

1
beesdoo_custom/__openerp__.py

@ -25,5 +25,6 @@
# always loaded
'data': [
'views/beesdoo_product.xml',
'views/account_invoice.xml',
],
}

17
beesdoo_custom/views/account_invoice.xml

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2019 Coop IT Easy
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
-->
<odoo>
<record id="invoice_supplier_tree" model="ir.ui.view">
<field name="name">invoice_supplier_tree</field>
<field name="model">account.invoice</field>
<field name="inherit_id" ref="account.invoice_supplier_tree"/>
<field name="arch" type="xml">
<field name="reference" position="after">
<field name="provider_reference"/>
</field>
</field>
</record>
</odoo>
Loading…
Cancel
Save