12345678910111213141516171819202122232425262728293031323334 |
- # -*- coding: utf-8 -*-
- {
- 'name': "POS Customer",
- 'summary': """
- It alerts for the customer selection before Payment.""",
- 'description': """
- It alerts for the customer selection before Payment.
- """,
- 'author': "DRC Systems India Pvt. Ltd.",
- 'website': "http://www.drcsystems.com",
- # Categories can be used to filter modules in modules listing
- # Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml
- # for the full list
- 'category': 'Point Of Sale',
- 'version': '0.1',
- # any module necessary for this one to work correctly
- 'depends': ['base','point_of_sale'],
- # always loaded
- 'data': [
- 'templates.xml',
- ],
- # only loaded in demonstration mode
- 'demo': [
- ],
- 'installable': True,
- 'auto_install': False,
- }
|