mirror of
https://github.com/bringout/oca-payment.git
synced 2026-04-22 15:02:03 +02:00
Flattened directory structure by moving payment packages from redundant packages/ subdirectory to the root level of oca-payment repository. Changes: - Moved odoo-bringout-oca-payment-* from packages/ to root - Updated CLAUDE.md to reflect new flat structure - Removed redundant packages/ directory 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
28 lines
1 KiB
Python
28 lines
1 KiB
Python
# Copyright 2014 Akretion - Alexis de Lattre <alexis.delattre@akretion.com>
|
|
# Copyright 2014 Tecnativa - Pedro M. Baeza
|
|
# Copyright 2018 Tecnativa - Carlos Dauden
|
|
# Copyright 2021 Tecnativa - Víctor Martínez
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
{
|
|
"name": "Account Payment Partner",
|
|
"version": "16.0.1.2.7",
|
|
"category": "Banking addons",
|
|
"license": "AGPL-3",
|
|
"summary": "Adds payment mode on partners and invoices",
|
|
"author": "Akretion, Tecnativa, Odoo Community Association (OCA)",
|
|
"website": "https://github.com/OCA/bank-payment",
|
|
"development_status": "Mature",
|
|
"depends": ["account_payment_mode"],
|
|
"data": [
|
|
"views/res_partner_view.xml",
|
|
"views/account_move_view.xml",
|
|
"views/account_move_line.xml",
|
|
"views/account_payment_mode.xml",
|
|
"views/report_invoice.xml",
|
|
"reports/account_invoice_report_view.xml",
|
|
],
|
|
"demo": ["demo/partner_demo.xml"],
|
|
"installable": True,
|
|
"pre_init_hook": "pre_init_hook",
|
|
}
|