odoo-addon-stock-move-location 15.0.1.5.1__py3-none-any.whl → 15.0.1.5.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.
@@ -7,7 +7,7 @@ Move Stock Location
7
7
  !! This file is generated by oca-gen-addon-readme !!
8
8
  !! changes will be overwritten. !!
9
9
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:7c49d3ff4e71589ab51755842b9d6849f5ed59b6ac1b6e40cb14393ab5904d13
10
+ !! source digest: sha256:7d4870bb65b6b0538648781e10978dc9f1529b6f3ce0779e375967ff15d9f44f
11
11
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
12
 
13
13
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -5,7 +5,7 @@
5
5
 
6
6
  {
7
7
  "name": "Move Stock Location",
8
- "version": "15.0.1.5.1",
8
+ "version": "15.0.1.5.2",
9
9
  "author": "Julius Network Solutions, "
10
10
  "BCIM,"
11
11
  "Camptocamp,"
@@ -8,10 +8,11 @@
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 {
@@ -366,7 +367,7 @@ ul.auto-toc {
366
367
  !! This file is generated by oca-gen-addon-readme !!
367
368
  !! changes will be overwritten. !!
368
369
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
369
- !! source digest: sha256:7c49d3ff4e71589ab51755842b9d6849f5ed59b6ac1b6e40cb14393ab5904d13
370
+ !! source digest: sha256:7d4870bb65b6b0538648781e10978dc9f1529b6f3ce0779e375967ff15d9f44f
370
371
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
371
372
  <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/stock-logistics-warehouse/tree/15.0/stock_move_location"><img alt="OCA/stock-logistics-warehouse" src="https://img.shields.io/badge/github-OCA%2Fstock--logistics--warehouse-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/stock-logistics-warehouse-15-0/stock-logistics-warehouse-15-0-stock_move_location"><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/stock-logistics-warehouse&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
373
  <p>This module allows to move entire location of products from one place to
@@ -469,7 +470,9 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
469
470
  <div class="section" id="maintainers">
470
471
  <h2><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h2>
471
472
  <p>This module is maintained by the OCA.</p>
472
- <a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
473
+ <a class="reference external image-reference" href="https://odoo-community.org">
474
+ <img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
475
+ </a>
473
476
  <p>OCA, or the Odoo Community Association, is a nonprofit organization whose
474
477
  mission is to support the collaborative development of Odoo features and
475
478
  promote its widespread use.</p>
@@ -266,6 +266,10 @@ class StockMoveLocationWizard(models.TransientModel):
266
266
  picking = self._create_picking()
267
267
  else:
268
268
  picking = self.picking_id
269
+ # Prevent putaway rules to be excuted when we don't need to
270
+ picking = picking.with_context(
271
+ avoid_putaway_rules=not self.apply_putaway_strategy
272
+ )
269
273
  self._create_moves(picking)
270
274
  if not self.env.context.get("planned"):
271
275
  moves_to_reassign = self._unreserve_moves()
@@ -1,18 +1,17 @@
1
1
  Metadata-Version: 2.1
2
- Name: odoo-addon-stock-move-location
3
- Version: 15.0.1.5.1
2
+ Name: odoo-addon-stock_move_location
3
+ Version: 15.0.1.5.2
4
4
  Summary: This module allows to move all stock in a stock location to an other one.
5
5
  Home-page: https://github.com/OCA/stock-logistics-warehouse
6
6
  Author: Julius Network Solutions, BCIM,Camptocamp,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
13
12
  Classifier: License :: OSI Approved :: GNU Affero General Public License v3
14
13
  Requires-Python: >=3.8
15
- Requires-Dist: odoo <15.1dev,>=15.0a
14
+ Requires-Dist: odoo<15.1dev,>=15.0a
16
15
 
17
16
  ===================
18
17
  Move Stock Location
@@ -23,7 +22,7 @@ Move Stock Location
23
22
  !! This file is generated by oca-gen-addon-readme !!
24
23
  !! changes will be overwritten. !!
25
24
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
26
- !! source digest: sha256:7c49d3ff4e71589ab51755842b9d6849f5ed59b6ac1b6e40cb14393ab5904d13
25
+ !! source digest: sha256:7d4870bb65b6b0538648781e10978dc9f1529b6f3ce0779e375967ff15d9f44f
27
26
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
28
27
 
29
28
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -152,5 +151,3 @@ promote its widespread use.
152
151
  This module is part of the `OCA/stock-logistics-warehouse <https://github.com/OCA/stock-logistics-warehouse/tree/15.0/stock_move_location>`_ project on GitHub.
153
152
 
154
153
  You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
155
-
156
-
@@ -1,6 +1,6 @@
1
- odoo/addons/stock_move_location/README.rst,sha256=BKzhm_4kwHdidPVrKtFVyBekYVYkqHtBK-zD_HAAr5o,5725
1
+ odoo/addons/stock_move_location/README.rst,sha256=sxETdpiucHHRuRm6vInkNwQeCX1q3-xt0lDeq0BkOPI,5725
2
2
  odoo/addons/stock_move_location/__init__.py,sha256=a529MU97ndMyMZsToYJmFXUHanvFmTyIZL9lmHsflPM,88
3
- odoo/addons/stock_move_location/__manifest__.py,sha256=nU8vxHgM-l_fXmCCZ4FLi1KsW3adkxxL81ftxrAnBMg,901
3
+ odoo/addons/stock_move_location/__manifest__.py,sha256=kyuEERFUirjaO4ixQRy2t23O6iqHDeYG5k0tyLsS-qw,901
4
4
  odoo/addons/stock_move_location/init_hook.py,sha256=iIIjLsKG3z1Esn7A_tiIQZ9jXPvVs6EIhtNICdv-FQA,419
5
5
  odoo/addons/stock_move_location/data/stock_quant_view.xml,sha256=g7KS13Q9jEIZTKiNHjWrFcggfYyfK2ZW2VONnCLSZaI,635
6
6
  odoo/addons/stock_move_location/i18n/de.po,sha256=Ax60atxl9wQXRn5D8N3pJScDGUCNwkbmjTSGVEmaMk4,11151
@@ -23,7 +23,7 @@ odoo/addons/stock_move_location/readme/ROADMAP.rst,sha256=3ISYpvtqVfZFuaIw26oMSr
23
23
  odoo/addons/stock_move_location/readme/USAGE.rst,sha256=pgj-r1O-Mq7GYKmCYem9IuKzKXPVntO5j1LUlbB37Hc,1654
24
24
  odoo/addons/stock_move_location/security/ir.model.access.csv,sha256=sLpkI9b3t8YdWBbYPjzlQrCbmv-_C0bUwzd10cMF14M,338
25
25
  odoo/addons/stock_move_location/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
26
- odoo/addons/stock_move_location/static/description/index.html,sha256=II49xSFtnrtKlwh-VBw-bN3R069NkKCJrb2UFOMliqg,16474
26
+ odoo/addons/stock_move_location/static/description/index.html,sha256=8Rblp1fSBwwsUFXPq8tmzdTluLSWZ65Z1yLqG-DPOaE,16557
27
27
  odoo/addons/stock_move_location/tests/__init__.py,sha256=gDGhCnhTYQONkRkGhPtOhgWTJ8sj6zs-sl2YRRvqGvQ,98
28
28
  odoo/addons/stock_move_location/tests/test_common.py,sha256=tVu5r4Y8E4vLF-BcoPwVX7nAIVKWwewkOF14oSYLYaM,6150
29
29
  odoo/addons/stock_move_location/tests/test_move_location.py,sha256=tsZi_kMtd3oKqLRqh06CHwwZZ5YVasCblqJJqnbRpAE,12101
@@ -31,10 +31,10 @@ odoo/addons/stock_move_location/tests/test_stock_fillwithstock.py,sha256=D-OzeNh
31
31
  odoo/addons/stock_move_location/views/stock_picking.xml,sha256=isH25PIq7A2rfCUzk9_HFYA8WIoGm5HNDu-N3CJazRQ,730
32
32
  odoo/addons/stock_move_location/views/stock_picking_type_views.xml,sha256=V8_fzqt7ga3O8U81JNbb8NOuT0JHsXwC2bG1jqJvmAk,1483
33
33
  odoo/addons/stock_move_location/wizard/__init__.py,sha256=0YXi68VJIkwZDO1-ZFirM2ANY3Mi7PEPdYW0Gg46lmY,239
34
- odoo/addons/stock_move_location/wizard/stock_move_location.py,sha256=kMswtLESO9UGC48U7JbNdHheFI-z-LCJtNs2K1Bu62k,14429
34
+ odoo/addons/stock_move_location/wizard/stock_move_location.py,sha256=jCyaPa9gLxs2d4ct8Jgr79AIQcmHhKlAY_z2OefZsWI,14611
35
35
  odoo/addons/stock_move_location/wizard/stock_move_location.xml,sha256=V0OTO0QRolPTesymqg78Q2UotTsYMrq4v_WtkhvV9mU,7646
36
36
  odoo/addons/stock_move_location/wizard/stock_move_location_line.py,sha256=0p9cZqGSF35vAdsaVTWuYp7O5ax-U9F5JoVI7hyxNzI,6375
37
- odoo_addon_stock_move_location-15.0.1.5.1.dist-info/METADATA,sha256=CK_vdFN6hHV-upPB3pQ7da3a42CDsPtyWinJ9mxX1bM,6355
38
- odoo_addon_stock_move_location-15.0.1.5.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
39
- odoo_addon_stock_move_location-15.0.1.5.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
40
- odoo_addon_stock_move_location-15.0.1.5.1.dist-info/RECORD,,
37
+ odoo_addon_stock_move_location-15.0.1.5.2.dist-info/METADATA,sha256=QEZ2jnshm115YUAGPtF56-0KBt_WG8lHOuA8uWEmUU4,6334
38
+ odoo_addon_stock_move_location-15.0.1.5.2.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
39
+ odoo_addon_stock_move_location-15.0.1.5.2.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
40
+ odoo_addon_stock_move_location-15.0.1.5.2.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