Odoo18-Base/addons/website_sale_autocomplete/__manifest__.py
2025-01-06 10:57:38 +07:00

29 lines
958 B
Python

# -*- encoding: utf-8 -*-
# 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'
],
'data': [
'views/templates.xml',
'views/res_config_settings_views.xml',
],
'assets': {
'web.assets_frontend': [
'website_sale_autocomplete/static/src/js/address_form.js',
'website_sale_autocomplete/static/src/xml/autocomplete.xml',
],
'web.assets_tests': [
'website_sale_autocomplete/static/tests/**/*.js'
],
},
'installable': True,
'license': 'LGPL-3',
}