Skip to content

Commit 85e6369

Browse files
paradoxxxzerodanielduqma
authored andcommittedDec 20, 2022
[ADD] pos_receipt_hide_price: Add module
1 parent 4bc07f9 commit 85e6369

15 files changed

+739
-0
lines changed
 

‎pos_receipt_hide_price/README.rst

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
======================
2+
POS Receipt Hide Price
3+
======================
4+
5+
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
6+
!! This file is generated by oca-gen-addon-readme !!
7+
!! changes will be overwritten. !!
8+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
9+
10+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
11+
:target: https://odoo-community.org/page/development-status
12+
:alt: Beta
13+
.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png
14+
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
15+
:alt: License: LGPL-3
16+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fsale--promotion-lightgray.png?logo=github
17+
:target: https://github.com/OCA/sale-promotion/tree/14.0/pos_receipt_hide_price
18+
:alt: OCA/sale-promotion
19+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
20+
:target: https://translation.odoo-community.org/projects/sale-promotion-14-0/sale-promotion-14-0-pos_receipt_hide_price
21+
:alt: Translate me on Weblate
22+
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
23+
:target: https://runbot.odoo-community.org/runbot/296/14.0
24+
:alt: Try me on Runbot
25+
26+
|badge1| |badge2| |badge3| |badge4| |badge5|
27+
28+
This module adds a button in the receipt view to hide price from the receipt for printing and emailing purpose.
29+
30+
**Table of contents**
31+
32+
.. contents::
33+
:local:
34+
35+
Usage
36+
=====
37+
38+
Click the Hide Price button in the receipt view before printing / emailing the receipt.
39+
40+
Bug Tracker
41+
===========
42+
43+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/sale-promotion/issues>`_.
44+
In case of trouble, please check there if your issue has already been reported.
45+
If you spotted it first, help us smashing it by providing a detailed and welcomed
46+
`feedback <https://github.com/OCA/sale-promotion/issues/new?body=module:%20pos_receipt_hide_price%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
47+
48+
Do not contact contributors directly about support or help with technical issues.
49+
50+
Credits
51+
=======
52+
53+
Authors
54+
~~~~~~~
55+
56+
* Akretion
57+
58+
Contributors
59+
~~~~~~~~~~~~
60+
61+
* `Akretion <https://www.akretion.com>`_:
62+
63+
* Florian Mounier
64+
65+
Maintainers
66+
~~~~~~~~~~~
67+
68+
This module is maintained by the OCA.
69+
70+
.. image:: https://odoo-community.org/logo.png
71+
:alt: Odoo Community Association
72+
:target: https://odoo-community.org
73+
74+
OCA, or the Odoo Community Association, is a nonprofit organization whose
75+
mission is to support the collaborative development of Odoo features and
76+
promote its widespread use.
77+
78+
This module is part of the `OCA/sale-promotion <https://github.com/OCA/sale-promotion/tree/14.0/pos_receipt_hide_price>`_ project on GitHub.
79+
80+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

‎pos_receipt_hide_price/__init__.py

Whitespace-only changes.
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Copyright 2021 Akretion - Florian Mounier
2+
{
3+
"name": "POS Receipt Hide Price",
4+
"summary": "Add button to remove price from receipt.",
5+
"author": "Akretion, Odoo Community Association (OCA)",
6+
"website": "https://github.com/OCA/pos",
7+
"category": "Point of Sale",
8+
"version": "14.0.1.0.0",
9+
"license": "LGPL-3",
10+
"depends": ["point_of_sale"],
11+
"data": ["views/assets.xml"],
12+
"qweb": [
13+
"static/src/xml/OrderReceipt.xml",
14+
"static/src/xml/HidePrice.xml",
15+
"static/src/xml/ReceiptScreen.xml",
16+
"static/src/xml/ReprintReceiptScreen.xml",
17+
],
18+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
* `Akretion <https://www.akretion.com>`_:
2+
3+
* Florian Mounier
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This module adds a button in the receipt view to hide price from the receipt for printing and emailing purpose.
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Click the Hide Price button in the receipt view before printing / emailing the receipt.

0 commit comments

Comments
 (0)