odoo-addon-mrp-attachment-mgmt 16.0.1.0.0.6__py3-none-any.whl → 16.0.1.1.0__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 (22) hide show
  1. odoo/addons/mrp_attachment_mgmt/README.rst +17 -6
  2. odoo/addons/mrp_attachment_mgmt/__manifest__.py +1 -1
  3. odoo/addons/mrp_attachment_mgmt/i18n/hr.po +69 -0
  4. odoo/addons/mrp_attachment_mgmt/i18n/mrp_attachment_mgmt.pot +29 -6
  5. odoo/addons/mrp_attachment_mgmt/models/mrp_bom.py +20 -0
  6. odoo/addons/mrp_attachment_mgmt/models/mrp_production.py +3 -0
  7. odoo/addons/mrp_attachment_mgmt/models/mrp_workorder.py +3 -0
  8. odoo/addons/mrp_attachment_mgmt/models/product.py +18 -0
  9. odoo/addons/mrp_attachment_mgmt/readme/CONTRIBUTORS.rst +4 -0
  10. odoo/addons/mrp_attachment_mgmt/readme/USAGE.rst +7 -4
  11. odoo/addons/mrp_attachment_mgmt/static/description/index.html +36 -19
  12. odoo/addons/mrp_attachment_mgmt/tests/common.py +11 -0
  13. odoo/addons/mrp_attachment_mgmt/tests/test_mrp_attachment_mgmt.py +26 -0
  14. odoo/addons/mrp_attachment_mgmt/views/mrp_bom_view.xml +15 -2
  15. odoo/addons/mrp_attachment_mgmt/views/mrp_production_views.xml +27 -3
  16. odoo/addons/mrp_attachment_mgmt/views/product_views.xml +34 -4
  17. odoo/addons/mrp_attachment_mgmt/views/workorder_attachments_views.xml +27 -3
  18. {odoo_addon_mrp_attachment_mgmt-16.0.1.0.0.6.dist-info → odoo_addon_mrp_attachment_mgmt-16.0.1.1.0.dist-info}/METADATA +20 -12
  19. odoo_addon_mrp_attachment_mgmt-16.0.1.1.0.dist-info/RECORD +29 -0
  20. {odoo_addon_mrp_attachment_mgmt-16.0.1.0.0.6.dist-info → odoo_addon_mrp_attachment_mgmt-16.0.1.1.0.dist-info}/WHEEL +1 -1
  21. odoo_addon_mrp_attachment_mgmt-16.0.1.0.0.6.dist-info/RECORD +0 -28
  22. {odoo_addon_mrp_attachment_mgmt-16.0.1.0.0.6.dist-info → odoo_addon_mrp_attachment_mgmt-16.0.1.1.0.dist-info}/top_level.txt +0 -0
@@ -1,3 +1,7 @@
1
+ .. image:: https://odoo-community.org/readme-banner-image
2
+ :target: https://odoo-community.org/get-involved?utm_source=readme
3
+ :alt: Odoo Community Association
4
+
1
5
  ===================
2
6
  Mrp Attachment Mgmt
3
7
  ===================
@@ -7,13 +11,13 @@ Mrp Attachment Mgmt
7
11
  !! This file is generated by oca-gen-addon-readme !!
8
12
  !! changes will be overwritten. !!
9
13
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:aa8781c1fbe86a94327f0904ae05e3bdb29653fef631ae1d22bd1bbf337d0dd1
14
+ !! source digest: sha256:26e41b22615b7547364c167bc5efb91063113aa0427de1ac9c548bfec623af65
11
15
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
16
 
13
17
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
14
18
  :target: https://odoo-community.org/page/development-status
15
19
  :alt: Beta
16
- .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
20
+ .. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
17
21
  :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
18
22
  :alt: License: AGPL-3
19
23
  .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fmanufacture-lightgray.png?logo=github
@@ -47,15 +51,18 @@ Usage
47
51
  =====
48
52
 
49
53
  #. Go to *Manufacturing -> Operation > Work Orders* and click in window open button (after the "Start" and "Block" options).
50
- #. The smart-button "Attachments" display the attachments of the related product.
51
-
54
+ #. The smart-button "Product Attachments" display the attachments of the related product.
55
+ #. The smart-button "BoM Attachments" displays the attachments of the workorder BoM.
52
56
 
53
57
  #. Go to *Manufacturing -> Products > Bill of material -> Desk Combination*.
54
58
  #. Go to "Attachment" icon related to "Office Chair Black" component and upload some file.
55
- #. The smart-button "Attachments" (from Bill of material) display the attachments of all components.
59
+ #. The smart-button "Components Attachments" (from Bill of material) display the attachments of all components.
60
+ #. Go to the Desk Combination product and upload an attachment
61
+ #. The smart-button "Product Attachments" displays the Desk Combination attachments.
56
62
 
57
63
  #. Go to *Manufacturing -> Products > Products -> Desk Combination*.
58
- #. The smart-button "Bom Attachments" display the attachments of all components from Bill of material.
64
+ #. The smart-button "Components Attachments" display the attachments of all components from Bill of material.
65
+ #. The smart-button "Bom Attachments" display the attachments of all the product Bill of materials.
59
66
 
60
67
  Bug Tracker
61
68
  ===========
@@ -83,6 +90,10 @@ Contributors
83
90
  * Víctor Martínez
84
91
  * Pedro M. Baeza
85
92
 
93
+ * `ForgeFlow <https://forgeflow.com>`_:
94
+
95
+ * Marina Alapont
96
+
86
97
  Maintainers
87
98
  ~~~~~~~~~~~
88
99
 
@@ -2,7 +2,7 @@
2
2
  # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
