odoo-addon-mrp-attachment-mgmt 16.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.
Files changed (28) hide show
  1. odoo/addons/mrp_attachment_mgmt/README.rst +109 -0
  2. odoo/addons/mrp_attachment_mgmt/__init__.py +1 -0
  3. odoo/addons/mrp_attachment_mgmt/__manifest__.py +19 -0
  4. odoo/addons/mrp_attachment_mgmt/i18n/es.po +98 -0
  5. odoo/addons/mrp_attachment_mgmt/i18n/it.po +94 -0
  6. odoo/addons/mrp_attachment_mgmt/i18n/mrp_attachment_mgmt.pot +63 -0
  7. odoo/addons/mrp_attachment_mgmt/models/__init__.py +4 -0
  8. odoo/addons/mrp_attachment_mgmt/models/mrp_bom.py +33 -0
  9. odoo/addons/mrp_attachment_mgmt/models/mrp_production.py +10 -0
  10. odoo/addons/mrp_attachment_mgmt/models/mrp_workorder.py +24 -0
  11. odoo/addons/mrp_attachment_mgmt/models/product.py +35 -0
  12. odoo/addons/mrp_attachment_mgmt/readme/CONFIGURE.rst +3 -0
  13. odoo/addons/mrp_attachment_mgmt/readme/CONTRIBUTORS.rst +4 -0
  14. odoo/addons/mrp_attachment_mgmt/readme/DESCRIPTION.rst +2 -0
  15. odoo/addons/mrp_attachment_mgmt/readme/USAGE.rst +10 -0
  16. odoo/addons/mrp_attachment_mgmt/static/description/icon.png +0 -0
  17. odoo/addons/mrp_attachment_mgmt/static/description/index.html +448 -0
  18. odoo/addons/mrp_attachment_mgmt/tests/__init__.py +3 -0
  19. odoo/addons/mrp_attachment_mgmt/tests/common.py +93 -0
  20. odoo/addons/mrp_attachment_mgmt/tests/test_mrp_attachment_mgmt.py +40 -0
  21. odoo/addons/mrp_attachment_mgmt/views/mrp_bom_view.xml +22 -0
  22. odoo/addons/mrp_attachment_mgmt/views/mrp_production_views.xml +30 -0
  23. odoo/addons/mrp_attachment_mgmt/views/product_views.xml +39 -0
  24. odoo/addons/mrp_attachment_mgmt/views/workorder_attachments_views.xml +30 -0
  25. odoo_addon_mrp_attachment_mgmt-16.0.1.0.0.2.dist-info/METADATA +127 -0
  26. odoo_addon_mrp_attachment_mgmt-16.0.1.0.0.2.dist-info/RECORD +28 -0
  27. odoo_addon_mrp_attachment_mgmt-16.0.1.0.0.2.dist-info/WHEEL +5 -0
  28. odoo_addon_mrp_attachment_mgmt-16.0.1.0.0.2.dist-info/top_level.txt +1 -0
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <odoo>
3
+ <record id="workorder_attachments_mrp_workorder_form_view" model="ir.ui.view">
4
+ <field name="name">workorder.attachments.mrp.workorder.form.view</field>
5
+ <field name="model">mrp.workorder</field>
6
+ <field name="inherit_id" ref="mrp.mrp_production_workorder_form_view_inherit" />
7
+ <field name="arch" type="xml">
8
+ <xpath expr="///button[@name='action_see_move_scrap']" position="after">
9
+ <button
10
+ class="oe_stat_button"
11
+ name="action_see_workorder_attachments"
12
+ type="object"
13
+ icon="fa-files-o"
14
+ string="Attachments"
15
+ />
16
+ </xpath>
17
+ </field>
18
+ </record>
19
+ <record id="action_see_workorder_attachments" model="ir.actions.server">
20
+ <field name="name">Attachments</field>
21
+ <field name="model_id" ref="model_mrp_workorder" />
22
+ <field name="binding_model_id" ref="model_mrp_workorder" />
23
+ <field name="binding_view_types">list</field>
24
+ <field name="state">code</field>
25
+ <field name="code">
26
+ if records:
27
+ action = records.action_see_workorder_attachments()
28
+ </field>
29
+ </record>
30
+ </odoo>
@@ -0,0 +1,127 @@
1
+ Metadata-Version: 2.1
2
+ Name: odoo-addon-mrp-attachment-mgmt
3
+ Version: 16.0.1.0.0.2
4
+ Summary: Mrp Attachment Mgmt
5
+ Home-page: https://github.com/OCA/manufacture
6
+ Author: Tecnativa, 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 <16.1dev,>=16.0a
16
+
17
+ ===================
18
+ Mrp Attachment Mgmt
19
+ ===================
20
+
21
+ ..
22
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
23
+ !! This file is generated by oca-gen-addon-readme !!
24
+ !! changes will be overwritten. !!
25
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
26
+ !! source digest: sha256:aa8781c1fbe86a94327f0904ae05e3bdb29653fef631ae1d22bd1bbf337d0dd1
27
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
28
+
29
+ .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
30
+ :target: https://odoo-community.org/page/development-status
31
+ :alt: Beta
32
+ .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
33
+ :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
34
+ :alt: License: AGPL-3
35
+ .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fmanufacture-lightgray.png?logo=github
36
+ :target: https://github.com/OCA/manufacture/tree/16.0/mrp_attachment_mgmt
37
+ :alt: OCA/manufacture
38
+ .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
39
+ :target: https://translation.odoo-community.org/projects/manufacture-16-0/manufacture-16-0-mrp_attachment_mgmt
40
+ :alt: Translate me on Weblate
41
+ .. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
42
+ :target: https://runboat.odoo-community.org/builds?repo=OCA/manufacture&target_branch=16.0
43
+ :alt: Try me on Runboat
44
+
45
+ |badge1| |badge2| |badge3| |badge4| |badge5|
46
+
47
+ This module allows to get all attachments of a bill of materials (all levels) on a view.
48
+ This module allows to get all attachments of a work orders products to produce on a view.
49
+
50
+ **Table of contents**
51
+
52
+ .. contents::
53
+ :local:
54
+
55
+ Configuration
56
+ =============
57
+
58
+ To configure this module, you need to:
59
+
60
+ #. Go to *Manufacturing -> Configuration -> Settings* and check "Work Orders" option.
61
+
62
+ Usage
63
+ =====
64
+
65
+ #. Go to *Manufacturing -> Operation > Work Orders* and click in window open button (after the "Start" and "Block" options).
66
+ #. The smart-button "Attachments" display the attachments of the related product.
67
+
68
+
69
+ #. Go to *Manufacturing -> Products > Bill of material -> Desk Combination*.
70
+ #. Go to "Attachment" icon related to "Office Chair Black" component and upload some file.
71
+ #. The smart-button "Attachments" (from Bill of material) display the attachments of all components.
72
+
73
+ #. Go to *Manufacturing -> Products > Products -> Desk Combination*.
74
+ #. The smart-button "Bom Attachments" display the attachments of all components from Bill of material.
75
+
76
+ Bug Tracker
77
+ ===========
78
+
79
+ Bugs are tracked on `GitHub Issues <https://github.com/OCA/manufacture/issues>`_.
80
+ In case of trouble, please check there if your issue has already been reported.
81
+ If you spotted it first, help us to smash it by providing a detailed and welcomed
82
+ `feedback <https://github.com/OCA/manufacture/issues/new?body=module:%20mrp_attachment_mgmt%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
83
+
84
+ Do not contact contributors directly about support or help with technical issues.
85
+
86
+ Credits
87
+ =======
88
+
89
+ Authors
90
+ ~~~~~~~
91
+
92
+ * Tecnativa
93
+
94
+ Contributors
95
+ ~~~~~~~~~~~~
96
+
97
+ * `Tecnativa <https://www.tecnativa.com>`_:
98
+
99
+ * Víctor Martínez
100
+ * Pedro M. Baeza
101
+
102
+ Maintainers
103
+ ~~~~~~~~~~~
104
+
105
+ This module is maintained by the OCA.
106
+
107
+ .. image:: https://odoo-community.org/logo.png
108
+ :alt: Odoo Community Association
109
+ :target: https://odoo-community.org
110
+
111
+ OCA, or the Odoo Community Association, is a nonprofit organization whose
112
+ mission is to support the collaborative development of Odoo features and
113
+ promote its widespread use.
114
+
115
+ .. |maintainer-victoralmau| image:: https://github.com/victoralmau.png?size=40px
116
+ :target: https://github.com/victoralmau
117
+ :alt: victoralmau
118
+
119
+ Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
120
+
121
+ |maintainer-victoralmau|
122
+
123
+ This module is part of the `OCA/manufacture <https://github.com/OCA/manufacture/tree/16.0/mrp_attachment_mgmt>`_ project on GitHub.
124
+
125
+ You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
126
+
127
+
@@ -0,0 +1,28 @@
1
+ odoo/addons/mrp_attachment_mgmt/README.rst,sha256=Ctg952BnnAM-eI5gtBa5CpgkKor_WeLyQYj1f03x4y0,4065
2
+ odoo/addons/mrp_attachment_mgmt/__init__.py,sha256=X9EJGOE2GtZbS0G82PtSXmWSZ_R8jEM0rlJTDliQjp4,21
3
+ odoo/addons/mrp_attachment_mgmt/__manifest__.py,sha256=GXGTvRVknM2ccuS49HJIDvsWyomMyya-a0G6gLJjeZE,618
4
+ odoo/addons/mrp_attachment_mgmt/i18n/es.po,sha256=h0DHQVxM5u-tzxCfkTmIxtiiI7Z3vExICvCxtrEQnk4,3980
5
+ odoo/addons/mrp_attachment_mgmt/i18n/it.po,sha256=f6YiEhPQiiLOMrqhMXV24QXYCZTx2KjvxSYPfQ5tGqs,3865
6
+ odoo/addons/mrp_attachment_mgmt/i18n/mrp_attachment_mgmt.pot,sha256=HWJ9acwD4L0RPOS2XtKArihDm56YUso7txaS2a1SQIY,1984
7
+ odoo/addons/mrp_attachment_mgmt/models/__init__.py,sha256=un-rorg4HCTpb6nfenzjiFWjja1JIAPxq0TecVYp3FE,101
8
+ odoo/addons/mrp_attachment_mgmt/models/mrp_bom.py,sha256=VVMEevoSkzrw6kuTcwIRRS3ISaO9v8mw0fqUHFonKa8,1343
9
+ odoo/addons/mrp_attachment_mgmt/models/mrp_production.py,sha256=eWBp_elW1Vs1F0tmG_BBSN2g80Kqtgy6NqTkXeKqtlM,304
10
+ odoo/addons/mrp_attachment_mgmt/models/mrp_workorder.py,sha256=n2Ll7rTetQBYw2LEhSo7VkRUWPnKm5hGCG_Wg6TdUCg,897
11
+ odoo/addons/mrp_attachment_mgmt/models/product.py,sha256=riEQ02gsRReH4V4_3BpWPxoCrKgcAwjBcBYPtqXZXFo,1156
12
+ odoo/addons/mrp_attachment_mgmt/readme/CONFIGURE.rst,sha256=mPnFcVQshlt9TMTUl6X5Qsu63hIyOB6exLUdGvNBmuo,126
13
+ odoo/addons/mrp_attachment_mgmt/readme/CONTRIBUTORS.rst,sha256=RV1niSVnS-6n89-SQuTVzN8wXdTzS8rs2k-f8UAFr6Q,86
14
+ odoo/addons/mrp_attachment_mgmt/readme/DESCRIPTION.rst,sha256=cqkqQpED2uq5EREPNCRt6S3MWZkTb-Lr5R3GfipwBKc,179
15
+ odoo/addons/mrp_attachment_mgmt/readme/USAGE.rst,sha256=boy0caA3pLVz9PC9MQ5krb3gyptcj_ePtgqONIfxG3A,651
16
+ odoo/addons/mrp_attachment_mgmt/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
17
+ odoo/addons/mrp_attachment_mgmt/static/description/index.html,sha256=zsqbpT6uIk2krrd519tohw1Tifg27Q9j42KMjN3zsIs,13862
18
+ odoo/addons/mrp_attachment_mgmt/tests/__init__.py,sha256=_XqU3qXWgPdmpUZRUyUC9W8EzAilhHINiphXlL13JPs,104
19
+ odoo/addons/mrp_attachment_mgmt/tests/common.py,sha256=ChANyJXx53F2_KEzSZ8mlVWIkGEvt44Q38ur8elVxnM,3483
20
+ odoo/addons/mrp_attachment_mgmt/tests/test_mrp_attachment_mgmt.py,sha256=PKjJ2a-Oc_tvkJgdf9byaxUeH3r4zkSNM5Z6yVpA0No,2048
21
+ odoo/addons/mrp_attachment_mgmt/views/mrp_bom_view.xml,sha256=lWlvuNo4cT-n-9EZ8vacM-_lViUnCYT__hg1UVJGIII,786
22
+ odoo/addons/mrp_attachment_mgmt/views/mrp_production_views.xml,sha256=vtJaPi8sB1hI-YBwoMy64FRp6kyeYZjxy1ge8Rqqxv8,1252
23
+ odoo/addons/mrp_attachment_mgmt/views/product_views.xml,sha256=ISZTqqYDinDOUpNVpCv4elX1U9H5z8-7O2rJqZh-wFc,1749
24
+ odoo/addons/mrp_attachment_mgmt/views/workorder_attachments_views.xml,sha256=5vvLRKeedeJwIguMfNipIbpn5HuntR08_cFFpCjMAwk,1291
25
+ odoo_addon_mrp_attachment_mgmt-16.0.1.0.0.2.dist-info/METADATA,sha256=soj5lUE4HEEZjOVsBFe1pA5InipZTuhyqeLHggmVnpQ,4599
26
+ odoo_addon_mrp_attachment_mgmt-16.0.1.0.0.2.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
27
+ odoo_addon_mrp_attachment_mgmt-16.0.1.0.0.2.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
28
+ odoo_addon_mrp_attachment_mgmt-16.0.1.0.0.2.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.42.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+