Skip to content

Commit

Permalink
Merge ea82e0c into 421c9ee
Browse files Browse the repository at this point in the history
  • Loading branch information
eLBati committed Jan 9, 2020
2 parents 421c9ee + ea82e0c commit c38e16a
Show file tree
Hide file tree
Showing 30 changed files with 3,545 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
30 changes: 30 additions & 0 deletions fiscal_epos_print/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Leonardo Donelli - Creativi Quadrati
# © 2016 Alessio Gerace - Agile Business Group
# © 2018-2019 Lorenzo Battistini
# © 2019-2020 Roberto Fichera - Level Prime Srl
# 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.xml',
'views/point_of_sale.xml',
'views/assets.xml',
],
'qweb': [
'static/src/xml/pos.xml'
],
'installable': True,
'auto_install': False,
}

0 comments on commit c38e16a

Please sign in to comment.