Skip to content

Commit

Permalink
Merge 6913ac6 into 2205dcc
Browse files Browse the repository at this point in the history
  • Loading branch information
robyf70 committed Dec 31, 2019
2 parents 2205dcc + 6913ac6 commit b785c2b
Show file tree
Hide file tree
Showing 27 changed files with 3,174 additions and 0 deletions.
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 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, '
'Level Prime Srl'
),
'website': 'https://takobi.online',
'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 b785c2b

Please sign in to comment.