odoo-addon-rma 15.0.1.3.0__py3-none-any.whl → 15.0.1.3.1.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.
@@ -7,7 +7,7 @@ Return Merchandise Authorization Management
7
7
  !! This file is generated by oca-gen-addon-readme !!
8
8
  !! changes will be overwritten. !!
9
9
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:ff393a4ae1a4e373490a3d9129969c7a98f022e1e3b823a1d8653ed23c97ce55
10
+ !! source digest: sha256:1db638c27efa0a82a032c20fd944afcebe24ea559f09fb95b0cdde7ab8df9b98
11
11
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
12
 
13
13
  .. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
@@ -179,13 +179,13 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
179
179
  mission is to support the collaborative development of Odoo features and
180
180
  promote its widespread use.
181
181
 
182
- .. |maintainer-chiendandalu| image:: https://github.com/chiendandalu.png?size=40px
183
- :target: https://github.com/chiendandalu
184
- :alt: chiendandalu
182
+ .. |maintainer-chienandalu| image:: https://github.com/chienandalu.png?size=40px
183
+ :target: https://github.com/chienandalu
184
+ :alt: chienandalu
185
185
 
186
186
  Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
187
187
 
188
- |maintainer-chiendandalu|
188
+ |maintainer-chienandalu|
189
189
 
190
190
  This module is part of the `OCA/rma <https://github.com/OCA/rma/tree/15.0/rma>`_ project on GitHub.
191
191
 
