Skip to content

Commit e43038a

Browse files
[ADD] Added this module pos_product_search_gs1 This module enhances the POS (Point of Sale) system by implementing barcode scanning functionality for product search.
1 parent dfa4435 commit e43038a

File tree

10 files changed

+566
-0
lines changed

10 files changed

+566
-0
lines changed

pos_product_search_gs1/README.rst

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
======================
2+
POS Product Search gs1
3+
======================
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:4f4a9bcff0445d69b732a78df5b5215745e0fb4a8bdd71282120d40a272ee5fe
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-LGPL--3-blue.png
17+
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
18+
:alt: License: LGPL-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_product_search_gs1
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_product_search_gs1
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+
This module enhances the POS (Point of Sale) system by implementing
32+
barcode scanning functionality for product search.
33+
34+
**Table of contents**
35+
36+
.. contents::
37+
:local:
38+
39+
Bug Tracker
40+
===========
41+
42+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/pos/issues>`_.
43+
In case of trouble, please check there if your issue has already been reported.
44+
If you spotted it first, help us to smash it by providing a detailed and welcomed
45+
`feedback <https://github.com/OCA/pos/issues/new?body=module:%20pos_product_search_gs1%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
46+
47+
Do not contact contributors directly about support or help with technical issues.
48+
49+
Credits
50+
=======
51+
52+
Authors
53+
-------
54+
55+
* Serpent Consulting Services Pvt Ltd
56+
57+
Contributors
58+
------------
59+
60+
- SerpentCS https://www.serpentcs.com:
61+
62+
- Kamla Dodiya [email protected]
63+
64+
Maintainers
65+
-----------
66+
67+
This module is maintained by the OCA.
68+
69+
.. image:: https://odoo-community.org/logo.png
70+
:alt: Odoo Community Association
71+
:target: https://odoo-community.org
72+
73+
OCA, or the Odoo Community Association, is a nonprofit organization whose
74+
mission is to support the collaborative development of Odoo features and
75+
promote its widespread use.
76+
77+
This module is part of the `OCA/pos <https://github.com/OCA/pos/tree/17.0/pos_product_search_gs1>`_ project on GitHub.
78+
79+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

pos_product_search_gs1/__init__.py

Whitespace-only changes.
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "POS Product Search gs1",
3+
"summary": """POS Product Search gs1""",
4+
"category": "Point of Sale",
5+
"depends": ["point_of_sale"],
6+
"version": "17.0.1.1.0",
7+
"author": "Serpent Consulting Services Pvt Ltd, Odoo Community Association (OCA)",
8+
"website": "https://github.com/OCA/pos",
9+
"assets": {
10+
"point_of_sale._assets_pos": [
11+
"pos_product_search_gs1/static/src/js/product_list.esm.js",
12+
"pos_product_search_gs1/static/src/xml/product_list.xml",
13+
],
14+
},
15+
"installable": True,
16+
"auto_install": False,
17+
"license": "LGPL-3",
18+
}

pos_product_search_gs1/pyproject.toml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["whool"]
3+
build-backend = "whool.buildapi"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- SerpentCS <https://www.serpentcs.com>:
2+
- Kamla Dodiya [email protected]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This module enhances the POS (Point of Sale) system by implementing barcode scanning functionality for product search.
Loading

0 commit comments

Comments
 (0)