Skip to content

Commit

Permalink
Merge 4fd7b9b into 2205dcc
Browse files Browse the repository at this point in the history
  • Loading branch information
robyf70 committed Jan 14, 2020
2 parents 2205dcc + 4fd7b9b commit 51d4a83
Show file tree
Hide file tree
Showing 32 changed files with 3,645 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
29 changes: 29 additions & 0 deletions fiscal_epos_print/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
===================
EPoS Fiscal Printer
===================

This module allow to print receipt of point_of_sale,
on fiscal printer Epson via EPos protocol.

Configuration
=============

- print list departments of your fiscal printer
- mapping odoo sale taxes with group taxes - departments of fiscal printer, for each sale tax on odoo, using field "Department group tax on fiscal printer 1~99"
- In odoo, use taxes included in price
- connect your fiscal printer on network and find IP
- open point_of_sale configuration and fill Printer IP Address field, with printer IP
- that's all, at validation of payment on POS session system print fiscal receipt.


Credits
=======

Contributors
------------

* Leonardo Donelli
* Lorenzo Battistini
* Alessio Gerace

Do not contact contributors directly about support or help with technical issues.
3 changes: 3 additions & 0 deletions fiscal_epos_print/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# coding=utf-8

from . import models
33 changes: 33 additions & 0 deletions fiscal_epos_print/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# coding=utf-8
# 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': '10.0.1.0.0',
'category': 'POS, Fiscal, Hardware, Driver',
'summary': 'ePOS-Print XML Fiscal Printer Driver',
'author': (
'Agile Business Group, '
'Leonardo Donelli @ Creativi Quadrati, TAKOBI, '
'Roberto Fichera @ Level Prime Srl'
),
'website': 'https://takobi.online',
'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 51d4a83

Please sign in to comment.