Skip to content

Commit

Permalink
Merge c03520c into a3ca0dd
Browse files Browse the repository at this point in the history
  • Loading branch information
eLBati committed Dec 20, 2019
2 parents a3ca0dd + c03520c commit b9ce27e
Show file tree
Hide file tree
Showing 28 changed files with 3,282 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ build/
develop-eggs/
dist/
eggs/
lib/
lib64/
parts/
sdist/
Expand Down
1 change: 1 addition & 0 deletions fiscal_epos_print/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
29 changes: 29 additions & 0 deletions fiscal_epos_print/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Leonardo Donelli - Creativi Quadrati
# © 2016 Alessio Gerace - Agile Business Group
# © 2018-2019 Lorenzo Battistini
# License GPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).

{
'name': 'Driver for ePOS-Print XML compatible fiscal printers',
'version': '12.0.1.0.0',
'category': 'POS, Fiscal, Hardware, Driver',
'summary': 'ePOS-Print XML Fiscal Printer Driver - Compatible Epson printers: '
'FP81II, FP90III',
'author': (
'Odoo Community Association (OCA), Agile Business Group, '
'Leonardo Donelli, TAKOBI, Level Prime Srl'
),
'license': 'GPL-3',
'website': 'https://github.com/OCA/l10n-italy',
'depends': ['point_of_sale', 'pos_order_mgmt'],
'data': [
'views/account_statement_view.xml',
'views/point_of_sale.xml',
'views/assets.xml',
],
'qweb': [
'static/src/xml/pos.xml'
],
'installable': True,
'auto_install': False,
}
Loading

0 comments on commit b9ce27e

Please sign in to comment.