1
0
Fork 0
This repository has been archived on 2022-08-09. You can view files and clone it, but cannot push or open issues or pull requests.
odoo-pos-distribution/odoo/addons/pos_product_sequence/__manifest__.py

34 lines
1.2 KiB
Python
Raw Normal View History

2019-08-24 15:55:36 +00:00
# -*- coding: utf-8 -*-
2022-08-06 18:39:49 +00:00
# Powered by Kanak Infosystems LLP.
# © 2020 Kanak Infosystems LLP. (<https://www.kanakinfosystems.com>)
2019-08-24 15:55:36 +00:00
{
'name': 'POS Product Sequence',
2022-08-06 18:39:49 +00:00
'version': '15.0.1.0',
'summary': 'POS Product Sequence module is used in Odoo POS to display the products position in POS Session according to the sequence or numbers assigned. If you have 5 products in backend and you want to set its sequence from 1 to 5, then same sequence wise product show in POS Session in odoo.',
2019-08-24 15:55:36 +00:00
'description': """
Point of Sale Product Sequence
""",
'license': 'OPL-1',
2022-08-06 18:39:49 +00:00
'author': 'Kanak Infosystems LLP.',
2019-08-24 15:55:36 +00:00
'website': 'https://www.kanakinfosystems.com',
2022-08-06 18:39:49 +00:00
'images': ['static/description/banner.jpeg'],
'category': 'Sales/Point of Sale',
2019-08-24 15:55:36 +00:00
'depends': ['point_of_sale'],
'data': [
2022-08-06 18:39:49 +00:00
'views/knk_pos_product_sequence_views.xml',
2019-08-24 15:55:36 +00:00
],
2022-08-06 18:39:49 +00:00
'assets': {
'point_of_sale.assets': [
'pos_product_sequence/static/src/js/models.js',
],
},
'sequence': 1,
'installable': True,
'application': False,
'auto_install': False,
2019-08-24 15:55:36 +00:00
'price': 10,
'currency': 'EUR',
2022-08-06 18:39:49 +00:00
'live_test_url': 'https://youtu.be/pYVNy3A3ieE',
2019-08-24 15:55:36 +00:00
}