Skip to content

Commit a665018

Browse files
committed
Merge PR #1212 into 16.0
Signed-off-by legalsylvain
2 parents 2729913 + d5eb8be commit a665018

16 files changed

Lines changed: 756 additions & 0 deletions

File tree

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
============================================
2+
Point of Sale Restaurant - Receipt Usability
3+
============================================
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:1a11d1abc026f34c88ab54049fb5040af0a34796a2e9c332ed124822ab19c20d
11+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12+
13+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
14+
:target: https://odoo-community.org/page/development-status
15+
:alt: Beta
16+
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
17+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
18+
:alt: License: AGPL-3
19+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fpos-lightgray.png?logo=github
20+
:target: https://github.com/OCA/pos/tree/16.0/pos_restaurant_receipt_usability
21+
:alt: OCA/pos
22+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23+
:target: https://translation.odoo-community.org/projects/pos-16-0/pos-16-0-pos_restaurant_receipt_usability
24+
:alt: Translate me on Weblate
25+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
26+
:target: https://runboat.odoo-community.org/builds?repo=OCA/pos&target_branch=16.0
27+
:alt: Try me on Runboat
28+
29+
|badge1| |badge2| |badge3| |badge4| |badge5|
30+
31+
This module extends the functionality of Point of Sale Restaurant module,
32+
improving the display of the receipt screen, in a "Split receipt" use case.
33+
34+
By default, at the end of a split-ticket cashing, on the receipt page,
35+
the user only has the option of clicking on "Next order",
36+
which creates a new blank order.
37+
38+
In this use case, it is preferable to return to the screen which allows
39+
to continue "splitting" the same ticket, until all the order is paid.
40+
41+
**Without the module**
42+
43+
.. figure:: https://raw.githubusercontent.com/OCA/pos/16.0/pos_restaurant_receipt_usability/static/description/without_module.png
44+
45+
**With the module**
46+
47+
.. figure:: https://raw.githubusercontent.com/OCA/pos/16.0/pos_restaurant_receipt_usability/static/description/with_module.png
48+
49+
**Table of contents**
50+
51+
.. contents::
52+
:local:
53+
54+
Bug Tracker
55+
===========
56+
57+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/pos/issues>`_.
58+
In case of trouble, please check there if your issue has already been reported.
59+
If you spotted it first, help us to smash it by providing a detailed and welcomed
60+
`feedback <https://github.com/OCA/pos/issues/new?body=module:%20pos_restaurant_receipt_usability%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
61+
62+
Do not contact contributors directly about support or help with technical issues.
63+
64+
Credits
65+
=======
66+
67+
Authors
68+
~~~~~~~
69+
70+
* GRAP
71+
72+
Contributors
73+
~~~~~~~~~~~~
74+
75+
* Sylvain LE GAL (https://twitter.com/legalsylvain)
76+
77+
Maintainers
78+
~~~~~~~~~~~
79+
80+
This module is maintained by the OCA.
81+
82+
.. image:: https://odoo-community.org/logo.png
83+
:alt: Odoo Community Association
84+
:target: https://odoo-community.org
85+
86+
OCA, or the Odoo Community Association, is a nonprofit organization whose
87+
mission is to support the collaborative development of Odoo features and
88+
promote its widespread use.
89+
90+
.. |maintainer-legalsylvain| image:: https://github.com/legalsylvain.png?size=40px
91+
:target: https://github.com/legalsylvain
92+
:alt: legalsylvain
93+
94+
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
95+
96+
|maintainer-legalsylvain|
97+
98+
This module is part of the `OCA/pos <https://github.com/OCA/pos/tree/16.0/pos_restaurant_receipt_usability>`_ project on GitHub.
99+
100+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

pos_restaurant_receipt_usability/__init__.py

Whitespace-only changes.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Copyright (C) 2024-Today GRAP (http://www.grap.coop)
2+
# @author Sylvain LE GAL (https://twitter.com/legalsylvain)
3+
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
4+
5+
{
6+
"name": "Point of Sale Restaurant - Receipt Usability",
7+
"summary": "Improve receipt screen in the PoS Restaurant front office",
8+
"version": "16.0.1.0.0",
9+
"category": "Point of Sale",
10+
"maintainers": ["legalsylvain"],
11+
"author": "GRAP,Odoo Community Association (OCA)",
12+
"website": "https://github.com/OCA/pos",
13+
"license": "AGPL-3",
14+
"depends": ["pos_restaurant", "pos_receipt_usability"],
15+
"assets": {
16+
"point_of_sale.assets": [
17+
"pos_restaurant_receipt_usability/static/src/**/*.scss",
18+
"pos_restaurant_receipt_usability/static/src/**/*.xml",
19+
"pos_restaurant_receipt_usability/static/src/**/*.js",
20+
],
21+
},
22+
"installable": True,
23+
}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * pos_restaurant_receipt_usability
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 16.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"POT-Creation-Date: 2024-07-02 09:06+0000\n"
10+
"PO-Revision-Date: 2024-07-02 09:06+0000\n"
11+
"Last-Translator: \n"
12+
"Language-Team: \n"
13+
"MIME-Version: 1.0\n"
14+
"Content-Type: text/plain; charset=UTF-8\n"
15+
"Content-Transfer-Encoding: \n"
16+
"Plural-Forms: \n"
17+
18+
#. module: pos_restaurant_receipt_usability
19+
#. odoo-javascript
20+
#: code:addons/pos_restaurant_receipt_usability/static/src/xml/PaymentScreen.xml:0
21+
#: code:addons/pos_restaurant_receipt_usability/static/src/xml/PaymentScreen.xml:0
22+
#: code:addons/pos_restaurant_receipt_usability/static/src/xml/PaymentScreen.xml:0
23+
#, python-format
24+
msgid "Continue to Cash In"
25+
msgstr "Continuer l'encaissement"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* Sylvain LE GAL (https://twitter.com/legalsylvain)
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
This module extends the functionality of Point of Sale Restaurant module,
2+
improving the display of the receipt screen, in a "Split receipt" use case.
3+
4+
By default, at the end of a split-ticket cashing, on the receipt page,
5+
the user only has the option of clicking on "Next order",
6+
which creates a new blank order.
7+
8+
In this use case, it is preferable to return to the screen which allows
9+
to continue "splitting" the same ticket, until all the order is paid.
10+
11+
**Without the module**
12+
13+
.. figure:: ../static/description/without_module.png
14+
15+
**With the module**
16+
17+
.. figure:: ../static/description/with_module.png

0 commit comments

Comments
 (0)