123456789101112131415161718192021222324 |
- # -*- coding: utf-8 -*-
- {
- 'name': "Eiru Nutty Bavariant Invoice",
- 'summary': """This module print POS receipt.""",
- 'author': "Eiru",
- 'website': "http://www.eiru.com.py",
- 'category': 'Point of Sale',
- 'version': '0.1',
- 'depends': [
- 'base',
- 'point_of_sale',
- 'eiru_num2word',
- ],
- "data": [
- "template.xml",
- ],
- 'qweb': [
- 'static/src/xml/pos.xml',
- 'static/src/xml/pos_receipt.xml',
- ],
- 'license': 'AGPL-3',
- 'installable': True,
- 'auto_install': False,
- }
|