odoo-addon-barcodes-generator-location 16.0.1.0.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. odoo/addons/barcodes_generator_location/README.rst +130 -0
  2. odoo/addons/barcodes_generator_location/__init__.py +2 -0
  3. odoo/addons/barcodes_generator_location/__manifest__.py +19 -0
  4. odoo/addons/barcodes_generator_location/demo/barcode_rule.xml +21 -0
  5. odoo/addons/barcodes_generator_location/demo/function.xml +17 -0
  6. odoo/addons/barcodes_generator_location/demo/ir_sequence.xml +12 -0
  7. odoo/addons/barcodes_generator_location/demo/stock_location.xml +12 -0
  8. odoo/addons/barcodes_generator_location/hooks.py +13 -0
  9. odoo/addons/barcodes_generator_location/i18n/barcodes_generator_location.pot +82 -0
  10. odoo/addons/barcodes_generator_location/i18n/es.po +95 -0
  11. odoo/addons/barcodes_generator_location/i18n/fr.po +95 -0
  12. odoo/addons/barcodes_generator_location/i18n/hr.po +96 -0
  13. odoo/addons/barcodes_generator_location/i18n/nl_NL.po +96 -0
  14. odoo/addons/barcodes_generator_location/models/__init__.py +3 -0
  15. odoo/addons/barcodes_generator_location/models/barcode_rule.py +11 -0
  16. odoo/addons/barcodes_generator_location/models/stock_location.py +48 -0
  17. odoo/addons/barcodes_generator_location/readme/CONFIGURE.rst +2 -0
  18. odoo/addons/barcodes_generator_location/readme/CONTRIBUTORS.rst +5 -0
  19. odoo/addons/barcodes_generator_location/readme/CREDITS.rst +2 -0
  20. odoo/addons/barcodes_generator_location/readme/DESCRIPTION.rst +20 -0
  21. odoo/addons/barcodes_generator_location/readme/USAGE.rst +15 -0
  22. odoo/addons/barcodes_generator_location/static/description/icon.png +0 -0
  23. odoo/addons/barcodes_generator_location/static/description/index.html +487 -0
  24. odoo/addons/barcodes_generator_location/static/description/stock_location_sequence_generation.png +0 -0
  25. odoo/addons/barcodes_generator_location/tests/__init__.py +2 -0
  26. odoo/addons/barcodes_generator_location/tests/test_barcode_generator.py +27 -0
  27. odoo/addons/barcodes_generator_location/views/stock_location.xml +56 -0
  28. odoo_addon_barcodes_generator_location-16.0.1.0.0.1.dist-info/METADATA +149 -0
  29. odoo_addon_barcodes_generator_location-16.0.1.0.0.1.dist-info/RECORD +31 -0
  30. odoo_addon_barcodes_generator_location-16.0.1.0.0.1.dist-info/WHEEL +5 -0
  31. odoo_addon_barcodes_generator_location-16.0.1.0.0.1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,149 @@
