Skip to content

Commit

Permalink
[14.0][MIG] - account_payment_show_invoice
Browse files Browse the repository at this point in the history
  • Loading branch information
sbejaoui committed Jul 16, 2021
1 parent 5a2038a commit 0b68139
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion account_payment_show_invoice/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "Account Payment Show Invoice",
"summary": "Extends the tree view of payments to show the paid invoices "
"related to the payments using the vendor reference by default",
"version": "13.0.1.0.1",
"version": "14.0.1.0.0",
"category": "Account-payment",
"website": "https://github.com/OCA/account-payment",
"author": "Eficent, Odoo Community Association (OCA)",
Expand Down
5 changes: 2 additions & 3 deletions account_payment_show_invoice/views/account_payment_view.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright 2017 Eficent
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->

<odoo>

<record id="view_account_payment_tree" model="ir.ui.view">
Expand All @@ -10,7 +9,7 @@
<field name="inherit_id" ref="account.view_account_payment_tree" />
<field name="arch" type="xml">
<field name="partner_id" position="after">
<field name="communication" />
<field name="ref" />
</field>
</field>
</record>
Expand All @@ -21,7 +20,7 @@
<field name="inherit_id" ref="account.view_account_payment_search" />
<field name="arch" type="xml">
<xpath expr="//field[@name='journal_id']" position="after">
<field name="communication" />
<field name="ref" />
</xpath>
</field>
</record>
Expand Down
6 changes: 6 additions & 0 deletions setup/account_payment_show_invoice/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

0 comments on commit 0b68139

Please sign in to comment.