@@ -3,12 +3,12 @@
3
3
  {
4
4
  "name": "Return Merchandise Authorization Management",
5
5
  "summary": "Return Merchandise Authorization (RMA)",
6
- "version": "15.0.1.3.0",
6
+ "version": "15.0.1.3.1",
7
7
  "development_status": "Production/Stable",
8
8
  "category": "RMA",
9
9
  "website": "https://github.com/OCA/rma",
10
10
  "author": "Tecnativa, Odoo Community Association (OCA)",
11
- "maintainers": ["chiendandalu"],
11
+ "maintainers": ["chienandalu"],
12
12
  "license": "AGPL-3",
13
13
  "depends": ["stock_account"],
14
14
  "data": [
@@ -6,7 +6,7 @@ msgid ""
6
6
  msgstr ""
7
7
  "Project-Id-Version: Odoo Server 14.0\n"
8
8
  "Report-Msgid-Bugs-To: \n"
9
- "PO-Revision-Date: 2024-04-03 12:43+0000\n"
9
+ "PO-Revision-Date: 2024-08-20 09:58+0000\n"
10
10
  "Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
11
11
  "Language-Team: none\n"
12
12
  "Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
14
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
15
  "Content-Transfer-Encoding: \n"
16
16
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
- "X-Generator: Weblate 4.17\n"
17
+ "X-Generator: Weblate 5.6.2\n"
18
18
 
19
19
  #. module: rma
20
20
  #: code:addons/rma/models/rma_team.py:0
@@ -355,12 +355,12 @@ msgstr "<strong>Responsabile:</strong>"
355
355
  #. module: rma
356
356
  #: model_terms:ir.ui.view,arch_db:rma.report_rma_document
357
357
  msgid "<strong>Shipping Address:</strong>"
358
- msgstr "<strong>Indirizzo di consegna:</strong>"
358
+ msgstr "<strong>Indirizzo di spedizione:</strong>"
359
359
 
360
360
  #. module: rma
361
361
  #: model_terms:ir.ui.view,arch_db:rma.portal_rma_page
362
362
  msgid "<strong>Shipping address:</strong>"
363
- msgstr "<strong>Indirizzo di consegna:</strong>"
363
+ msgstr "<strong>Indirizzo di spedizione:</strong>"
364
364
 
365
365
  #. module: rma
366
366
  #: model_terms:ir.ui.view,arch_db:rma.report_rma_document
@@ -3,6 +3,7 @@
3
3
 
4
4
  from odoo import _, api, fields, models
5
5
  from odoo.exceptions import ValidationError
6
+ from odoo.tools import float_compare
6
7
 
7
8
 
8
9
  class StockMove(models.Model):
@@ -59,7 +60,18 @@ class StockMove(models.Model):
59
60
  """
60
61
  for move in self.filtered(lambda r: r.state not in ("done", "cancel")):
61
62
  rma_receiver = move.sudo().rma_receiver_ids
62
- if rma_receiver and move.quantity_done != rma_receiver.product_uom_qty:
63
+ qty_prec = self.env["decimal.precision"].precision_get(
64
+ "Product Unit of Measure"
65
+ )
66
+ if (
67
+ rma_receiver
68
+ and float_compare(
69
+ move.quantity_done,
70
+ rma_receiver.product_uom_qty,
71
+ precision_digits=qty_prec,
72
+ )
73
+ != 0
74
+ ):
63
75
  raise ValidationError(
64
76
  _(
65
77
  "The quantity done for the product '%(id)s' must "
@@ -366,7 +366,7 @@ ul.auto-toc {
366
366
  !! This file is generated by oca-gen-addon-readme !!
367
367
  !! changes will be overwritten. !!
368
368
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
369
- !! source digest: sha256:ff393a4ae1a4e373490a3d9129969c7a98f022e1e3b823a1d8653ed23c97ce55
369
+ !! source digest: sha256:1db638c27efa0a82a032c20fd944afcebe24ea559f09fb95b0cdde7ab8df9b98
370
370
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
371
371
  <p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Production/Stable" src="https://img.shields.io/badge/maturity-Production%2FStable-green.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/rma/tree/15.0/rma"><img alt="OCA/rma" src="https://img.shields.io/badge/github-OCA%2Frma-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/rma-15-0/rma-15-0-rma"><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/rma&amp;target_branch=15.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
372
372
  <p>This module allows you to manage <a class="reference external" href="https://en.wikipedia.org/wiki/Return_merchandise_authorization">Return Merchandise Authorization (RMA)</a>.
@@ -528,7 +528,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
528
528
  mission is to support the collaborative development of Odoo features and
529
529
  promote its widespread use.</p>
530
530
  <p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainer</a>:</p>
531
- <p><a class="reference external image-reference" href="https://github.com/chiendandalu"><img alt="chiendandalu" src="https://github.com/chiendandalu.png?size=40px" /></a></p>
531
+ <p><a class="reference external image-reference" href="https://github.com/chienandalu"><img alt="chienandalu" src="https://github.com/chienandalu.png?size=40px" /></a></p>
532
532
  <p>This module is part of the <a class="reference external" href="https://github.com/OCA/rma/tree/15.0/rma">OCA/rma</a> project on GitHub.</p>
533
533
  <p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
534
534
  </div>
@@ -1,12 +1,11 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-rma
3
- Version: 15.0.1.3.0
3
+ Version: 15.0.1.3.1.1
4
4
  Summary: Return Merchandise Authorization (RMA)
5
5
  Home-page: https://github.com/OCA/rma
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 :: 15.0
@@ -24,7 +23,7 @@ Return Merchandise Authorization Management
24
23
  !! This file is generated by oca-gen-addon-readme !!
25
24
  !! changes will be overwritten. !!
26
25
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
27
- !! source digest: sha256:ff393a4ae1a4e373490a3d9129969c7a98f022e1e3b823a1d8653ed23c97ce55
26
+ !! source digest: sha256:1db638c27efa0a82a032c20fd944afcebe24ea559f09fb95b0cdde7ab8df9b98
28
27
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
29
28
 
30
29
  .. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
@@ -196,16 +195,14 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
196
195
  mission is to support the collaborative development of Odoo features and
197
196
  promote its widespread use.
198
197
 
199
- .. |maintainer-chiendandalu| image:: https://github.com/chiendandalu.png?size=40px
200
- :target: https://github.com/chiendandalu
201
- :alt: chiendandalu
198
+ .. |maintainer-chienandalu| image:: https://github.com/chienandalu.png?size=40px
199
+ :target: https://github.com/chienandalu
200
+ :alt: chienandalu
202
201
 
203
202
  Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
204
203
 
205
- |maintainer-chiendandalu|
204
+ |maintainer-chienandalu|
206
205
 
207
206
  This module is part of the `OCA/rma <https://github.com/OCA/rma/tree/15.0/rma>`_ project on GitHub.
208
207
 
209
208
  You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
210
-
211
-
@@ -1,6 +1,6 @@
1
- odoo/addons/rma/README.rst,sha256=NfSE2DOYd_QWYUcDYWQEIEHniUvj8I3c3Y4ckwbN8fc,7742
1
+ odoo/addons/rma/README.rst,sha256=Oo1NJb7a8jY7lNBzyfkdX1CAgZv2naF7xwt96JqXu_w,7737
2
2
  odoo/addons/rma/__init__.py,sha256=KD8ElbTlUwRgGDQzvMIqp-WeEXGTuHqQT352BCbK2I0,168
3
- odoo/addons/rma/__manifest__.py,sha256=qMsm-Zc0cQB8CU5WZYnHjkTvPku9qWRLpiYP0AuricM,1419
3
+ odoo/addons/rma/__manifest__.py,sha256=d_ANPwM4d20tVwfAip4z83xFP2kWnqsJgeULcSAO4gY,1418
4
4
  odoo/addons/rma/hooks.py,sha256=dUYhUPfUJRz33Ru_UUpHZSgYurSTwoHxUxoTfWksCOM,2825
5
5
  odoo/addons/rma/controllers/__init__.py,sha256=ZAYSY9pxyJjumL2QVLuxqtBzjLwKPiQsVXMBAWvNGGY,85
6
6
  odoo/addons/rma/controllers/main.py,sha256=ye0OSKRPZ6YhQzRt_Gv1W0Owd9_gdDScLhUu6ISvAps,5406
@@ -11,7 +11,7 @@ odoo/addons/rma/i18n/ca.po,sha256=gqn5J6IzpnyH0YTubM5OxbxxyWhTRKsSqqJjMkbnt7I,66
11
11
  odoo/addons/rma/i18n/de.po,sha256=XE8Sgucm8YQh-hrLmM38wuX6Vqi1djaaREbR03Gx994,82415
12
12
  odoo/addons/rma/i18n/de_AT.po,sha256=mr6wC80WpEervmPmIgENDlNuA8Qvg8BWljwKmU2L2q0,63403
13
13
  odoo/addons/rma/i18n/es.po,sha256=Hzf5bjCODD4KIlc0ALYBNAl2M0MHtw-9Tqls44ZMm_c,82381
14
- odoo/addons/rma/i18n/it.po,sha256=s6ZoA82wXepaXZVSnTxCF8pzK0yNhZm0CZu1M2HO36k,81493
14
+ odoo/addons/rma/i18n/it.po,sha256=Zb-0O3_XWwVccE5ZHS9I_wwasyDhk85LKncvAnXoGko,81498
15
15
  odoo/addons/rma/i18n/nl.po,sha256=0YpWQvenOs6gTe4FefAiHaI5uIIjj-Tau5-1Hfbjb7w,63400
16
16
  odoo/addons/rma/i18n/pt.po,sha256=l9nrEETQ6rH_4qX4eg_tvZwlTDUi6QbmNSy9oMZsG9o,74795
17
17
  odoo/addons/rma/i18n/pt_BR.po,sha256=UxVoNbwPNWt-kQTIBuKbbtq0f6BWH2ffBM-kVU_j81E,73983
@@ -31,7 +31,7 @@ odoo/addons/rma/models/rma_finalization.py,sha256=kgJ6EFWBXJKGCwKy7bbWRUynExsCMQ
31
31
  odoo/addons/rma/models/rma_operation.py,sha256=xbDjthojPoZpSpqKg3eNyYcctv40hPsmrFcUHV3BUyg,460
32
32
  odoo/addons/rma/models/rma_tag.py,sha256=RVFLyo8XmgjK_ftrRHWiEtzUQGs4b-OMhg0hwr-5Rzw,833
33
33
  odoo/addons/rma/models/rma_team.py,sha256=5gyghbFOE4RR6dR5TQ1lRC4kK88i6G51V3dlY9gN6EY,1935
34
- odoo/addons/rma/models/stock_move.py,sha256=FalAZemB7iwM70dtF5Thts1PYJ4RX2dBPx1AUoGn2Q0,5590
34
+ odoo/addons/rma/models/stock_move.py,sha256=fKp4AVAdwVkUbY2wxUmNOhTFNj0xU6Dpq9DxMhKPrXM,5939
35
35
  odoo/addons/rma/models/stock_picking.py,sha256=Wqdlb-eeYjUFLlxbdWt7rfr-VNLMZOmLTX3DU1CwTHE,1354
36
36
  odoo/addons/rma/models/stock_warehouse.py,sha256=UUjcNdgsa3M8wRm0g6Yn88jTNiIuw1rTpYYIog1MRYc,5393
37
37
  odoo/addons/rma/readme/CONFIGURE.rst,sha256=18sDF1e6lSdLnaWb6R1MVCgqT1-5QTaazG9HQKySdlg,796
@@ -43,7 +43,7 @@ odoo/addons/rma/report/report.xml,sha256=rMg9_lccL-dJClHvMCmRI1Feh499gnExeskIylc
43
43
  odoo/addons/rma/security/ir.model.access.csv,sha256=zACDkLgOfICGiJGb4A9RNKbtlpBcFIC4rDZxESyBzbQ,1724
44
44
  odoo/addons/rma/security/rma_security.xml,sha256=_tz_MXqW8bWfzGhgQ3pDI7xdx6tX321DrkIaRAd2W6E,5374
45
45
  odoo/addons/rma/static/description/icon.png,sha256=0VH8J6xmJMYW0dBaW-Ts-Gm5oRvbf9mOglT4vqUKxdU,7450
46
- odoo/addons/rma/static/description/index.html,sha256=J_sy1ZHOTCprRrs8wezd3N36y8RJZLq61Ymk2SdcneA,18361
46
+ odoo/addons/rma/static/description/index.html,sha256=mH0bSfX5XUV_TcE_Lle9lYoO_Weinkf6trWUiQE1Q_8,18358
47
47
  odoo/addons/rma/tests/__init__.py,sha256=Q2ntkew4ZtzTd3zhA1Ly6e-C1NrU6zIPUVEr7hDD-CY,89
48
48
  odoo/addons/rma/tests/test_rma.py,sha256=wn5nlujtKt2wa2795J-UkzBTmKnVKiaKlyyqhVxKlWU,36103
49
49
  odoo/addons/rma/views/menus.xml,sha256=KWrTOvwY6IB-liNjRvBxTkdCSkes-CMTFI0iakxoavE,603
@@ -66,7 +66,7 @@ odoo/addons/rma/wizard/rma_split.py,sha256=PZuVAGCXzRkycxJQIgfbPY__EPRXGPAkiKaGX
66
66
  odoo/addons/rma/wizard/rma_split_views.xml,sha256=SR0UJalQ477unHk2i6DdKay6h2zvhCx0ySZQGtan5FE,1463
67
67
  odoo/addons/rma/wizard/stock_picking_return.py,sha256=QY022secvc2uH284m2F9-_GscVKuSldY0HtYrBGefQk,3416
68
68
  odoo/addons/rma/wizard/stock_picking_return_views.xml,sha256=hbbCMm5YOfKy6o5HIVVMXhUSmuMkHAriJ4V8-qy8j1c,1045
69
- odoo_addon_rma-15.0.1.3.0.dist-info/METADATA,sha256=k0pychHnbvBxxuGxQmZHodidm94HsCkbRow1QHlYMfg,8324
70
- odoo_addon_rma-15.0.1.3.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
71
- odoo_addon_rma-15.0.1.3.0.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
72
- odoo_addon_rma-15.0.1.3.0.dist-info/RECORD,,
69
+ odoo_addon_rma-15.0.1.3.1.1.dist-info/METADATA,sha256=hB-YmnBr5IXqxX8mp07cV58-l-wufeGMGruZYWC9gH8,8301
70
+ odoo_addon_rma-15.0.1.3.1.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
71
+ odoo_addon_rma-15.0.1.3.1.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
72
+ odoo_addon_rma-15.0.1.3.1.1.dist-info/RECORD,,