1
+ Metadata-Version: 2.1
2
+ Name: odoo-addon-barcodes-generator-location
3
+ Version: 16.0.1.0.0.1
4
+ Summary: Generate Barcodes for Stock Locations
5
+ Home-page: https://github.com/OCA/stock-logistics-barcode
6
+ Author: LasLabs, Odoo Community Association (OCA)
7
+ Author-email: support@odoo-community.org
8
+ License: AGPL-3
9
+ Platform: UNKNOWN
10
+ Classifier: Programming Language :: Python
11
+ Classifier: Framework :: Odoo
12
+ Classifier: Framework :: Odoo :: 16.0
13
+ Classifier: License :: OSI Approved :: GNU Affero General Public License v3
14
+ Requires-Python: >=3.10
15
+ Requires-Dist: odoo-addon-barcodes-generator-abstract <16.1dev,>=16.0dev
16
+ Requires-Dist: odoo <16.1dev,>=16.0a
17
+
18
+ =====================================
19
+ Generate Barcodes for Stock Locations
20
+ =====================================
21
+
22
+ ..
23
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
24
+ !! This file is generated by oca-gen-addon-readme !!
25
+ !! changes will be overwritten. !!
26
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
27
+ !! source digest: sha256:6aaeee640999db99f4f6d879b9c42e9626848385af8d2315cff1c6590df316ae
28
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
29
+
30
+ .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
31
+ :target: https://odoo-community.org/page/development-status
32
+ :alt: Beta
33
+ .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
34
+ :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
35
+ :alt: License: AGPL-3
36
+ .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fstock--logistics--barcode-lightgray.png?logo=github
37
+ :target: https://github.com/OCA/stock-logistics-barcode/tree/16.0/barcodes_generator_location
38
+ :alt: OCA/stock-logistics-barcode
39
+ .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
40
+ :target: https://translation.odoo-community.org/projects/stock-logistics-barcode-16-0/stock-logistics-barcode-16-0-barcodes_generator_location
41
+ :alt: Translate me on Weblate
42
+ .. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
43
+ :target: https://runboat.odoo-community.org/builds?repo=OCA/stock-logistics-barcode&target_branch=16.0
44
+ :alt: Try me on Runboat
45
+
46
+ |badge1| |badge2| |badge3| |badge4| |badge5|
47
+
48
+ This module expands Odoo functionality, allowing user to generate barcode
49
+ depending on a given barcode rule for Stock Locations.
50
+
51
+ For example, a typical pattern for partners is "042........." that means
52
+ that:
53
+ * the EAN13 code will begin by '042'
54
+ * followed by 0 digits (named Barcode Base in this module)
55
+ * a 13 digit control
56
+
57
+ With this module, it is possible to:
58
+
59
+ * Assign a pattern (barcode.rule) to a stock.location
60
+
61
+ * Define a Barcode base:
62
+ * manually, if the base of the barcode must be set by a user. (typically an
63
+ internal code defined in your company)
64
+ * automatically by a sequence, if you want to let Odoo to increment a
65
+ sequence. (typical case of a customer number incrementation)
66
+
67
+ * Generate a barcode, based on the defined pattern and the barcode base
68
+
69
+ **Table of contents**
70
+
71
+ .. contents::
72
+ :local:
73
+
74
+ Configuration
75
+ =============
76
+
77
+ To configure this module, see the 'Configuration' Section of the description
78
+ of the module 'barcodes_generator_abstract'
79
+
80
+ Usage
81
+ =====
82
+
83
+ To use this module, you need to:
84
+
85
+ * Go to a Stock Location form
86
+
87
+ 1 for manual generation
88
+ * Set a Barcode Rule
89
+ * Set a Barcode Base
90
+ * click on the button 'Generate Barcode (Using Barcode Rule)'
91
+
92
+ 2 for automatic generation
93
+ * Set a Barcode Rule
94
+ * click on the button 'Generate Base (Using Sequence)'
95
+ * click on the button 'Generate Barcode (Using Barcode Rule)'
96
+
97
+ .. image:: https://raw.githubusercontent.com/barcodes_generator/static/description/stock_location_sequence_generation.png
98
+
99
+ Bug Tracker
100
+ ===========
101
+
102
+ Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-barcode/issues>`_.
103
+ In case of trouble, please check there if your issue has already been reported.
104
+ If you spotted it first, help us to smash it by providing a detailed and welcomed
105
+ `feedback <https://github.com/OCA/stock-logistics-barcode/issues/new?body=module:%20barcodes_generator_location%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
106
+
107
+ Do not contact contributors directly about support or help with technical issues.
108
+
109
+ Credits
110
+ =======
111
+
112
+ Authors
113
+ ~~~~~~~
114
+
115
+ * LasLabs
116
+
117
+ Contributors
118
+ ~~~~~~~~~~~~
119
+
120
+ * Dave Lasley <dave@laslabs.com>
121
+ * `Tecnativa <https://www.tecnativa.com>`_:
122
+
123
+ * David Vidal
124
+ * Ernesto Tejeda
125
+
126
+ Other credits
127
+ ~~~~~~~~~~~~~
128
+
129
+ * Icon of the module is based on the Oxygen Team work and is under LGPL licence:
130
+ http://www.iconarchive.com/show/oxygen-icons-by-oxygen-icons.org.html
131
+
132
+ Maintainers
133
+ ~~~~~~~~~~~
134
+
135
+ This module is maintained by the OCA.
136
+
137
+ .. image:: https://odoo-community.org/logo.png
138
+ :alt: Odoo Community Association
139
+ :target: https://odoo-community.org
140
+
141
+ OCA, or the Odoo Community Association, is a nonprofit organization whose
142
+ mission is to support the collaborative development of Odoo features and
143
+ promote its widespread use.
144
+
145
+ This module is part of the `OCA/stock-logistics-barcode <https://github.com/OCA/stock-logistics-barcode/tree/16.0/barcodes_generator_location>`_ project on GitHub.
146
+
147
+ You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
148
+
149
+
@@ -0,0 +1,31 @@
1
+ odoo/addons/barcodes_generator_location/README.rst,sha256=l9ZI2lWRcTnoRdOkJROXb5fzp2ooSBW3hCKnFR3dg9I,4687
2
+ odoo/addons/barcodes_generator_location/__init__.py,sha256=lHbcD_3Jhk02gKyANjQ1Bif8uknO8qLtRSK4lJNPeeQ,55
3
+ odoo/addons/barcodes_generator_location/__manifest__.py,sha256=xOLMnYCmhRpJaDaC45yB0_4O_-dQMWGykgfu4X1JNhs,648
4
+ odoo/addons/barcodes_generator_location/hooks.py,sha256=Fk4qbaB5vhKvZjW4_4ahdKMKRGW1nD6D2qweDi_PTkk,369
5
+ odoo/addons/barcodes_generator_location/demo/barcode_rule.xml,sha256=ufQUCxTafPWgta5aplwnlO7D7_sNszaZi6cL_R6IQMI,827
6
+ odoo/addons/barcodes_generator_location/demo/function.xml,sha256=MI-vO0Gi8NNGWZ-v7OIVPlu_r-PLMF8LA7ciRrJrirQ,426
7
+ odoo/addons/barcodes_generator_location/demo/ir_sequence.xml,sha256=758xmrlPpM8_7c6veKr1iuqck1lNOaVannUEm9Lbth0,410
8
+ odoo/addons/barcodes_generator_location/demo/stock_location.xml,sha256=aBQxmll7anR07xGViUQCv-fAd_KOaNBsiuJCALCHlyE,437
9
+ odoo/addons/barcodes_generator_location/i18n/barcodes_generator_location.pot,sha256=uOR-u4bKtZ_fRcZBHfXPLAVghZUWQsI4733qahyeAYk,2953
10
+ odoo/addons/barcodes_generator_location/i18n/es.po,sha256=AZbc1p2m5HYeygfZ4MMu0ImEXU8tJ8TBbnFk4Rx-0w4,3749
11
+ odoo/addons/barcodes_generator_location/i18n/fr.po,sha256=MjhAHiCKX3-t-JAm_ABc0RK5yG894QXThFmQWPpdXBc,3722
12
+ odoo/addons/barcodes_generator_location/i18n/hr.po,sha256=tP04BFlUwnKqXeuhYHaZGn2mYe6I4XgAcD_qPjTJlIE,3792
13
+ odoo/addons/barcodes_generator_location/i18n/nl_NL.po,sha256=p00zqWZ7a4P0RY3RoHS7uLAUM8uLJMcxZVOgBx3Pzas,3693
14
+ odoo/addons/barcodes_generator_location/models/__init__.py,sha256=-PeAgBnU2aibwpwWioG2x9ma06mSmuCdSPpMSEhCNz8,125
15
+ odoo/addons/barcodes_generator_location/models/barcode_rule.py,sha256=pkTj4HyPxjXdZYUmtMwQvfOljfDhZoP-2qA1mGdy8vU,304
16
+ odoo/addons/barcodes_generator_location/models/stock_location.py,sha256=iTNLjP7zLuhIQL1DpGDJHrZ1khfz0sNFfv1oa8YK370,2264
17
+ odoo/addons/barcodes_generator_location/readme/CONFIGURE.rst,sha256=AqLGSsPyoRUgYWO9JvmsthBhfMkf0GKaX3EPXKGO1ec,121
18
+ odoo/addons/barcodes_generator_location/readme/CONTRIBUTORS.rst,sha256=5BWdCFv6-qtYD7uP7LUYQlxuhTIVmRMLmNq-ii2D-YE,113
19
+ odoo/addons/barcodes_generator_location/readme/CREDITS.rst,sha256=-JXIe85q_jTN_ANpdOEgcdiyXLFzqBZ2hVsFEoT49T8,153
20
+ odoo/addons/barcodes_generator_location/readme/DESCRIPTION.rst,sha256=e3s_H9zbHVOZHOxhiS4djMw-9xebQRD5J4Yko5P8xzY,785
21
+ odoo/addons/barcodes_generator_location/readme/USAGE.rst,sha256=dMgsrkc63Xr5v4aIXd_bHYqTNH4G_As-ToVlXSqrdS8,473
22
+ odoo/addons/barcodes_generator_location/static/description/icon.png,sha256=sWZ5OFuD-da3oRKI9kSqXDJLL-ONUiFar5XXh9SwD1g,19578
23
+ odoo/addons/barcodes_generator_location/static/description/index.html,sha256=m3hTJdz1zLgOXnn4QykbMSwpN4LOY8Fk9TlJt68tZyo,15173
24
+ odoo/addons/barcodes_generator_location/static/description/stock_location_sequence_generation.png,sha256=iANZ05H7G54tG3Ghl4Ng6fJrLlMHnjb2Q3bUDwCivX4,67651
25
+ odoo/addons/barcodes_generator_location/tests/__init__.py,sha256=c-NQXEfFM-fvhHMYfSxp1ZV-F2FtBdqDTcHkIFAqiYg,106
26
+ odoo/addons/barcodes_generator_location/tests/test_barcode_generator.py,sha256=_6ZgZI5APOoT5u2DjmLIszxxTayYMgFkDDaXujUVaUA,810
27
+ odoo/addons/barcodes_generator_location/views/stock_location.xml,sha256=zmNdZu3OwnX0p7vccFPtHl5IPpzMX1rONBlmsQxJ2aE,2600
28
+ odoo_addon_barcodes_generator_location-16.0.1.0.0.1.dist-info/METADATA,sha256=fcyDy85AZnJXGEVAl1F3TP506-3I_y3XhsgpbCl0vKg,5330
29
+ odoo_addon_barcodes_generator_location-16.0.1.0.0.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
30
+ odoo_addon_barcodes_generator_location-16.0.1.0.0.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
31
+ odoo_addon_barcodes_generator_location-16.0.1.0.0.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.43.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+