Files
bank-payment/account_payment_mode/__manifest__.py
Alexis de Lattre 655196f101 [FIX+IMP] account_payment_mode: Several small usability improvements + fix
- FIX: Don't store acc_type of res.partner.bank (#467)
- when manually encoding a payment line, get company currency as default currency
- Search on payment order numbers
- Direct search on bank journal name in payment orders
- remove widget="selection" on account.payement.mode : this object is rarely modified, so widget='selection' is not a time saver, but we miss the HTML link, which can be pretty convenient to check the configuration.
2020-10-16 23:03:47 +02:00

25 lines
777 B
Python

# -*- coding: utf-8 -*-
# © 2016 Akretion (<https://www.akretion.com>).
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
'name': 'Account Payment Mode',
'version': '11.0.1.0.1',
'license': 'AGPL-3',
'author': "Akretion,Odoo Community Association (OCA)",
'website': 'https://github.com/OCA/bank-payment',
'category': 'Banking addons',
'depends': ['account'],
'data': [
'security/account_payment_mode.xml',
'security/ir.model.access.csv',
'views/account_payment_method.xml',
'views/account_payment_mode.xml',
'views/res_partner_bank.xml',
'views/res_partner.xml',
'views/account_journal.xml',
],
'demo': ['demo/payment_demo.xml'],
'installable': True,
}