flectra/addons/pos_sale/__manifest__.py
flectra-admin 769eafb483 [INIT] Inception of Flectra from Odoo
Flectra is Forked from Odoo v11 commit : (6135e82d73)
2018-01-16 11:45:59 +05:30

26 lines
737 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'pos_sale',
'version': '1.0',
'category': 'Hidden',
'sequence': 6,
'summary': 'Link module between Point of Sale and Sales',
'description': """
This module adds a custom Sales Channel for the point of sale to be able to view and manage your point of sale sales with more ease.
""",
'depends': ['point_of_sale', 'sale_management'],
'data': [
'data/pos_sale_data.xml',
'security/pos_sale_security.xml',
'security/ir.model.access.csv',
'views/sales_team_views.xml',
'views/pos_config_views.xml',
],
'installable': True,
'auto_install': True,
}