mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
27 lines
783 B
Python
27 lines
783 B
Python
# -*- coding: utf-8 -*-
|
|
# © 2014-2016 Akretion (http://www.akretion.com)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
# @author Alexis de Lattre <alexis.delattre@akretion.com>
|
|
|
|
{
|
|
'name': 'Account Payment Sale',
|
|
'version': '9.0.1.0.0',
|
|
'category': 'Banking addons',
|
|
'license': 'AGPL-3',
|
|
'summary': "Adds payment mode on sale orders",
|
|
'author': "Akretion, "
|
|
"Serv. Tecnol. Avanzados - Pedro M. Baeza, "
|
|
"Odoo Community Association (OCA)",
|
|
'website': 'https://github.com/OCA/bank-payment',
|
|
'depends': [
|
|
'sale',
|
|
'account_payment_partner'
|
|
],
|
|
'conflicts': ['sale_payment'],
|
|
'data': [
|
|
'views/sale_order_view.xml',
|
|
],
|
|
'installable': True,
|
|
'auto_install': True,
|
|
}
|