3
3
  {
4
4
  "name": "Mrp Attachment Mgmt",
5
- "version": "16.0.1.0.0",
5
+ "version": "16.0.1.1.0",
6
6
  "category": "Manufacturing",
7
7
  "website": "https://github.com/OCA/manufacture",
8
8
  "author": "Tecnativa, Odoo Community Association (OCA)",
@@ -0,0 +1,69 @@
1
+ # Translation of Odoo Server.
2
+ # This file contains the translation of the following modules:
3
+ # * mrp_attachment_mgmt
4
+ #
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: Odoo Server 16.0\n"
8
+ "Report-Msgid-Bugs-To: \n"
9
+ "PO-Revision-Date: 2024-06-17 15:35+0000\n"
10
+ "Last-Translator: Bole <bole@dajmi5.com>\n"
11
+ "Language-Team: none\n"
12
+ "Language: hr\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=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
17
+ "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
18
+ "X-Generator: Weblate 4.17\n"
19
+
20
+ #. module: mrp_attachment_mgmt
21
+ #. odoo-python
22
+ #: code:addons/mrp_attachment_mgmt/models/mrp_workorder.py:0
23
+ #, python-format
24
+ msgid ""
25
+ "%(error_count)d Product(s) without drawing:\n"
26
+ "%(error_msg)s"
27
+ msgstr ""
28
+ "%(error_count)d Proizvod(i) bez crteža:\n"
29
+ "%(error_msg)s"
30
+
31
+ #. module: mrp_attachment_mgmt
32
+ #: model:ir.actions.server,name:mrp_attachment_mgmt.action_see_workorder_attachments
33
+ #: model:ir.actions.server,name:mrp_attachment_mgmt.action_show_production_attachments
34
+ #: model_terms:ir.ui.view,arch_db:mrp_attachment_mgmt.mrp_bom_see_attachments_form_view
35
+ #: model_terms:ir.ui.view,arch_db:mrp_attachment_mgmt.mrp_production_form_view
36
+ #: model_terms:ir.ui.view,arch_db:mrp_attachment_mgmt.workorder_attachments_mrp_workorder_form_view
37
+ msgid "Attachments"
38
+ msgstr "Prilozi"
39
+
40
+ #. module: mrp_attachment_mgmt
41
+ #: model:ir.model,name:mrp_attachment_mgmt.model_mrp_bom
42
+ msgid "Bill of Material"
43
+ msgstr "Sastavnica"
44
+
45
+ #. module: mrp_attachment_mgmt
46
+ #: model_terms:ir.ui.view,arch_db:mrp_attachment_mgmt.mrp_bom_see_attachments_product_product_form_view
47
+ #: model_terms:ir.ui.view,arch_db:mrp_attachment_mgmt.mrp_bom_see_attachments_product_template_form_view
48
+ msgid "Bom Attachments"
49
+ msgstr "Prilozi sastavnica"
50
+
51
+ #. module: mrp_attachment_mgmt
52
+ #: model:ir.model,name:mrp_attachment_mgmt.model_product_template
53
+ msgid "Product"
54
+ msgstr "Proizvod"
55
+
56
+ #. module: mrp_attachment_mgmt
57
+ #: model:ir.model,name:mrp_attachment_mgmt.model_product_product
58
+ msgid "Product Variant"
59
+ msgstr "Varijanta proizvoda"
60
+
61
+ #. module: mrp_attachment_mgmt
62
+ #: model:ir.model,name:mrp_attachment_mgmt.model_mrp_production
63
+ msgid "Production Order"
64
+ msgstr "Proizvodni nalog"
65
+
66
+ #. module: mrp_attachment_mgmt
67
+ #: model:ir.model,name:mrp_attachment_mgmt.model_mrp_workorder
68
+ msgid "Work Order"
69
+ msgstr "Radni nalog"
@@ -23,12 +23,29 @@ msgid ""
23
23
  msgstr ""
24
24
 
25
25
  #. module: mrp_attachment_mgmt
26
- #: model:ir.actions.server,name:mrp_attachment_mgmt.action_see_workorder_attachments
27
- #: model:ir.actions.server,name:mrp_attachment_mgmt.action_show_production_attachments
26
+ #: model_terms:ir.ui.view,arch_db:mrp_attachment_mgmt.mrp_production_form_view
27
+ #: model_terms:ir.ui.view,arch_db:mrp_attachment_mgmt.workorder_attachments_mrp_workorder_form_view
28
+ msgid "<span class=\"o_stat_text\">BoM<br/>Attachments</span>"
29
+ msgstr ""
30
+
31
+ #. module: mrp_attachment_mgmt
32
+ #: model_terms:ir.ui.view,arch_db:mrp_attachment_mgmt.mrp_bom_see_attachments_product_product_form_view
33
+ #: model_terms:ir.ui.view,arch_db:mrp_attachment_mgmt.mrp_bom_see_attachments_product_template_form_view
34
+ msgid "<span class=\"o_stat_text\">BoMs<br/>Attachments</span>"
35
+ msgstr ""
36
+
37
+ #. module: mrp_attachment_mgmt
38
+ #: model_terms:ir.ui.view,arch_db:mrp_attachment_mgmt.mrp_bom_see_attachments_form_view
39
+ #: model_terms:ir.ui.view,arch_db:mrp_attachment_mgmt.mrp_bom_see_attachments_product_product_form_view
40
+ #: model_terms:ir.ui.view,arch_db:mrp_attachment_mgmt.mrp_bom_see_attachments_product_template_form_view
41
+ msgid "<span class=\"o_stat_text\">Components<br/>Attachments</span>"
42
+ msgstr ""
43
+
44
+ #. module: mrp_attachment_mgmt
28
45
  #: model_terms:ir.ui.view,arch_db:mrp_attachment_mgmt.mrp_bom_see_attachments_form_view
29
46
  #: model_terms:ir.ui.view,arch_db:mrp_attachment_mgmt.mrp_production_form_view
30
47
  #: model_terms:ir.ui.view,arch_db:mrp_attachment_mgmt.workorder_attachments_mrp_workorder_form_view
31
- msgid "Attachments"
48
+ msgid "<span class=\"o_stat_text\">Product<br/>Attachments</span>"
32
49
  msgstr ""
33
50
 
34
51
  #. module: mrp_attachment_mgmt
@@ -37,9 +54,9 @@ msgid "Bill of Material"
37
54
  msgstr ""
38
55
 
39
56
  #. module: mrp_attachment_mgmt
40
- #: model_terms:ir.ui.view,arch_db:mrp_attachment_mgmt.mrp_bom_see_attachments_product_product_form_view
41
- #: model_terms:ir.ui.view,arch_db:mrp_attachment_mgmt.mrp_bom_see_attachments_product_template_form_view
42
- msgid "Bom Attachments"
57
+ #: model:ir.actions.server,name:mrp_attachment_mgmt.action_see_workorder_bom_attachments
58
+ #: model:ir.actions.server,name:mrp_attachment_mgmt.action_show_production_bom_attachments
59
+ msgid "BoM Attachments"
43
60
  msgstr ""
44
61
 
45
62
  #. module: mrp_attachment_mgmt
@@ -47,6 +64,12 @@ msgstr ""
47
64
  msgid "Product"
48
65
  msgstr ""
49
66
 
67
+ #. module: mrp_attachment_mgmt
68
+ #: model:ir.actions.server,name:mrp_attachment_mgmt.action_see_workorder_attachments
69
+ #: model:ir.actions.server,name:mrp_attachment_mgmt.action_show_production_attachments
70
+ msgid "Product Attachments"
71
+ msgstr ""
72
+
50
73
  #. module: mrp_attachment_mgmt
51
74
  #: model:ir.model,name:mrp_attachment_mgmt.model_product_product
52
75
  msgid "Product Variant"
@@ -2,6 +2,7 @@
2
2
  # Copyright 2023 Tecnativa - Pedro M. Baeza
3
3
  # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
4
4
  from odoo import api, models
5
+ from odoo.tools.safe_eval import safe_eval
5
6
 
6
7
 
7
8
  class MrpBom(models.Model):
@@ -31,3 +32,22 @@ class MrpBom(models.Model):
31
32
  )
