1234567891011121314151617181920212223242526 |
- # -*- coding: utf-8 -*-
- # Part of Odoo. See LICENSE file for full copyright and licensing details.
- {
- 'name': 'Indian - Point of Sale',
- 'icon': '/l10n_in/static/description/icon.png',
- 'version': '1.0',
- 'description': """GST Point of Sale""",
- 'category': 'Accounting/Localizations/Point of Sale',
- 'depends': [
- 'l10n_in',
- 'point_of_sale'
- ],
- 'demo': [
- 'data/product_demo.xml',
- ],
- 'auto_install': True,
- 'assets': {
- 'point_of_sale.assets': [
- 'l10n_in_pos/static/src/js/**/*',
- 'l10n_in_pos/static/src/xml/**/*',
- ],
- },
- 'license': 'LGPL-3',
- }
|