oca-ocb-sale/odoo-bringout-oca-ocb-website_sale_autocomplete/website_sale_autocomplete/__manifest__.py
Ernad Husremovic 73afc09215 19.0 vanilla
2026-03-09 09:32:12 +01:00

31 lines
1.1 KiB
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Google places autocompletion',
'category': 'Website/Website',
'summary': 'Assist your users with automatic completion & suggestions when filling their address during checkout',
'version': '1.0',
'description': "Assist your users with automatic completion & suggestions when filling their address during checkout",
'depends': [
'website_sale',
'google_address_autocomplete',
],
'data': [
'views/templates.xml',
'views/res_config_settings_views.xml',
],
'assets': {
'web.assets_frontend': [
'google_address_autocomplete/static/src/google_places_session.js',
'website_sale_autocomplete/static/src/interactions/address_form.js',
'website_sale_autocomplete/static/src/xml/autocomplete.xml',
],
'web.assets_tests': [
'website_sale_autocomplete/static/tests/**/*.js'
],
},
'auto_install': True,
'installable': True,
'author': 'Odoo S.A.',
'license': 'LGPL-3',
}