You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
774 B
31 lines
774 B
# -*- coding: utf-8 -*-
|
|
# Copyright 2018 Tecnativa - Jairo Llopis
|
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).
|
|
|
|
{
|
|
'name': 'POS Pricelist',
|
|
'version': '10.0.1.0.2',
|
|
'category': 'Point Of Sale',
|
|
'author': "Tecnativa, "
|
|
"Odoo SA, "
|
|
"Odoo Community Association (OCA)",
|
|
'summary': 'Pricelist for Point of sale',
|
|
'license': 'LGPL-3',
|
|
'post_init_hook': 'post_init_hook',
|
|
'depends': [
|
|
"point_of_sale",
|
|
],
|
|
"external_dependencies": {
|
|
"python": [
|
|
"oca.decorators",
|
|
],
|
|
},
|
|
'data': [
|
|
"security/ir.model.access.csv",
|
|
"templates/assets.xml",
|
|
"views/pos_config_view.xml",
|
|
],
|
|
'qweb': [
|
|
'static/src/xml/pos.xml'
|
|
],
|
|
}
|