32
33
  products = self.env["product.product"].search([("id", "in", product_ids)])
33
34
  return products._action_show_attachments()
35
+
36
+ def action_show_product_attachments(self):
37
+ if self.product_id:
38
+ return self.product_id._action_show_attachments()
39
+ return self.product_tmpl_id._action_show_attachments()
40
+
41
+ def _action_show_attachments(self):
42
+ """Returns the action to show the attachments linked to the bom record."""
43
+ domain = [
44
+ ("res_model", "=", "mrp.bom"),
45
+ ("res_id", "in", self.ids),
46
+ ]
47
+ action = self.env["ir.actions.actions"]._for_xml_id("base.action_attachment")
48
+ context = action.get("context", "{}")
49
+ context = safe_eval(context)
50
+ context["create"] = False
51
+ context["edit"] = False
52
+ action.update({"domain": domain, "context": context})
53
+ return action
@@ -8,3 +8,6 @@ class MrpProduction(models.Model):
8
8
 
9
9
  def action_show_attachments(self):
10
10
  return self.product_id._action_show_attachments()
11
+
12
+ def action_show_bom_attachments(self):
13
+ return self.bom_id._action_show_attachments()
@@ -22,3 +22,6 @@ class MrpWorkorder(models.Model):
22
22
  % {"error_count": len(error), "error_msg": "\n".join(error)}
23
23
  )
24
24
  return self.product_id._action_show_attachments()
25
+
26
+ def action_see_workorder_bom_attachments(self):
27
+ return self.production_id.bom_id._action_show_attachments()
@@ -10,6 +10,21 @@ class ProductTemplate(models.Model):
10
10
  def action_see_bom_documents(self):
11
11
  return fields.first(self.bom_ids).action_see_bom_documents()
12
12
 
13
+ def action_see_bom_attachments(self):
14
+ return self.bom_ids._action_show_attachments()
15
+
16
+ def _action_show_attachments(self):
17
+ """Returns the action to show the attachments linked to the products
18
+ recordset or to their templates.
19
+ """
20
+ domain = [
21
+ ("res_model", "=", "product.template"),
22
+ ("res_id", "in", self.ids),
23
+ ]
24
+ action = self.env["ir.actions.actions"]._for_xml_id("base.action_attachment")
25
+ action.update({"domain": domain})
26
+ return action
27
+
13
28
 
14
29
  class ProductProduct(models.Model):
15
30
  _inherit = "product.product"
@@ -17,6 +32,9 @@ class ProductProduct(models.Model):
17
32
  def action_see_bom_documents(self):
18
33
  return fields.first(self.bom_ids).action_see_bom_documents()
19
34
 
35
+ def action_see_bom_attachments(self):
36
+ return self.bom_ids._action_show_attachments()
37
+
20
38
  def _action_show_attachments(self):
