__openerp__.py 1.45 KB
Newer Older
François C. committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
# -*- coding: utf-8 -*-
# © 2009 EduSense BV (<http://www.edusense.nl>)
# © 2011-2013 Therp BV (<http://therp.nl>)
# © 2013-2014 ACSONE SA (<http://acsone.eu>).
# © 2014-2016 Serv. Tecnol. Avanzados - Pedro M. Baeza
# © 2016 Akretion (<http://www.akretion.com>).
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

{
    'name': 'Account Payment Order',
    'version': '9.0.1.1.0',
    'license': 'AGPL-3',
    'author': "ACSONE SA/NV, "
              "Therp BV, "
              "Serv. Tecnol. Avanzados - Pedro M. Baeza, "
              "Akretion, "
              "Odoo Community Association (OCA)",
    'website': 'https://github.com/OCA/bank-payment',
    'category': 'Banking addons',
    'depends': [
        'account_payment_partner',
        'base_iban',  # for manual_bank_tranfer
        'document',  # to see the attachments on payment.order
    ],
    'data': [
        'security/payment_security.xml',
        'security/ir.model.access.csv',
        'wizard/account_payment_line_create_view.xml',
        'wizard/account_invoice_payment_line_multi_view.xml',
        'views/account_payment_mode.xml',
        'views/account_payment_order.xml',
        'views/account_payment_line.xml',
        'views/bank_payment_line.xml',
        'views/account_move_line.xml',
        'views/ir_attachment.xml',
        'views/account_invoice_view.xml',
        'data/payment_seq.xml',
    ],
    'demo': ['demo/payment_demo.xml'],
    'installable': True,
}