odoo-addon-stock-lot-image 18.0.1.0.0.2__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.
- odoo/addons/stock_lot_image/README.rst +97 -0
- odoo/addons/stock_lot_image/__init__.py +1 -0
- odoo/addons/stock_lot_image/__manifest__.py +23 -0
- odoo/addons/stock_lot_image/i18n/es.po +175 -0
- odoo/addons/stock_lot_image/i18n/stock_lot_image.pot +170 -0
- odoo/addons/stock_lot_image/models/__init__.py +2 -0
- odoo/addons/stock_lot_image/models/stock_lot.py +13 -0
- odoo/addons/stock_lot_image/models/stock_lot_image.py +66 -0
- odoo/addons/stock_lot_image/readme/CONTRIBUTORS.md +4 -0
- odoo/addons/stock_lot_image/readme/DESCRIPTION.md +1 -0
- odoo/addons/stock_lot_image/readme/USAGE.md +1 -0
- odoo/addons/stock_lot_image/security/ir.model.access.csv +3 -0
- odoo/addons/stock_lot_image/static/description/icon.png +0 -0
- odoo/addons/stock_lot_image/static/description/index.html +441 -0
- odoo/addons/stock_lot_image/static/src/scss/stock_lot_image_backend.scss +86 -0
- odoo/addons/stock_lot_image/views/stock_lot_image_views.xml +106 -0
- odoo/addons/stock_lot_image/views/stock_lot_views.xml +23 -0
- odoo_addon_stock_lot_image-18.0.1.0.0.2.dist-info/METADATA +113 -0
- odoo_addon_stock_lot_image-18.0.1.0.0.2.dist-info/RECORD +21 -0
- odoo_addon_stock_lot_image-18.0.1.0.0.2.dist-info/WHEEL +5 -0
- odoo_addon_stock_lot_image-18.0.1.0.0.2.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: odoo-addon-stock_lot_image
|
|
3
|
+
Version: 18.0.1.0.0.2
|
|
4
|
+
Requires-Python: >=3.10
|
|
5
|
+
Requires-Dist: odoo==18.0.*
|
|
6
|
+
Summary: Stock Lot Image
|
|
7
|
+
Home-page: https://github.com/OCA/stock-logistics-warehouse
|
|
8
|
+
License: AGPL-3
|
|
9
|
+
Author: Tecnativa, Odoo Community Association (OCA)
|
|
10
|
+
Author-email: support@odoo-community.org
|
|
11
|
+
Classifier: Programming Language :: Python
|
|
12
|
+
Classifier: Framework :: Odoo
|
|
13
|
+
Classifier: Framework :: Odoo :: 18.0
|
|
14
|
+
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
15
|
+
Description-Content-Type: text/x-rst
|
|
16
|
+
|
|
17
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
|
18
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
|
19
|
+
:alt: Odoo Community Association
|
|
20
|
+
|
|
21
|
+
===============
|
|
22
|
+
Stock Lot Image
|
|
23
|
+
===============
|
|
24
|
+
|
|
25
|
+
..
|
|
26
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
27
|
+
!! This file is generated by oca-gen-addon-readme !!
|
|
28
|
+
!! changes will be overwritten. !!
|
|
29
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
30
|
+
!! source digest: sha256:ba4cf576230bd0075168576b472a842d9a171bb5395f52e45145d4bf9fa0b679
|
|
31
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
32
|
+
|
|
33
|
+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
34
|
+
:target: https://odoo-community.org/page/development-status
|
|
35
|
+
:alt: Beta
|
|
36
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
|
37
|
+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
38
|
+
:alt: License: AGPL-3
|
|
39
|
+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fstock--logistics--warehouse-lightgray.png?logo=github
|
|
40
|
+
:target: https://github.com/OCA/stock-logistics-warehouse/tree/18.0/stock_lot_image
|
|
41
|
+
:alt: OCA/stock-logistics-warehouse
|
|
42
|
+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
|
43
|
+
:target: https://translation.odoo-community.org/projects/stock-logistics-warehouse-18-0/stock-logistics-warehouse-18-0-stock_lot_image
|
|
44
|
+
:alt: Translate me on Weblate
|
|
45
|
+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
|
46
|
+
:target: https://runboat.odoo-community.org/builds?repo=OCA/stock-logistics-warehouse&target_branch=18.0
|
|
47
|
+
:alt: Try me on Runboat
|
|
48
|
+
|
|
49
|
+
|badge1| |badge2| |badge3| |badge4| |badge5|
|
|
50
|
+
|
|
51
|
+
This module adds the ability to define images in a lot (similar to what
|
|
52
|
+
happens with website_sale in products).
|
|
53
|
+
|
|
54
|
+
**Table of contents**
|
|
55
|
+
|
|
56
|
+
.. contents::
|
|
57
|
+
:local:
|
|
58
|
+
|
|
59
|
+
Usage
|
|
60
|
+
=====
|
|
61
|
+
|
|
62
|
+
Go to a lot and in the Images tab you can add linked files.
|
|
63
|
+
|
|
64
|
+
Bug Tracker
|
|
65
|
+
===========
|
|
66
|
+
|
|
67
|
+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-warehouse/issues>`_.
|
|
68
|
+
In case of trouble, please check there if your issue has already been reported.
|
|
69
|
+
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
70
|
+
`feedback <https://github.com/OCA/stock-logistics-warehouse/issues/new?body=module:%20stock_lot_image%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
|
71
|
+
|
|
72
|
+
Do not contact contributors directly about support or help with technical issues.
|
|
73
|
+
|
|
74
|
+
Credits
|
|
75
|
+
=======
|
|
76
|
+
|
|
77
|
+
Authors
|
|
78
|
+
-------
|
|
79
|
+
|
|
80
|
+
* Tecnativa
|
|
81
|
+
|
|
82
|
+
Contributors
|
|
83
|
+
------------
|
|
84
|
+
|
|
85
|
+
- ``Tecnativa <https://www.tecnativa.com>``\ \_:
|
|
86
|
+
|
|
87
|
+
- Pedro M. Baeza
|
|
88
|
+
- Víctor Martínez
|
|
89
|
+
|
|
90
|
+
Maintainers
|
|
91
|
+
-----------
|
|
92
|
+
|
|
93
|
+
This module is maintained by the OCA.
|
|
94
|
+
|
|
95
|
+
.. image:: https://odoo-community.org/logo.png
|
|
96
|
+
:alt: Odoo Community Association
|
|
97
|
+
:target: https://odoo-community.org
|
|
98
|
+
|
|
99
|
+
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
|
100
|
+
mission is to support the collaborative development of Odoo features and
|
|
101
|
+
promote its widespread use.
|
|
102
|
+
|
|
103
|
+
.. |maintainer-victoralmau| image:: https://github.com/victoralmau.png?size=40px
|
|
104
|
+
:target: https://github.com/victoralmau
|
|
105
|
+
:alt: victoralmau
|
|
106
|
+
|
|
107
|
+
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
|
|
108
|
+
|
|
109
|
+
|maintainer-victoralmau|
|
|
110
|
+
|
|
111
|
+
This module is part of the `OCA/stock-logistics-warehouse <https://github.com/OCA/stock-logistics-warehouse/tree/18.0/stock_lot_image>`_ project on GitHub.
|
|
112
|
+
|
|
113
|
+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
odoo/addons/stock_lot_image/README.rst,sha256=TSd6n20Ef5fQmBMRv69c3_JjqvpfrPPmjXWM5kmGyuY,3535
|
|
2
|
+
odoo/addons/stock_lot_image/__init__.py,sha256=X9EJGOE2GtZbS0G82PtSXmWSZ_R8jEM0rlJTDliQjp4,21
|
|
3
|
+
odoo/addons/stock_lot_image/__manifest__.py,sha256=SeIcqaLACumr1nLqL-rcLLm6L7i2AjN1l7LHEg2WyCg,724
|
|
4
|
+
odoo/addons/stock_lot_image/i18n/es.po,sha256=vOPcc8lNin2UczKwt3md6gCIkOMBdzh_R8FJFTdgFXc,5782
|
|
5
|
+
odoo/addons/stock_lot_image/i18n/stock_lot_image.pot,sha256=Kmlpvv4_99OrUn72ZF-8ZJN2lLOoiirsrTYjH-TVrtE,5035
|
|
6
|
+
odoo/addons/stock_lot_image/models/__init__.py,sha256=UePXISV31-4Deqp_TylFeuUurii5mTIJUXcORSog5GQ,54
|
|
7
|
+
odoo/addons/stock_lot_image/models/stock_lot.py,sha256=9neiOCYpEWdzH5I-ptDBJDmq23IdZ8R6PRUwjcQZGYY,338
|
|
8
|
+
odoo/addons/stock_lot_image/models/stock_lot_image.py,sha256=Ppaxa_yT3cvLexz3fCKj4erWz7B8p9Wm-CSjZnSNmHM,2205
|
|
9
|
+
odoo/addons/stock_lot_image/readme/CONTRIBUTORS.md,sha256=xnXim_6_SGhiiljzKBP5MWVon1LhWU_MpyPcLrjXdrw,85
|
|
10
|
+
odoo/addons/stock_lot_image/readme/DESCRIPTION.md,sha256=hC7mmS2TlCfXUdkMd_EhY-v3lgygg3e6e07DXV2MGps,111
|
|
11
|
+
odoo/addons/stock_lot_image/readme/USAGE.md,sha256=_szfmnV8DWfjrRhAL87UXQyWK7rsElX8RMmpTTGSdRA,59
|
|
12
|
+
odoo/addons/stock_lot_image/security/ir.model.access.csv,sha256=itdnIlV3vj4kR8fsvrhWgcbBUwQFLx0n8PYdLkWfgcA,294
|
|
13
|
+
odoo/addons/stock_lot_image/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
|
14
|
+
odoo/addons/stock_lot_image/static/description/index.html,sha256=cSuazqHZdMkduUtk5Z4KaK5y7XdV-vEIzHpJ7GSvQag,13110
|
|
15
|
+
odoo/addons/stock_lot_image/static/src/scss/stock_lot_image_backend.scss,sha256=4fMZYKluwIeIKB3tEvjzhTmZzlkxKr7de5ugVcql-78,2298
|
|
16
|
+
odoo/addons/stock_lot_image/views/stock_lot_image_views.xml,sha256=8Yqm4LtiAXQWe1_lTy47mkMvbR3ZcZZRiF1LSM1dRws,5100
|
|
17
|
+
odoo/addons/stock_lot_image/views/stock_lot_views.xml,sha256=hHXkn2dZ_yy8kTXZ-6_Tznuu6Gm2PklDUtIhpnpC9Qo,899
|
|
18
|
+
odoo_addon_stock_lot_image-18.0.1.0.0.2.dist-info/METADATA,sha256=EUrLZxotjkj5VDYHiAY4Nh3uV71JOhECsz5wMDxcBpw,4083
|
|
19
|
+
odoo_addon_stock_lot_image-18.0.1.0.0.2.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
|
|
20
|
+
odoo_addon_stock_lot_image-18.0.1.0.0.2.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
|
21
|
+
odoo_addon_stock_lot_image-18.0.1.0.0.2.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
odoo
|