odoo-addon-delivery-multi-destination 15.0.1.0.2.3__py3-none-any.whl → 15.0.1.0.3__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.

Potentially problematic release.


This version of odoo-addon-delivery-multi-destination might be problematic. Click here for more details.

@@ -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
  Multiple destinations for the same delivery method
3
7
  ==================================================
@@ -7,13 +11,13 @@ Multiple destinations for the same delivery method
7
11
  !! This file is generated by oca-gen-addon-readme !!
8
12
  !! changes will be overwritten. !!
9
13
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:6f1b1508b11dbcadf0a7dfb825bd8a793befc35b85d9550b67b841cb2c89c3bf
14
+ !! source digest: sha256:b229cd6ede91cacd9c5cd5482fa2928d5146719ee5b4b21f41974fdd7017bbe0
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%2Fdelivery--carrier-lightgray.png?logo=github
@@ -5,7 +5,7 @@
5
5
 
6
6
  {
7
7
  "name": "Multiple destinations for the same delivery method",
8
- "version": "15.0.1.0.2",
8
+ "version": "15.0.1.0.3",
9
9
  "category": "Delivery",
10
10
  "website": "https://github.com/OCA/delivery-carrier",
11
11
  "author": "Tecnativa, Odoo Community Association (OCA)",
@@ -49,8 +49,9 @@ class DeliveryCarrier(models.Model):
49
49
  @api.model
50
50
  def name_search(self, name="", args=None, operator="ilike", limit=100):
51
51
  """Don't show by default children carriers."""
52
- domain = [("parent_id", "=", False)]
53
- return self.search(domain, limit=limit).name_get()
52
+ args = args or []
53
+ args += [("parent_id", "=", False)]
54
+ return super().name_search(name=name, args=args, operator=operator, limit=limit)
54
55
 
55
56
  def available_carriers(self, partner):
56
57
  """If the carrier is multi, we test the availability on children."""
@@ -1,18 +1,18 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
1
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
2
  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
3
  <head>
5
4
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
5
  <meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
7
- <title>Multiple destinations for the same delivery method</title>
6
+ <title>README.rst</title>
8
7
  <style type="text/css">
9
8
 
10
9
  /*
11
10
  :Author: David Goodger (goodger@python.org)
12
- :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 $
13
12
  :Copyright: This stylesheet has been placed in the public domain.
14
13
 
15
14
  Default cascading style sheet for the HTML output of Docutils.
15
+ Despite the name, some widely supported CSS2 features are used.
16
16
 
17
17
  See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
18
18
  customize this style sheet.
@@ -275,7 +275,7 @@ pre.literal-block, pre.doctest-block, pre.math, pre.code {
275
275
  margin-left: 2em ;
276
276
  margin-right: 2em }
277
277
 
278
- pre.code .ln { color: grey; } /* line numbers */
278
+ pre.code .ln { color: gray; } /* line numbers */
279
279
  pre.code, code { background-color: #eeeeee }
280
280
  pre.code .comment, code .comment { color: #5C6576 }
281
281
  pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
@@ -301,7 +301,7 @@ span.option {
301
301
  span.pre {
302
302
  white-space: pre }
303
303
 
304
- span.problematic {
304
+ span.problematic, pre.problematic {
305
305
  color: red }
306
306
 
307
307
  span.section-subtitle {
@@ -360,16 +360,21 @@ ul.auto-toc {
360
360
  </style>
361
361
  </head>
362
362
  <body>
363
- <div class="document" id="multiple-destinations-for-the-same-delivery-method">
364
- <h1 class="title">Multiple destinations for the same delivery method</h1>
363
+ <div class="document">
365
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="multiple-destinations-for-the-same-delivery-method">
370
+ <h1>Multiple destinations for the same delivery method</h1>
366
371
  <!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
367
372
  !! This file is generated by oca-gen-addon-readme !!
368
373
  !! changes will be overwritten. !!
369
374
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370
- !! source digest: sha256:6f1b1508b11dbcadf0a7dfb825bd8a793befc35b85d9550b67b841cb2c89c3bf
375
+ !! source digest: sha256:b229cd6ede91cacd9c5cd5482fa2928d5146719ee5b4b21f41974fdd7017bbe0
371
376
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
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/delivery-carrier/tree/15.0/delivery_multi_destination"><img alt="OCA/delivery-carrier" src="https://img.shields.io/badge/github-OCA%2Fdelivery--carrier-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/delivery-carrier-15-0/delivery-carrier-15-0-delivery_multi_destination"><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/delivery-carrier&amp;target_branch=15.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/delivery-carrier/tree/15.0/delivery_multi_destination"><img alt="OCA/delivery-carrier" src="https://img.shields.io/badge/github-OCA%2Fdelivery--carrier-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/delivery-carrier-15-0/delivery-carrier-15-0-delivery_multi_destination"><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/delivery-carrier&amp;target_branch=15.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
373
378
  <p>This module allows to set different price rules depending on the destination.</p>
374
379
  <p>This module restores the concept of delivery grid, reusing the same model for
375
380
  nesting several “children” delivery methods, one per possible destination.
@@ -391,7 +396,7 @@ without the need to create a glue module for having multiple destinations.</p>
391
396
  </ul>
392
397
  </div>
393
398
  <div class="section" id="configuration">
394
- <h1><a class="toc-backref" href="#toc-entry-1">Configuration</a></h1>
399
+ <h2><a class="toc-backref" href="#toc-entry-1">Configuration</a></h2>
395
400
  <p>To configure delivery methods with multiple destinations:</p>
396
401
  <ol class="arabic simple">
397
402
  <li>Go to Inventory &gt; Configuration &gt; Delivery &gt; Shipping Methods</li>
@@ -403,21 +408,21 @@ destinations.</li>
403
408
  </ol>
404
409
  </div>
405
410
  <div class="section" id="usage">
406
- <h1><a class="toc-backref" href="#toc-entry-2">Usage</a></h1>
411
+ <h2><a class="toc-backref" href="#toc-entry-2">Usage</a></h2>
407
412
  <ol class="arabic simple">
408
413
  <li>When using the delivery method in a Sales order, delivery address will be
409
414
  used for computing the delivery price according introduced destinations.</li>
410
415
  </ol>
411
416
  </div>
412
417
  <div class="section" id="known-issues-roadmap">
413
- <h1><a class="toc-backref" href="#toc-entry-3">Known issues / Roadmap</a></h1>
418
+ <h2><a class="toc-backref" href="#toc-entry-3">Known issues / Roadmap</a></h2>
414
419
  <ul class="simple">
415
420
  <li>Delivery prices for e-commerce (<cite>website_sale_delivery</cite> module) might need
416
421
  an extra module for handling everything properly.</li>
417
422
  </ul>
418
423
  </div>
419
424
  <div class="section" id="bug-tracker">
420
- <h1><a class="toc-backref" href="#toc-entry-4">Bug Tracker</a></h1>
425
+ <h2><a class="toc-backref" href="#toc-entry-4">Bug Tracker</a></h2>
421
426
  <p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/delivery-carrier/issues">GitHub Issues</a>.
422
427
  In case of trouble, please check there if your issue has already been reported.
423
428
  If you spotted it first, help us to smash it by providing a detailed and welcomed
@@ -425,15 +430,15 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
425
430
  <p>Do not contact contributors directly about support or help with technical issues.</p>
426
431
  </div>
427
432
  <div class="section" id="credits">
428
- <h1><a class="toc-backref" href="#toc-entry-5">Credits</a></h1>
433
+ <h2><a class="toc-backref" href="#toc-entry-5">Credits</a></h2>
429
434
  <div class="section" id="authors">
430
- <h2><a class="toc-backref" href="#toc-entry-6">Authors</a></h2>
435
+ <h3><a class="toc-backref" href="#toc-entry-6">Authors</a></h3>
431
436
  <ul class="simple">
432
437
  <li>Tecnativa</li>
433
438
  </ul>
434
439
  </div>
435
440
  <div class="section" id="contributors">
436
- <h2><a class="toc-backref" href="#toc-entry-7">Contributors</a></h2>
441
+ <h3><a class="toc-backref" href="#toc-entry-7">Contributors</a></h3>
437
442
  <ul class="simple">
438
443
  <li><cite>Tecnativa &lt;https://www.tecnativa.com&gt;__</cite>:<ul>
439
444
  <li>Pedro M. Baeza</li>
@@ -448,9 +453,11 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
448
453
  </ul>
449
454
  </div>
450
455
  <div class="section" id="maintainers">
451
- <h2><a class="toc-backref" href="#toc-entry-8">Maintainers</a></h2>
456
+ <h3><a class="toc-backref" href="#toc-entry-8">Maintainers</a></h3>
452
457
  <p>This module is maintained by the OCA.</p>
453
- <a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
458
+ <a class="reference external image-reference" href="https://odoo-community.org">
459
+ <img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
460
+ </a>
454
461
  <p>OCA, or the Odoo Community Association, is a nonprofit organization whose
455
462
  mission is to support the collaborative development of Odoo features and
456
463
  promote its widespread use.</p>
@@ -459,5 +466,6 @@ promote its widespread use.</p>
459
466
  </div>
460
467
  </div>
461
468
  </div>
469
+ </div>
462
470
  </body>
463
471
  </html>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-delivery_multi_destination
3
- Version: 15.0.1.0.2.3
3
+ Version: 15.0.1.0.3
4
4
  Summary: Multiple destinations for the same delivery method
5
5
  Home-page: https://github.com/OCA/delivery-carrier
6
6
  Author: Tecnativa, Odoo Community Association (OCA)
@@ -11,7 +11,11 @@ Classifier: Framework :: Odoo
11
11
  Classifier: Framework :: Odoo :: 15.0
12
12
  Classifier: License :: OSI Approved :: GNU Affero General Public License v3
13
13
  Requires-Python: >=3.8
14
- Requires-Dist: odoo <15.1dev,>=15.0a
14
+ Requires-Dist: odoo<15.1dev,>=15.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
15
19
 
16
20
  ==================================================
17
21
  Multiple destinations for the same delivery method
@@ -22,13 +26,13 @@ Multiple destinations for the same delivery method
22
26
  !! This file is generated by oca-gen-addon-readme !!
23
27
  !! changes will be overwritten. !!
24
28
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
25
- !! source digest: sha256:6f1b1508b11dbcadf0a7dfb825bd8a793befc35b85d9550b67b841cb2c89c3bf
29
+ !! source digest: sha256:b229cd6ede91cacd9c5cd5482fa2928d5146719ee5b4b21f41974fdd7017bbe0
26
30
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
27
31
 
28
32
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
29
33
  :target: https://odoo-community.org/page/development-status
30
34
  :alt: Beta
31
- .. |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
32
36
  :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
33
37
  :alt: License: AGPL-3
34
38
  .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fdelivery--carrier-lightgray.png?logo=github
@@ -1,6 +1,6 @@
1
- odoo/addons/delivery_multi_destination/README.rst,sha256=gZ_UtsUze3iL7sdcNlWI3Q2pAHbYnoEfsH_LtgrGHQ4,4230
1
+ odoo/addons/delivery_multi_destination/README.rst,sha256=2I0i9eXHKddCy24hFrUk8-iseX6ysoV2AQnuZrCpUnk,4395
2
2
  odoo/addons/delivery_multi_destination/__init__.py,sha256=eShEGRadAlxopoLqIQ4-N42FM7MWPSuBe0h_l1cXTPM,87
3
- odoo/addons/delivery_multi_destination/__manifest__.py,sha256=_YPttKso3Q2KuR3y-Qk1eNWf-KZT0LohbnI-ZcA5t28,646
3
+ odoo/addons/delivery_multi_destination/__manifest__.py,sha256=Fk7sJEy46NFKHOEcbL8r2vz-rPy4rFyK2LZk-uN8amI,646
4
4
  odoo/addons/delivery_multi_destination/demo/delivery_carrier_demo.xml,sha256=8B4KyxiIkHNsfKVjP5GmInxWHacxOpv4UnhUSI1rg18,3753
5
5
  odoo/addons/delivery_multi_destination/i18n/cs_CZ.po,sha256=Gy90AL5-iA9bSzCVk_x83-uC14HTtNy-6cet7lVxOJc,5186
6
6
  odoo/addons/delivery_multi_destination/i18n/de.po,sha256=NRjaUfMgijzi1FhjNZEnuojjd_X4e7uO74SNnX13gxo,5338
@@ -14,18 +14,18 @@ odoo/addons/delivery_multi_destination/i18n/pt_BR.po,sha256=RDj42GxX0bTT9G09RAcN
14
14
  odoo/addons/delivery_multi_destination/i18n/sl.po,sha256=_3ENaKvSpzNj9YgTcewlKXj3AI9e6Hhc2_iGU6lZO9A,5006
15
15
  odoo/addons/delivery_multi_destination/i18n/zh_CN.po,sha256=H-BZaqv1GF2iSJJ-TIhB2dLKGztd3w05XJwvPNSRYpI,5042
16
16
  odoo/addons/delivery_multi_destination/models/__init__.py,sha256=-K4wh1XVA03SZzTTycr_kcgawLtJanP54sq4kwHL5eA,97
17
- odoo/addons/delivery_multi_destination/models/delivery_carrier.py,sha256=Y4R1nplPOyjCKBxzQJPY3_lCRgGH4ysKSIJhUa3bq8o,5097
17
+ odoo/addons/delivery_multi_destination/models/delivery_carrier.py,sha256=qqzYBc9UdP6gJOK7VS558tU_B1IPQOWVbZnT5jyOsnk,5152
18
18
  odoo/addons/delivery_multi_destination/readme/CONFIGURE.rst,sha256=7ODOGLMD-pk4sqqbXT2EEvsJ-rafrnQz4Xwe3WeD9Xk,386
19
19
  odoo/addons/delivery_multi_destination/readme/CONTRIBUTORS.rst,sha256=xn49GML1WnTpw8B7l_7JnwEaHAkBb1lKzGbq-tz4y0g,186
20
20
  odoo/addons/delivery_multi_destination/readme/DESCRIPTION.rst,sha256=zGE7V1m8-nd6FcVva5rSgmnD1i8gOQoIP_4aMeHKEGE,383
21
21
  odoo/addons/delivery_multi_destination/readme/ROADMAP.rst,sha256=mFUYDdJtYvVAOcxbnU3uIEAb5pCfyvKC-FoOFbx_9ko,129
22
22
  odoo/addons/delivery_multi_destination/readme/USAGE.rst,sha256=1L4dwqAZ4L8oNQMO90fp64D4_IVf1AEpBGpun6HNFDo,153
23
23
  odoo/addons/delivery_multi_destination/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
24
- odoo/addons/delivery_multi_destination/static/description/index.html,sha256=8iqGrB7-ZEeVkHCi8xGLok-p3dZvDhW8rkEO2uW3lOw,14218
24
+ odoo/addons/delivery_multi_destination/static/description/index.html,sha256=cGup6iai0QL96qQa2lYDdLH_l3z3HeTCmmGMMhOa8Uc,14449
25
25
  odoo/addons/delivery_multi_destination/tests/__init__.py,sha256=84QCPauC2-TkXZsq1euuy3oNLYJpiocgsAVkUqpUsLI,112
26
26
  odoo/addons/delivery_multi_destination/tests/test_delivery_multi_destination.py,sha256=YrDNTmQfT3XDyh1prJT8bvdT152BwvZjy_-zuswwn4Q,7294
27
27
  odoo/addons/delivery_multi_destination/views/delivery_carrier_view.xml,sha256=Siw-zvIILJk30kjkBUDsMOx6_jz_i2GfnckbwrActXs,4339
28
- odoo_addon_delivery_multi_destination-15.0.1.0.2.3.dist-info/METADATA,sha256=I0-lDZjBxlZrcHZet74F0oqvWBoJohSsHbK6g5lK2Ig,4786
29
- odoo_addon_delivery_multi_destination-15.0.1.0.2.3.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
30
- odoo_addon_delivery_multi_destination-15.0.1.0.2.3.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
31
- odoo_addon_delivery_multi_destination-15.0.1.0.2.3.dist-info/RECORD,,
28
+ odoo_addon_delivery_multi_destination-15.0.1.0.3.dist-info/METADATA,sha256=PE43mMvhuzCQN-xgMQ1K_WM-9dkxWOL6Mbmv3S_HkZ4,4948
29
+ odoo_addon_delivery_multi_destination-15.0.1.0.3.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
30
+ odoo_addon_delivery_multi_destination-15.0.1.0.3.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
31
+ odoo_addon_delivery_multi_destination-15.0.1.0.3.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