diff --git a/account_payment_order/README.rst b/account_payment_order/README.rst index 44afd8afe814..b546bfb071aa 100644 --- a/account_payment_order/README.rst +++ b/account_payment_order/README.rst @@ -67,6 +67,7 @@ Contributors * Raphaël Valyi * Sandy Carter * Angel Moya +* Jose María Alzaga Maintainer ---------- diff --git a/account_payment_order/__manifest__.py b/account_payment_order/__manifest__.py index 8104cb9c2323..b32f0fa071cb 100644 --- a/account_payment_order/__manifest__.py +++ b/account_payment_order/__manifest__.py @@ -4,11 +4,12 @@ # © 2013-2014 ACSONE SA (). # © 2014-2016 Tecnativa - Pedro M. Baeza # © 2016 Akretion (). +# © 2016 Aselcis (). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { 'name': 'Account Payment Order', - 'version': '10.0.1.1.0', + 'version': '10.0.1.1.1', 'license': 'AGPL-3', 'author': "ACSONE SA/NV, " "Therp BV, " diff --git a/account_payment_order/models/account_payment_mode.py b/account_payment_order/models/account_payment_mode.py index bd97fe5bd711..b41e46e37103 100644 --- a/account_payment_order/models/account_payment_mode.py +++ b/account_payment_order/models/account_payment_mode.py @@ -61,9 +61,9 @@ class AccountPaymentMode(models.Model): ], string='Offsetting Account', default='bank_account') transfer_account_id = fields.Many2one( 'account.account', string='Transfer Account', - domain=[('internal_type', '=', 'other'), ('reconcile', '=', True)], + domain=[('reconcile', '=', True)], help="Pay off lines in 'file uploaded' payment orders with a move on " - "this account. You can only select accounts of type regular " + "this account. You can only select accounts " "that are marked for reconciliation") transfer_journal_id = fields.Many2one( 'account.journal', string='Transfer Journal',