Skip to content

Commit ebdcc66

Browse files
henrybackmantrisdoan
authored andcommitted
[ADD] pos_display_order_number
Adds order number in POS total summary. Depends on the `pos_divide_order_summary` to show the order number left of the total amount in OrderWidget.
1 parent dfa4435 commit ebdcc66

File tree

16 files changed

+706
-0
lines changed

16 files changed

+706
-0
lines changed
Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
========================
2+
POS Display Order Number
3+
========================
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:7198e79c77f356269960f43f3a8be47b1ee7f8c38e14312017c65486b8981c54
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/17.0/pos_display_order_number
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-17-0/pos-17-0-pos_display_order_number
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=17.0
27+
:alt: Try me on Runboat
28+
29+
|badge1| |badge2| |badge3| |badge4| |badge5|
30+
31+
Adds order number in POS total summary. Depends on the
32+
``pos_divide_order_summary`` to show the order number left of the total
33+
amount in OrderWidget.
34+
35+
**Table of contents**
36+
37+
.. contents::
38+
:local:
39+
40+
Bug Tracker
41+
===========
42+
43+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/pos/issues>`_.
44+
In case of trouble, please check there if your issue has already been reported.
45+
If you spotted it first, help us to smash it by providing a detailed and welcomed
46+
`feedback <https://github.com/OCA/pos/issues/new?body=module:%20pos_display_order_number%0Aversion:%2017.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+
* Camptocamp
57+
58+
Contributors
59+
------------
60+
61+
- `Camptocamp <https://www.camptocamp.com>`__:
62+
63+
- Henry Backman [email protected]
64+
65+
- `Trobz <https://www.trobz.com>`__:
66+
67+
- Tris Doan [email protected]
68+
69+
Maintainers
70+
-----------
71+
72+
This module is maintained by the OCA.
73+
74+
.. image:: https://odoo-community.org/logo.png
75+
:alt: Odoo Community Association
76+
:target: https://odoo-community.org
77+
78+
OCA, or the Odoo Community Association, is a nonprofit organization whose
79+
mission is to support the collaborative development of Odoo features and
80+
promote its widespread use.
81+
82+
.. |maintainer-henrybackman| image:: https://github.com/henrybackman.png?size=40px
83+
:target: https://github.com/henrybackman
84+
:alt: henrybackman
85+
86+
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
87+
88+
|maintainer-henrybackman|
89+
90+
This module is part of the `OCA/pos <https://github.com/OCA/pos/tree/17.0/pos_display_order_number>`_ project on GitHub.
91+
92+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

pos_display_order_number/__init__.py

Whitespace-only changes.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Copyright 2024 Camptocamp SA (https://www.camptocamp.com).
2+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
3+
4+
{
5+
"name": "POS Display Order Number",
6+
"summary": "POS - Display order number in order summary",
7+
"version": "17.0.1.0.1",
8+
"development_status": "Beta",
9+
"category": "Point Of Sale",
10+
"website": "https://github.com/OCA/pos",
11+
"author": "Camptocamp, Odoo Community Association (OCA)",
12+
"maintainers": ["henrybackman"],
13+
"license": "AGPL-3",
14+
"application": False,
15+
"installable": True,
16+
"depends": ["pos_divide_order_summary"],
17+
"assets": {
18+
"point_of_sale._assets_pos": [
19+
"pos_display_order_number/static/src/xml/pos_display_order_number.xml",
20+
"pos_display_order_number/static/src/js/overrides/components/order_widget/**/*",
21+
],
22+
"web.assets_tests": [
23+
"pos_display_order_number/static/tests/tours/**/*",
24+
],
25+
},
26+
"sequence": 30,
27+
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * pos_display_order_number
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 17.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"PO-Revision-Date: 2024-11-25 12:00+0000\n"
10+
"Last-Translator: Henry Backman <[email protected]>\n"
11+
"Language-Team: none\n"
12+
"Language: fr\n"
13+
"MIME-Version: 1.0\n"
14+
"Content-Type: text/plain; charset=UTF-8\n"
15+
"Content-Transfer-Encoding: \n"
16+
"Plural-Forms: nplurals=2; plural=n > 1;\n"
17+
"X-Generator: Weblate 4.17\n"
18+
19+
#. module: pos_display_order_number
20+
#. odoo-javascript
21+
#: code:addons/pos_display_order_number/static/src/js/overrides/components/order_widget/order_widget.js:0
22+
#, python-format
23+
msgid "Order"
24+
msgstr "Commande"
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * pos_display_order_number
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 17.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"PO-Revision-Date: 2024-11-25 12:00+0000\n"
10+
"Last-Translator: Henry Backman <[email protected]>\n"
11+
"Language-Team: none\n"
12+
"Language: fr_CH\n"
13+
"MIME-Version: 1.0\n"
14+
"Content-Type: text/plain; charset=UTF-8\n"
15+
"Content-Transfer-Encoding: \n"
16+
"Plural-Forms: nplurals=2; plural=n > 1;\n"
17+
"X-Generator: Weblate 4.17\n"
18+
19+
#. module: pos_display_order_number
20+
#. odoo-javascript
21+
#: code:addons/pos_display_order_number/static/src/js/overrides/components/order_widget/order_widget.js:0
22+
#, python-format
23+
msgid "Order"
24+
msgstr "Commande"
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * pos_display_order_number
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 17.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"Last-Translator: \n"
10+
"Language-Team: \n"
11+
"MIME-Version: 1.0\n"
12+
"Content-Type: text/plain; charset=UTF-8\n"
13+
"Content-Transfer-Encoding: \n"
14+
"Plural-Forms: \n"
15+
16+
#. module: pos_display_order_number
17+
#. odoo-javascript
18+
#: code:addons/pos_display_order_number/static/src/js/overrides/components/order_widget/order_widget.js:0
19+
#, python-format
20+
msgid "Order"
21+
msgstr ""
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["whool"]
3+
build-backend = "whool.buildapi"
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- [Camptocamp](https://www.camptocamp.com):
2+
- Henry Backman <[email protected]>
3+
- [Trobz](https://www.trobz.com):
4+
- Tris Doan <[email protected]>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Adds order number in POS total summary.
2+
Depends on the `pos_divide_order_summary` to show the order number left of the
3+
total amount in OrderWidget.
9.23 KB
Loading

0 commit comments

Comments
 (0)