Skip to content

Commit

Permalink
FIX change display_name to name in payment search view (ingadhoc#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicomacr authored and jjscarafia committed Apr 26, 2017
1 parent bd014e5 commit 13e9686
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion account_payment_group_document/__openerp__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
{
"name": "Payment Groups with Accounting Documents",
"version": "9.0.1.0.0",
"version": "9.0.1.1.0",
"author": "ADHOC SA",
"license": "AGPL-3",
"category": "Accounting",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<field name="inherit_id" ref="account_payment_group.view_account_payment_group_search"/>
<field name="arch" type="xml">
<field name="display_name" position="attributes">
<attribute name="filter_domain">['|', ('display_name','ilike',self), ('communication','ilike',self)]</attribute>
<attribute name="filter_domain">['|', ('name','ilike',self), ('communication','ilike',self)]</attribute>
</field>
</field>
</record>
Expand Down

0 comments on commit 13e9686

Please sign in to comment.