Skip to content

Commit

Permalink
[ADD] new module account_receipt_print
Browse files Browse the repository at this point in the history
  • Loading branch information
primes2h committed Jan 24, 2021
1 parent cbc45c5 commit a71316a
Show file tree
Hide file tree
Showing 13 changed files with 1,105 additions and 0 deletions.
73 changes: 73 additions & 0 deletions account_receipt_print/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
================
Receipt Printing
================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--invoicing-lightgray.png?logo=github
:target: https://github.com/OCA/account-invoicing/tree/14.0/account_receipt_print
:alt: OCA/account-invoicing
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/account-invoicing-14-0/account-invoicing-14-0-account_receipt_print
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/95/14.0
:alt: Try me on Runbot

|badge1| |badge2| |badge3| |badge4| |badge5|

This module allows printing of sale and purchase receipts.

**Table of contents**

.. contents::
:local:

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/account-invoicing/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/account-invoicing/issues/new?body=module:%20account_receipt_print%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
~~~~~~~

* Pordenone Linux User Group (PNLUG)

Contributors
~~~~~~~~~~~~

* Sergio Zanchetta <https://github.com/primes2h>

Maintainers
~~~~~~~~~~~

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

This module is part of the `OCA/account-invoicing <https://github.com/OCA/account-invoicing/tree/14.0/account_receipt_print>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
4 changes: 4 additions & 0 deletions account_receipt_print/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Copyright 2020 Sergio Zanchetta (Associazione PNLUG - Gruppo Odoo)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

from . import models
18 changes: 18 additions & 0 deletions account_receipt_print/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copyright 2020 Sergio Zanchetta (Associazione PNLUG - Gruppo Odoo)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

{
'name': 'Receipt Printing',
'version': '14.0.1.0.0',
'category': 'Accounting & Finance',
'summary': 'Enable printing in sale and purchase receipts',
'author': 'Pordenone Linux User Group (PNLUG), Odoo Community Association (OCA)',
'website': 'https://github.com/OCA/account-financial-reporting',
'license': 'AGPL-3',
'depends': [
'account'],
'data': ['views/report_receipt.xml',
'views/account_report.xml',
'report/a5_report.xml'],
'installable': True,
}
168 changes: 168 additions & 0 deletions account_receipt_print/i18n/account_receipt_print.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,168 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_receipt_print
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-24 23:10+0100\n"
"PO-Revision-Date: 2021-01-24 22:09+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: \n"
"X-Generator: Poedit 2.0.6\n"

#. module: account_receipt_print
#: model:ir.actions.report,print_report_name:account_receipt_print.account_receipts
msgid "(object._get_receipt_report_base_filename())"
msgstr ""

#. module: account_receipt_print
#: model_terms:ir.ui.view,arch_db:account_receipt_print.report_receipt_document
msgid ""
"<span groups=\"account.group_show_line_subtotals_tax_excluded\">Amount</span>\n"
" <span groups=\"account.group_show_line_subtotals_tax_included\">Total Price</span>"
msgstr ""

#. module: account_receipt_print
#: model_terms:ir.ui.view,arch_db:account_receipt_print.report_receipt_document
msgid "<span>Description</span>"
msgstr ""

#. module: account_receipt_print
#: model_terms:ir.ui.view,arch_db:account_receipt_print.report_receipt_document
msgid "<span>Quantity</span>"
msgstr ""

#. module: account_receipt_print
#: model_terms:ir.ui.view,arch_db:account_receipt_print.report_receipt_document
msgid "<span>Taxes</span>"
msgstr ""

#. module: account_receipt_print
#: model_terms:ir.ui.view,arch_db:account_receipt_print.report_receipt_document
msgid "<span>Unit Price</span>"
msgstr ""

#. module: account_receipt_print
#: model_terms:ir.ui.view,arch_db:account_receipt_print.report_receipt_document
msgid "<strong class=\"mr16\">Subtotal</strong>"
msgstr ""

#. module: account_receipt_print
#: model_terms:ir.ui.view,arch_db:account_receipt_print.report_receipt_document
msgid "<strong>Amount In Words:</strong>"
msgstr ""

#. module: account_receipt_print
#: model_terms:ir.ui.view,arch_db:account_receipt_print.report_receipt_document
msgid "<strong>Customer Code:</strong>"
msgstr ""

#. module: account_receipt_print
#: model_terms:ir.ui.view,arch_db:account_receipt_print.report_receipt_document
msgid "<strong>Due Date:</strong>"
msgstr ""

#. module: account_receipt_print
#: model_terms:ir.ui.view,arch_db:account_receipt_print.report_receipt_document
msgid "<strong>Receipt Date:</strong>"
msgstr ""

#. module: account_receipt_print
#: model_terms:ir.ui.view,arch_db:account_receipt_print.report_receipt_document
msgid "<strong>Reference:</strong>"
msgstr ""

#. module: account_receipt_print
#: model_terms:ir.ui.view,arch_db:account_receipt_print.report_receipt_document
msgid "<strong>Source:</strong>"
msgstr ""

#. module: account_receipt_print
#: model_terms:ir.ui.view,arch_db:account_receipt_print.report_receipt_document
msgid "<strong>Subtotal</strong>"
msgstr ""

#. module: account_receipt_print
#: model_terms:ir.ui.view,arch_db:account_receipt_print.report_receipt_document
msgid "<strong>Total</strong>"
msgstr ""

#. module: account_receipt_print
#: model:ir.model.fields,field_description:account_receipt_print.field_account_bank_statement_line__amount_in_words
#: model:ir.model.fields,field_description:account_receipt_print.field_account_move__amount_in_words
#: model:ir.model.fields,field_description:account_receipt_print.field_account_payment__amount_in_words
msgid "Amount In Words"
msgstr ""

#. module: account_receipt_print
#: model_terms:ir.ui.view,arch_db:account_receipt_print.report_receipt_document
msgid "Cancelled Receipt"
msgstr ""

#. module: account_receipt_print
#: model:ir.model.fields,field_description:account_receipt_print.field_account_move__display_name
msgid "Display Name"
msgstr ""

#. module: account_receipt_print
#: model_terms:ir.ui.view,arch_db:account_receipt_print.report_receipt_document
msgid "Draft Receipt"
msgstr ""

#. module: account_receipt_print
#: model:ir.model.fields,field_description:account_receipt_print.field_account_move__id
msgid "ID"
msgstr ""

#. module: account_receipt_print
#: model:ir.model,name:account_receipt_print.model_account_move
msgid "Journal Entry"
msgstr ""

#. module: account_receipt_print
#: model:ir.model.fields,field_description:account_receipt_print.field_account_move____last_update
msgid "Last Modified on"
msgstr ""

#. module: account_receipt_print
#: code:addons/account_receipt_print/models/account_move.py:0
#, python-format
msgid "Only receipts could be printed."
msgstr ""

#. module: account_receipt_print
#: model_terms:ir.ui.view,arch_db:account_receipt_print.report_receipt_document
msgid "Please use the following communication for your payment:"
msgstr ""

#. module: account_receipt_print
#: model_terms:ir.ui.view,arch_db:account_receipt_print.report_receipt_document
msgid "Purchase Receipt"
msgstr ""

#. module: account_receipt_print
#: model_terms:ir.ui.view,arch_db:account_receipt_print.report_receipt_document
msgid "Receipt"
msgstr ""

#. module: account_receipt_print
#: model:ir.actions.report,name:account_receipt_print.account_receipts
msgid "Receipts"
msgstr ""

#. module: account_receipt_print
#: model_terms:ir.ui.view,arch_db:account_receipt_print.report_receipt_document
msgid "Tax ID"
msgstr ""

#. module: account_receipt_print
#: model_terms:ir.ui.view,arch_db:account_receipt_print.report_receipt_document
msgid "on"
msgstr ""
Loading

0 comments on commit a71316a

Please sign in to comment.