30 lines
755 B
Python
30 lines
755 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
{
|
||
|
'name': 'Indian - Point of Sale',
|
||
|
'version': '1.0',
|
||
|
'description': """GST Point of Sale""",
|
||
|
'category': 'Accounting/Localizations/Point of Sale',
|
||
|
'depends': [
|
||
|
'l10n_in',
|
||
|
'point_of_sale'
|
||
|
],
|
||
|
'data': [
|
||
|
'views/pos_order_line_views.xml',
|
||
|
'views/res_config_settings_views.xml',
|
||
|
'data/pos_bill_data.xml',
|
||
|
],
|
||
|
'demo': [
|
||
|
'data/product_demo.xml',
|
||
|
],
|
||
|
'auto_install': True,
|
||
|
'assets': {
|
||
|
'point_of_sale._assets_pos': [
|
||
|
'l10n_in/static/src/helpers/hsn_summary.js',
|
||
|
'l10n_in_pos/static/src/**/*',
|
||
|
],
|
||
|
},
|
||
|
'license': 'LGPL-3',
|
||
|
}
|