mirror of
https://github.com/bringout/odoomates.git
synced 2026-04-20 08:12:00 +02:00
- All manifest versions updated to 19.0.1.0.0
- Renamed all <tree> view tags to <list> (19.0 requirement)
- Renamed tree,form to list,form in view_mode fields
- Removed account.chart.template views (AbstractModel in 19.0)
- Fixed xpath /tree/ to /list/ in account_journal.xml for payment methods
- Modules: om_account_accountant, accounting_pdf_reports,
om_account_budget, om_recurring_payments, om_account_daily_reports
🤖 assisted by claude
23 lines
793 B
Python
23 lines
793 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Odoo 19 Recurring Payment',
|
|
'author': 'Odoo Mates',
|
|
'category': 'Accounting',
|
|
'version': '19.0.1.0.0',
|
|
'description': """Odoo 16 Recurring Payment, Recurring Payment In Odoo, Odoo 16 Accounting""",
|
|
'summary': 'Use recurring payments to handle periodically repeated payments',
|
|
'sequence': 11,
|
|
'website': 'https://www.odoomates.tech',
|
|
'depends': ['account'],
|
|
'license': 'LGPL-3',
|
|
'data': [
|
|
'data/sequence.xml',
|
|
'data/recurring_cron.xml',
|
|
'security/ir.model.access.csv',
|
|
'views/recurring_template_view.xml',
|
|
'views/recurring_payment_view.xml'
|
|
],
|
|
'images': ['static/description/banner.png'],
|
|
}
|