21
39
  """Returns the action to show the attachments linked to the products
22
40
  recordset or to their templates.
@@ -2,3 +2,7 @@
2
2
 
3
3
  * Víctor Martínez
4
4
  * Pedro M. Baeza
5
+
6
+ * `ForgeFlow <https://forgeflow.com>`_:
7
+
8
+ * Marina Alapont
@@ -1,10 +1,13 @@
1
1
  #. Go to *Manufacturing -> Operation > Work Orders* and click in window open button (after the "Start" and "Block" options).
2
- #. The smart-button "Attachments" display the attachments of the related product.
3
-
2
+ #. The smart-button "Product Attachments" display the attachments of the related product.
3
+ #. The smart-button "BoM Attachments" displays the attachments of the workorder BoM.
4
4
 
5
5
  #. Go to *Manufacturing -> Products > Bill of material -> Desk Combination*.
6
6
  #. Go to "Attachment" icon related to "Office Chair Black" component and upload some file.
7
- #. The smart-button "Attachments" (from Bill of material) display the attachments of all components.
7
+ #. The smart-button "Components Attachments" (from Bill of material) display the attachments of all components.
8
+ #. Go to the Desk Combination product and upload an attachment
9
+ #. The smart-button "Product Attachments" displays the Desk Combination attachments.
8
10
 
9
11
  #. Go to *Manufacturing -> Products > Products -> Desk Combination*.
10
- #. The smart-button "Bom Attachments" display the attachments of all components from Bill of material.
12
+ #. The smart-button "Components Attachments" display the attachments of all components from Bill of material.
13
+ #. The smart-button "Bom Attachments" display the attachments of all the product Bill of materials.
@@ -3,15 +3,16 @@
3
3
  <head>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5
5
  <meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
6
- <title>Mrp Attachment Mgmt</title>
6
+ <title>README.rst</title>
7
7
  <style type="text/css">
8
8
 
9
9
  /*
10
10
  :Author: David Goodger (goodger@python.org)
11
- :Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
11
+ :Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
12
12
  :Copyright: This stylesheet has been placed in the public domain.
13
13
 
14
14
  Default cascading style sheet for the HTML output of Docutils.
15
+ Despite the name, some widely supported CSS2 features are used.
15
16
 
16
17
  See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
17
18
  customize this style sheet.
@@ -274,7 +275,7 @@ pre.literal-block, pre.doctest-block, pre.math, pre.code {
274
275
  margin-left: 2em ;
275
276
  margin-right: 2em }
276
277
 
277
- pre.code .ln { color: grey; } /* line numbers */
278
+ pre.code .ln { color: gray; } /* line numbers */
278
279
  pre.code, code { background-color: #eeeeee }
279
280
  pre.code .comment, code .comment { color: #5C6576 }
280
281
  pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
@@ -300,7 +301,7 @@ span.option {
300
301
  span.pre {
301
302
  white-space: pre }
302
303
 
303
- span.problematic {
304
+ span.problematic, pre.problematic {
304
305
  color: red }
305
306
 
306
307
  span.section-subtitle {
@@ -359,16 +360,21 @@ ul.auto-toc {
359
360
  </style>
360
361
  </head>
361
362
  <body>
362
- <div class="document" id="mrp-attachment-mgmt">
363
- <h1 class="title">Mrp Attachment Mgmt</h1>
363
+ <div class="document">
364
364
 
365
+
366
+ <a class="reference external image-reference" href="https://odoo-community.org/get-involved?utm_source=readme">
367
+ <img alt="Odoo Community Association" src="https://odoo-community.org/readme-banner-image" />
368
+ </a>
369
+ <div class="section" id="mrp-attachment-mgmt">
370
+ <h1>Mrp Attachment Mgmt</h1>
365
371
  <!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
366
372
  !! This file is generated by oca-gen-addon-readme !!
367
373
  !! changes will be overwritten. !!
368
374
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
369
- !! source digest: sha256:aa8781c1fbe86a94327f0904ae05e3bdb29653fef631ae1d22bd1bbf337d0dd1
375
+ !! source digest: sha256:26e41b22615b7547364c167bc5efb91063113aa0427de1ac9c548bfec623af65
370
376
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
371
- <p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/manufacture/tree/16.0/mrp_attachment_mgmt"><img alt="OCA/manufacture" src="https://img.shields.io/badge/github-OCA%2Fmanufacture-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/manufacture-16-0/manufacture-16-0-mrp_attachment_mgmt"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/manufacture&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
377
+ <p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/manufacture/tree/16.0/mrp_attachment_mgmt"><img alt="OCA/manufacture" src="https://img.shields.io/badge/github-OCA%2Fmanufacture-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/manufacture-16-0/manufacture-16-0-mrp_attachment_mgmt"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/manufacture&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
372
378
  <p>This module allows to get all attachments of a bill of materials (all levels) on a view.
373
379
  This module allows to get all attachments of a work orders products to produce on a view.</p>
374
380
  <p><strong>Table of contents</strong></p>
@@ -386,26 +392,30 @@ This module allows to get all attachments of a work orders products to produce o
386
392
  </ul>
387
393
  </div>
388
394
  <div class="section" id="configuration">
389
- <h1><a class="toc-backref" href="#toc-entry-1">Configuration</a></h1>
395
+ <h2><a class="toc-backref" href="#toc-entry-1">Configuration</a></h2>
390
396
  <p>To configure this module, you need to:</p>
391
397
  <ol class="arabic simple">
392
398
  <li>Go to <em>Manufacturing -&gt; Configuration -&gt; Settings</em> and check “Work Orders” option.</li>
393
399
  </ol>
394
400
  </div>
395
401
  <div class="section" id="usage">
396
- <h1><a class="toc-backref" href="#toc-entry-2">Usage</a></h1>
402
+ <h2><a class="toc-backref" href="#toc-entry-2">Usage</a></h2>
397
403
  <ol class="arabic simple">
398
404
  <li>Go to <em>Manufacturing -&gt; Operation &gt; Work Orders</em> and click in window open button (after the “Start” and “Block” options).</li>
399
- <li>The smart-button “Attachments” display the attachments of the related product.</li>
405
+ <li>The smart-button “Product Attachments” display the attachments of the related product.</li>
406
+ <li>The smart-button “BoM Attachments” displays the attachments of the workorder BoM.</li>
400
407
  <li>Go to <em>Manufacturing -&gt; Products &gt; Bill of material -&gt; Desk Combination</em>.</li>
401
408
  <li>Go to “Attachment” icon related to “Office Chair Black” component and upload some file.</li>
402
- <li>The smart-button “Attachments” (from Bill of material) display the attachments of all components.</li>
409
+ <li>The smart-button “Components Attachments” (from Bill of material) display the attachments of all components.</li>
410
+ <li>Go to the Desk Combination product and upload an attachment</li>
411
+ <li>The smart-button “Product Attachments” displays the Desk Combination attachments.</li>
403
412
  <li>Go to <em>Manufacturing -&gt; Products &gt; Products -&gt; Desk Combination</em>.</li>
404
- <li>The smart-button “Bom Attachments” display the attachments of all components from Bill of material.</li>
413
+ <li>The smart-button “Components Attachments” display the attachments of all components from Bill of material.</li>
414
+ <li>The smart-button “Bom Attachments” display the attachments of all the product Bill of materials.</li>
405
415
  </ol>
406
416
  </div>
407
417
  <div class="section" id="bug-tracker">
408
- <h1><a class="toc-backref" href="#toc-entry-3">Bug Tracker</a></h1>
418
+ <h2><a class="toc-backref" href="#toc-entry-3">Bug Tracker</a></h2>
409
419
  <p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/manufacture/issues">GitHub Issues</a>.
410
420
  In case of trouble, please check there if your issue has already been reported.
411
421
  If you spotted it first, help us to smash it by providing a detailed and welcomed
@@ -413,27 +423,33 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
413
423
  <p>Do not contact contributors directly about support or help with technical issues.</p>
414
424
  </div>
415
425
  <div class="section" id="credits">
416
- <h1><a class="toc-backref" href="#toc-entry-4">Credits</a></h1>
426
+ <h2><a class="toc-backref" href="#toc-entry-4">Credits</a></h2>
417
427
  <div class="section" id="authors">
418
- <h2><a class="toc-backref" href="#toc-entry-5">Authors</a></h2>
428
+ <h3><a class="toc-backref" href="#toc-entry-5">Authors</a></h3>
419
429
  <ul class="simple">
420
430
  <li>Tecnativa</li>
421
431
  </ul>
422
432
  </div>
423
433
  <div class="section" id="contributors">
424
- <h2><a class="toc-backref" href="#toc-entry-6">Contributors</a></h2>
434
+ <h3><a class="toc-backref" href="#toc-entry-6">Contributors</a></h3>
425
435
  <ul class="simple">
426
436
  <li><a class="reference external" href="https://www.tecnativa.com">Tecnativa</a>:<ul>
427
437
  <li>Víctor Martínez</li>
428
438
  <li>Pedro M. Baeza</li>
429
439
  </ul>
430
440
  </li>
441
+ <li><a class="reference external" href="https://forgeflow.com">ForgeFlow</a>:<ul>
442
+ <li>Marina Alapont</li>
443
+ </ul>
444
+ </li>
431
445
  </ul>
432
446
  </div>
433
447
  <div class="section" id="maintainers">
434
- <h2><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h2>
448
+ <h3><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h3>
435
449
  <p>This module is maintained by the OCA.</p>
436
- <a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
450
+ <a class="reference external image-reference" href="https://odoo-community.org">
451
+ <img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
452
+ </a>
437
453
  <p>OCA, or the Odoo Community Association, is a nonprofit organization whose
438
454
  mission is to support the collaborative development of Odoo features and
439
455
  promote its widespread use.</p>
@@ -444,5 +460,6 @@ promote its widespread use.</p>
444
460
  </div>
445
461
  </div>
446
462
  </div>
463
+ </div>
447
464
  </body>
448
465
  </html>
@@ -91,3 +91,14 @@ class TestMrpAttachmentMgmtBase(common.TransactionCase):
91
91
  "datas": base64.b64encode(b"\xff data"),
92
92
  }
93
93
  )
94
+
95
+ def _create_bom_attachment(self, bom, name=False):
96
+ name = name if name else "Test file %s" % bom.display_name
97
+ return self.attachment_model.create(
98
+ {
99
+ "name": name,
100
+ "res_model": "mrp.bom",
101
+ "res_id": bom.id,
102
+ "datas": base64.b64encode(b"\xff data"),
103
+ }
104
+ )
@@ -34,7 +34,33 @@ class TestMrpAttachmentMgmt(TestMrpAttachmentMgmtBase):
34
34
  action = self.workorder.action_see_workorder_attachments()
35
35
  self.assertIn(attachment.id, self.attachment_model.search(action["domain"]).ids)
36
36
 
37
+ bom_attachment = self._create_bom_attachment(self.bom)
38
+ action = self.workorder.action_see_workorder_bom_attachments()
39
+ self.assertIn(
40
+ bom_attachment.id, self.attachment_model.search(action["domain"]).ids
41
+ )
42
+
37
43
  def test_mrp_production_attachments(self):
38
44
  attachment = self._create_attachment(self.product)
39
45
  action = self.mrp_production.action_show_attachments()
40
46
  self.assertIn(attachment.id, self.attachment_model.search(action["domain"]).ids)
47
+
48
+ bom_attachment = self._create_bom_attachment(self.bom)
49
+ action = self.mrp_production.action_show_bom_attachments()
50
+ self.assertIn(
51
+ bom_attachment.id, self.attachment_model.search(action["domain"]).ids
52
+ )
53
+
54
+ def test_mrp_bom_attachments(self):
55
+ product_attachment = self._create_attachment(self.product.product_tmpl_id)
56
+ action = self.bom.action_show_product_attachments()
57
+ self.assertIn(
58
+ product_attachment.id, self.attachment_model.search(action["domain"]).ids
59
+ )
60
+
61
+ def test_product_attachments(self):
62
+ bom_attachment = self._create_bom_attachment(self.bom)
63
+ action = self.product.action_see_bom_attachments()
64
+ self.assertIn(
65
+ bom_attachment.id, self.attachment_model.search(action["domain"]).ids
66
+ )
@@ -14,8 +14,21 @@
14
14
  name="action_see_bom_documents"
15
15
  type="object"
16
16
  icon="fa-files-o"
17
- string="Attachments"
18
- />
17
+ >
18
+ <div class="o_field_widget o_stat_info">
19
+ <span class="o_stat_text">Components<br />Attachments</span>
20
+ </div>
21
+ </button>
22
+ <button
23
+ class="oe_stat_button"
24
+ name="action_show_product_attachments"
25
+ type="object"
26
+ icon="fa-files-o"
27
+ >
28
+ <div class="o_field_widget o_stat_info">
29
+ <span class="o_stat_text">Product<br />Attachments</span>
30
+ </div>
31
+ </button>
19
32
  </xpath>
20
33
  </field>
21
34
  </record>
@@ -11,13 +11,26 @@
11
11
  name="action_show_attachments"
12
12
  type="object"
13
13
  icon="fa-files-o"
14
- string="Attachments"
15
- />
14
+ >
15
+ <div class="o_field_widget o_stat_info">
16
+ <span class="o_stat_text">Product<br />Attachments</span>
17
+ </div>
18
+ </button>
19
+ <button
20
+ class="oe_stat_button"
21
+ name="action_show_bom_attachments"
22
+ type="object"
23
+ icon="fa-files-o"
24
+ >
25
+ <div class="o_field_widget o_stat_info">
26
+ <span class="o_stat_text">BoM<br />Attachments</span>
27
+ </div>
28
+ </button>
16
29
  </xpath>
17
30
  </field>
18
31
  </record>
19
32
  <record id="action_show_production_attachments" model="ir.actions.server">
20
- <field name="name">Attachments</field>
33
+ <field name="name">Product Attachments</field>
21
34
  <field name="model_id" ref="mrp.model_mrp_production" />
22
35
  <field name="binding_model_id" ref="mrp.model_mrp_production" />
23
36
  <field name="binding_view_types">list</field>
@@ -27,4 +40,15 @@
27
40
  action = records.action_show_attachments()
28
41
  </field>
29
42
  </record>
43
+ <record id="action_show_production_bom_attachments" model="ir.actions.server">
44
+ <field name="name">BoM Attachments</field>
45
+ <field name="model_id" ref="mrp.model_mrp_production" />
46
+ <field name="binding_model_id" ref="mrp.model_mrp_production" />
47
+ <field name="binding_view_types">list</field>
48
+ <field name="state">code</field>
49
+ <field name="code">
50
+ if records:
51
+ action = records.action_show_bom_attachments()
52
+ </field>
53
+ </record>
30
54
  </odoo>
@@ -11,10 +11,25 @@
11
11
  name="action_see_bom_documents"
12
12
  type="object"
13
13
  icon="fa-files-o"
14
- string="Bom Attachments"
15
14
  groups="mrp.group_mrp_user"
16
15
  attrs="{'invisible': [('bom_count','!=',1)]}"
17
- />
16
+ >
17
+ <div class="o_field_widget o_stat_info">
18
+ <span class="o_stat_text">Components<br />Attachments</span>
19
+ </div>
20
+ </button>
21
+ <button
22
+ class="oe_stat_button"
23
+ name="action_see_bom_attachments"
24
+ type="object"
25
+ icon="fa-files-o"
26
+ groups="mrp.group_mrp_user"
27
+ attrs="{'invisible': [('bom_count','=',0)]}"
28
+ >
29
+ <div class="o_field_widget o_stat_info">
30
+ <span class="o_stat_text">BoMs<br />Attachments</span>
31
+ </div>
32
+ </button>
18
33
  </xpath>
19
34
  </field>
20
35
  </record>
@@ -29,10 +44,25 @@
29
44
  name="action_see_bom_documents"
30
45
  type="object"
31
46
  icon="fa-files-o"
32
- string="Bom Attachments"
33
47
  groups="mrp.group_mrp_user"
34
48
  attrs="{'invisible': [('bom_count','!=',1)]}"
35
- />
49
+ >
50
+ <div class="o_field_widget o_stat_info">
51
+ <span class="o_stat_text">Components<br />Attachments</span>
52
+ </div>
53
+ </button>
54
+ <button
55
+ class="oe_stat_button"
56
+ name="action_see_bom_attachments"
57
+ type="object"
58
+ icon="fa-files-o"
59
+ groups="mrp.group_mrp_user"
60
+ attrs="{'invisible': [('bom_count','=',0)]}"
61
+ >
62
+ <div class="o_field_widget o_stat_info">
63
+ <span class="o_stat_text">BoMs<br />Attachments</span>
64
+ </div>
65
+ </button>
36
66
  </xpath>
37
67
  </field>
38
68
  </record>
@@ -11,13 +11,26 @@
11
11
  name="action_see_workorder_attachments"
12
12
  type="object"
13
13
  icon="fa-files-o"
14
- string="Attachments"
15
- />
14
+ >
15
+ <div class="o_field_widget o_stat_info">
16
+ <span class="o_stat_text">Product<br />Attachments</span>
17
+ </div>
18
+ </button>
19
+ <button
20
+ class="oe_stat_button"
21
+ name="action_see_workorder_bom_attachments"
22
+ type="object"
23
+ icon="fa-files-o"
24
+ >
25
+ <div class="o_field_widget o_stat_info">
26
+ <span class="o_stat_text">BoM<br />Attachments</span>
27
+ </div>
28
+ </button>
16
29
  </xpath>
17
30
  </field>
18
31
  </record>
19
32
  <record id="action_see_workorder_attachments" model="ir.actions.server">
20
- <field name="name">Attachments</field>
33
+ <field name="name">Product Attachments</field>
21
34
  <field name="model_id" ref="model_mrp_workorder" />
22
35
  <field name="binding_model_id" ref="model_mrp_workorder" />
23
36
  <field name="binding_view_types">list</field>
@@ -27,4 +40,15 @@
27
40
  action = records.action_see_workorder_attachments()
28
41
  </field>
29
42
  </record>
43
+ <record id="action_see_workorder_bom_attachments" model="ir.actions.server">
44
+ <field name="name">BoM Attachments</field>
45
+ <field name="model_id" ref="model_mrp_workorder" />
46
+ <field name="binding_model_id" ref="model_mrp_workorder" />
47
+ <field name="binding_view_types">list</field>
48
+ <field name="state">code</field>
49
+ <field name="code">
50
+ if records:
51
+ action = records.action_see_workorder_bom_attachments()
52
+ </field>
53
+ </record>
30
54
  </odoo>
@@ -1,18 +1,21 @@
1
1
  Metadata-Version: 2.1
2
- Name: odoo-addon-mrp-attachment-mgmt
3
- Version: 16.0.1.0.0.6
2
+ Name: odoo-addon-mrp_attachment_mgmt
3
+ Version: 16.0.1.1.0
4
4
  Summary: Mrp Attachment Mgmt
5
5
  Home-page: https://github.com/OCA/manufacture
6
6
  Author: Tecnativa, Odoo Community Association (OCA)
7
7
  Author-email: support@odoo-community.org
8
8
  License: AGPL-3
9
- Platform: UNKNOWN
10
9
  Classifier: Programming Language :: Python
11
10
  Classifier: Framework :: Odoo
12
11
  Classifier: Framework :: Odoo :: 16.0
13
12
  Classifier: License :: OSI Approved :: GNU Affero General Public License v3
14
13
  Requires-Python: >=3.10
15
- Requires-Dist: odoo <16.1dev,>=16.0a
14
+ Requires-Dist: odoo<16.1dev,>=16.0a
15
+
16
+ .. image:: https://odoo-community.org/readme-banner-image
17
+ :target: https://odoo-community.org/get-involved?utm_source=readme
18
+ :alt: Odoo Community Association
16
19
 
17
20
  ===================
18
21
  Mrp Attachment Mgmt
@@ -23,13 +26,13 @@ Mrp Attachment Mgmt
23
26
  !! This file is generated by oca-gen-addon-readme !!
24
27
  !! changes will be overwritten. !!
25
28
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
26
- !! source digest: sha256:aa8781c1fbe86a94327f0904ae05e3bdb29653fef631ae1d22bd1bbf337d0dd1
29
+ !! source digest: sha256:26e41b22615b7547364c167bc5efb91063113aa0427de1ac9c548bfec623af65
27
30
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
28
31
 
29
32
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
30
33
  :target: https://odoo-community.org/page/development-status
31
34
  :alt: Beta
32
- .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
35
+ .. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
33
36
  :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
34
37
  :alt: License: AGPL-3
35
38
  .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fmanufacture-lightgray.png?logo=github
@@ -63,15 +66,18 @@ Usage
63
66
  =====
64
67
 
65
68
  #. 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
-
69
+ #. The smart-button "Product Attachments" display the attachments of the related product.
70
+ #. The smart-button "BoM Attachments" displays the attachments of the workorder BoM.
68
71
 
69
72
  #. Go to *Manufacturing -> Products > Bill of material -> Desk Combination*.
70
73
  #. 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.
74
+ #. The smart-button "Components Attachments" (from Bill of material) display the attachments of all components.
75
+ #. Go to the Desk Combination product and upload an attachment
76
+ #. The smart-button "Product Attachments" displays the Desk Combination attachments.
72
77
 
73
78
  #. Go to *Manufacturing -> Products > Products -> Desk Combination*.
74
- #. The smart-button "Bom Attachments" display the attachments of all components from Bill of material.
79
+ #. The smart-button "Components Attachments" display the attachments of all components from Bill of material.
80
+ #. The smart-button "Bom Attachments" display the attachments of all the product Bill of materials.
75
81
 
76
82
  Bug Tracker
77
83
  ===========
@@ -99,6 +105,10 @@ Contributors
99
105
  * Víctor Martínez
100
106
  * Pedro M. Baeza
101
107
 
108
+ * `ForgeFlow <https://forgeflow.com>`_:
109
+
110
+ * Marina Alapont
111
+
102
112
  Maintainers
103
113
  ~~~~~~~~~~~
104
114
 
@@ -123,5 +133,3 @@ Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
123
133
  This module is part of the `OCA/manufacture <https://github.com/OCA/manufacture/tree/16.0/mrp_attachment_mgmt>`_ project on GitHub.
124
134
 
125
135
  You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
126
-
127
-
@@ -0,0 +1,29 @@
1
+ odoo/addons/mrp_attachment_mgmt/README.rst,sha256=9x0A0rWBsWq0-Jiw1LdcnGfER-h5xVzx0OcDF-fx7Fo,4649
2
+ odoo/addons/mrp_attachment_mgmt/__init__.py,sha256=X9EJGOE2GtZbS0G82PtSXmWSZ_R8jEM0rlJTDliQjp4,21
3
+ odoo/addons/mrp_attachment_mgmt/__manifest__.py,sha256=JSQXuhPfOhwbVYtPsnJXCdVpylhLggx9gHttvxDegwU,618
4
+ odoo/addons/mrp_attachment_mgmt/i18n/es.po,sha256=LgiJDz2TGcVFYtByEWjRtdYuCXZbGwgpB498Eujm8s0,2758
5
+ odoo/addons/mrp_attachment_mgmt/i18n/hr.po,sha256=pC1-G9W1EKHHJkXuTIO5Pi2UWH8IIK5eUal5WbOFjsg,2354
6
+ odoo/addons/mrp_attachment_mgmt/i18n/it.po,sha256=190qfAGRwsgx8nZGnLUDHf6NvCoYKlb2F2nMumuhSeo,2636
7
+ odoo/addons/mrp_attachment_mgmt/i18n/mrp_attachment_mgmt.pot,sha256=-bFQxGJTdVGkgoHUzkAGwbPLbiE-lo-ju8fmi3HpYiw,3080
8
+ odoo/addons/mrp_attachment_mgmt/models/__init__.py,sha256=un-rorg4HCTpb6nfenzjiFWjja1JIAPxq0TecVYp3FE,101
9
+ odoo/addons/mrp_attachment_mgmt/models/mrp_bom.py,sha256=H-MAlJ4F69EAvxe1ThhTU7AF1mLWBPYpTY62TPQBW08,2142
10
+ odoo/addons/mrp_attachment_mgmt/models/mrp_production.py,sha256=Q-XpnFKG3JyUBVq1psr0jhHnFmf8pK6N3U93eDHA02w,402
11
+ odoo/addons/mrp_attachment_mgmt/models/mrp_workorder.py,sha256=JXyhanCKDn-_R7xhUzWX3u6zOoITrF7jiMlaERdgHTc,1018
12
+ odoo/addons/mrp_attachment_mgmt/models/product.py,sha256=sfCKRrLnLXMCm3_Se6DiHG16Edav6JCVm3QsP5V0rSc,1794
13
+ odoo/addons/mrp_attachment_mgmt/readme/CONFIGURE.rst,sha256=mPnFcVQshlt9TMTUl6X5Qsu63hIyOB6exLUdGvNBmuo,126
14
+ odoo/addons/mrp_attachment_mgmt/readme/CONTRIBUTORS.rst,sha256=rxF4Mrhg1Sc67JCIVasrzKRwpm-U-JM_kJpdd4SV0XI,147
15
+ odoo/addons/mrp_attachment_mgmt/readme/DESCRIPTION.rst,sha256=cqkqQpED2uq5EREPNCRt6S3MWZkTb-Lr5R3GfipwBKc,179
16
+ odoo/addons/mrp_attachment_mgmt/readme/USAGE.rst,sha256=pu4GXek0K_CkeS-nsws0VbRCNM5Y6MdL07kOfQJWo3E,1009
17
+ odoo/addons/mrp_attachment_mgmt/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
18
+ odoo/addons/mrp_attachment_mgmt/static/description/index.html,sha256=5NER-nFCXBr1PoEUWGud4zSVGYv0tAbc_WPsgI0WJ-g,14676
19
+ odoo/addons/mrp_attachment_mgmt/tests/__init__.py,sha256=_XqU3qXWgPdmpUZRUyUC9W8EzAilhHINiphXlL13JPs,104
20
+ odoo/addons/mrp_attachment_mgmt/tests/common.py,sha256=-ArI6udItWVZldXuT94ULD-ZLRKCniNtB5_D2rNRrdY,3850
21
+ odoo/addons/mrp_attachment_mgmt/tests/test_mrp_attachment_mgmt.py,sha256=RHq1UR_Ctp2CV_SlXO97OGVip58a38Nwj9YkJKlg9TA,3125
22
+ odoo/addons/mrp_attachment_mgmt/views/mrp_bom_view.xml,sha256=kySivUiBNWW3oxn9F5xLmWp68NXhrWQwXaqoDuyrQTE,1355
23
+ odoo/addons/mrp_attachment_mgmt/views/mrp_production_views.xml,sha256=tQ_tZ2FDW7NOyhWWf4-V6u7rncjGb5krJ_xNiBTrsSI,2332
24
+ odoo/addons/mrp_attachment_mgmt/views/product_views.xml,sha256=adt33r7b0ZHOzx342cbP2njbx4TqMIBFaw_vsPYN-LE,3089
25
+ odoo/addons/mrp_attachment_mgmt/views/workorder_attachments_views.xml,sha256=ELnnkm_rWaQidLD0qoOT4y1vA6SFL3Jko5CO09QSQAE,2376
26
+ odoo_addon_mrp_attachment_mgmt-16.0.1.1.0.dist-info/METADATA,sha256=VVCvTbSozEcI6EpLio8kcbi61aAhPB6JX0XeKmk-F0A,5160
27
+ odoo_addon_mrp_attachment_mgmt-16.0.1.1.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
28
+ odoo_addon_mrp_attachment_mgmt-16.0.1.1.0.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
29
+ odoo_addon_mrp_attachment_mgmt-16.0.1.1.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: bdist_wheel (0.45.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,28 +0,0 @@
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=LgiJDz2TGcVFYtByEWjRtdYuCXZbGwgpB498Eujm8s0,2758
5
- odoo/addons/mrp_attachment_mgmt/i18n/it.po,sha256=190qfAGRwsgx8nZGnLUDHf6NvCoYKlb2F2nMumuhSeo,2636
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.6.dist-info/METADATA,sha256=1TaPnGZ8s__-byJbAIVmPoHbWPRTFKqSaWqEXiYKWoM,4599
26
- odoo_addon_mrp_attachment_mgmt-16.0.1.0.0.6.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
27
- odoo_addon_mrp_attachment_mgmt-16.0.1.0.0.6.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
28
- odoo_addon_mrp_attachment_mgmt-16.0.1.0.0.6.dist-info/RECORD,,