1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/appointment_account_payment/__manifest__.py
2024-12-10 09:04:09 +07:00

34 lines
1.2 KiB
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Pay to Book',
'version': '1.0',
'category': 'Marketing/Online Appointment',
'summary': 'Up-front payment on bookings',
'description': """Add a payment step at the end of appointment and resource bookings""",
'license': 'OEEL-1',
'auto_install': True,
'depends': ['appointment', 'account_payment'],
'data': [
'data/product_data.xml',
'security/ir.model.access.csv',
'views/appointment_answer_input_views.xml',
'views/appointment_templates_appointments.xml',
'views/appointment_templates_payment.xml',
'views/appointment_templates_registration.xml',
'views/appointment_templates_validation.xml',
'views/appointment_type_views.xml',
'views/calendar_booking_templates.xml',
'views/calendar_booking_views.xml',
],
'demo': [
'data/product_demo.xml',
'data/appointment_demo.xml',
],
'assets': {
'web.assets_frontend': [
'appointment_account_payment/static/src/scss/appointment_payment.scss',
],
}
}