odoo-addon-sale-order-line-sequence 16.0.2.0.0.4__py3-none-any.whl → 17.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.

Potentially problematic release.


This version of odoo-addon-sale-order-line-sequence might be problematic. Click here for more details.

@@ -7,7 +7,7 @@ Sale Order Line Sequence
7
7
  !! This file is generated by oca-gen-addon-readme !!
8
8
  !! changes will be overwritten. !!
9
9
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:5dcff2d70257be5a1e4133cbc51922e7b793efed6703f6a3a34bedab24d163f3
10
+ !! source digest: sha256:28c2b71b2bead701a630215f957970e26891eaaea3e224fac54efb5654ead807
11
11
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
12
 
13
13
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -17,13 +17,13 @@ Sale Order Line Sequence
17
17
  :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
18
18
  :alt: License: AGPL-3
19
19
  .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fsale--workflow-lightgray.png?logo=github
20
- :target: https://github.com/OCA/sale-workflow/tree/16.0/sale_order_line_sequence
20
+ :target: https://github.com/OCA/sale-workflow/tree/17.0/sale_order_line_sequence
21
21
  :alt: OCA/sale-workflow
22
22
  .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23
- :target: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_line_sequence
23
+ :target: https://translation.odoo-community.org/projects/sale-workflow-17-0/sale-workflow-17-0-sale_order_line_sequence
24
24
  :alt: Translate me on Weblate
25
25
  .. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
26
- :target: https://runboat.odoo-community.org/builds?repo=OCA/sale-workflow&target_branch=16.0
26
+ :target: https://runboat.odoo-community.org/builds?repo=OCA/sale-workflow&target_branch=17.0
27
27
  :alt: Try me on Runboat
28
28
 
29
29
  |badge1| |badge2| |badge3| |badge4| |badge5|
@@ -42,7 +42,7 @@ Bug Tracker
42
42
  Bugs are tracked on `GitHub Issues <https://github.com/OCA/sale-workflow/issues>`_.
43
43
  In case of trouble, please check there if your issue has already been reported.
44
44
  If you spotted it first, help us to smash it by providing a detailed and welcomed
45
- `feedback <https://github.com/OCA/sale-workflow/issues/new?body=module:%20sale_order_line_sequence%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
45
+ `feedback <https://github.com/OCA/sale-workflow/issues/new?body=module:%20sale_order_line_sequence%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
46
46
 
47
47
  Do not contact contributors directly about support or help with technical issues.
48
48
 
@@ -83,6 +83,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
83
83
  mission is to support the collaborative development of Odoo features and
84
84
  promote its widespread use.
85
85
 
86
- This module is part of the `OCA/sale-workflow <https://github.com/OCA/sale-workflow/tree/16.0/sale_order_line_sequence>`_ project on GitHub.
86
+ This module is part of the `OCA/sale-workflow <https://github.com/OCA/sale-workflow/tree/17.0/sale_order_line_sequence>`_ project on GitHub.
87
87
 
88
88
  You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
@@ -5,7 +5,7 @@
5
5
  {
6
6
  "name": "Sale Order Line Sequence",
7
7
  "summary": "Propagates SO line sequence to invoices and stock picking.",
8
- "version": "16.0.2.0.0",
8
+ "version": "17.0.1.0.0",
9
9
  "author": "ForgeFlow, Serpent CS, Odoo Community Association (OCA)",
10
10
  "category": "Sales",
11
11
  "website": "https://github.com/OCA/sale-workflow",
@@ -4,7 +4,7 @@
4
4
  #
5
5
  msgid ""
6
6
  msgstr ""
7
- "Project-Id-Version: Odoo Server 16.0\n"
7
+ "Project-Id-Version: Odoo Server 17.0\n"
8
8
  "Report-Msgid-Bugs-To: \n"
9
9
  "Last-Translator: \n"
10
10
  "Language-Team: \n"
@@ -25,7 +25,9 @@ class SaleOrderLine(models.Model):
25
25
  def _compute_visible_sequence(self):
26
26
  for so in self.mapped("order_id"):
27
27
  sequence = 1
28
- order_lines = so.order_line.filtered(lambda l: not l.display_type)
29
- for line in sorted(order_lines, key=lambda l: l.sequence):
28
+ order_lines = so.order_line.filtered(
29
+ lambda order_line: not order_line.display_type
30
+ )
31
+ for line in sorted(order_lines, key=lambda order_line: order_line.sequence):
30
32
  line.visible_sequence = sequence
31
33
  sequence += 1
@@ -1,4 +1,3 @@
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>
@@ -367,9 +366,9 @@ ul.auto-toc {
367
366
  !! This file is generated by oca-gen-addon-readme !!
368
367
  !! changes will be overwritten. !!
369
368
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370
- !! source digest: sha256:5dcff2d70257be5a1e4133cbc51922e7b793efed6703f6a3a34bedab24d163f3
369
+ !! source digest: sha256:28c2b71b2bead701a630215f957970e26891eaaea3e224fac54efb5654ead807
371
370
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
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/sale-workflow/tree/16.0/sale_order_line_sequence"><img alt="OCA/sale-workflow" src="https://img.shields.io/badge/github-OCA%2Fsale--workflow-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_line_sequence"><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/sale-workflow&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
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/sale-workflow/tree/17.0/sale_order_line_sequence"><img alt="OCA/sale-workflow" src="https://img.shields.io/badge/github-OCA%2Fsale--workflow-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/sale-workflow-17-0/sale-workflow-17-0-sale_order_line_sequence"><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/sale-workflow&amp;target_branch=17.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
373
372
  <p>Displays the sequence of Sale order line and helps to maintain the order.
374
373
  The line sequence number is also displayed in sale order reports.</p>
375
374
  <p><strong>Table of contents</strong></p>
@@ -393,7 +392,7 @@ The line sequence number is also displayed in sale order reports.</p>
393
392
  <p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/sale-workflow/issues">GitHub Issues</a>.
394
393
  In case of trouble, please check there if your issue has already been reported.
395
394
  If you spotted it first, help us to smash it by providing a detailed and welcomed
396
- <a class="reference external" href="https://github.com/OCA/sale-workflow/issues/new?body=module:%20sale_order_line_sequence%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
395
+ <a class="reference external" href="https://github.com/OCA/sale-workflow/issues/new?body=module:%20sale_order_line_sequence%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
397
396
  <p>Do not contact contributors directly about support or help with technical issues.</p>
398
397
  </div>
399
398
  <div class="section" id="credits">
@@ -429,7 +428,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
429
428
  <p>OCA, or the Odoo Community Association, is a nonprofit organization whose
430
429
  mission is to support the collaborative development of Odoo features and
431
430
  promote its widespread use.</p>
432
- <p>This module is part of the <a class="reference external" href="https://github.com/OCA/sale-workflow/tree/16.0/sale_order_line_sequence">OCA/sale-workflow</a> project on GitHub.</p>
431
+ <p>This module is part of the <a class="reference external" href="https://github.com/OCA/sale-workflow/tree/17.0/sale_order_line_sequence">OCA/sale-workflow</a> project on GitHub.</p>
433
432
  <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>
434
433
  </div>
435
434
  </div>
@@ -9,7 +9,7 @@ from odoo.tests.common import TransactionCase
9
9
  class TestSaleOrderLineSequence(TransactionCase):
10
10
  @classmethod
11
11
  def setUpClass(cls):
12
- super(TestSaleOrderLineSequence, cls).setUpClass()
12
+ super().setUpClass()
13
13
  cls.sale_order = cls.env["sale.order"]
14
14
  cls.sale_order_line = cls.env["sale.order.line"]
15
15
  cls.account_move = cls.env["account.move"]
@@ -1,18 +1,17 @@
1
1
  Metadata-Version: 2.1
2
- Name: odoo-addon-sale-order-line-sequence
3
- Version: 16.0.2.0.0.4
2
+ Name: odoo-addon-sale_order_line_sequence
3
+ Version: 17.0.1.0.0.2
4
+ Requires-Python: >=3.10
5
+ Requires-Dist: odoo>=17.0a,<17.1dev
4
6
  Summary: Propagates SO line sequence to invoices and stock picking.
5
7
  Home-page: https://github.com/OCA/sale-workflow
8
+ License: AGPL-3
6
9
  Author: ForgeFlow, Serpent CS, Odoo Community Association (OCA)
7
10
  Author-email: support@odoo-community.org
8
- License: AGPL-3
9
- Platform: UNKNOWN
10
11
  Classifier: Programming Language :: Python
11
12
  Classifier: Framework :: Odoo
12
- Classifier: Framework :: Odoo :: 16.0
13
+ Classifier: Framework :: Odoo :: 17.0
13
14
  Classifier: License :: OSI Approved :: GNU Affero General Public License v3
14
- Requires-Python: >=3.10
15
- Requires-Dist: odoo <16.1dev,>=16.0a
16
15
 
17
16
  ========================
18
17
  Sale Order Line Sequence
@@ -23,7 +22,7 @@ Sale Order Line Sequence
23
22
  !! This file is generated by oca-gen-addon-readme !!
24
23
  !! changes will be overwritten. !!
25
24
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
26
- !! source digest: sha256:5dcff2d70257be5a1e4133cbc51922e7b793efed6703f6a3a34bedab24d163f3
25
+ !! source digest: sha256:28c2b71b2bead701a630215f957970e26891eaaea3e224fac54efb5654ead807
27
26
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
28
27
 
29
28
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -33,13 +32,13 @@ Sale Order Line Sequence
33
32
  :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
34
33
  :alt: License: AGPL-3
35
34
  .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fsale--workflow-lightgray.png?logo=github
36
- :target: https://github.com/OCA/sale-workflow/tree/16.0/sale_order_line_sequence
35
+ :target: https://github.com/OCA/sale-workflow/tree/17.0/sale_order_line_sequence
37
36
  :alt: OCA/sale-workflow
38
37
  .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
39
- :target: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_line_sequence
38
+ :target: https://translation.odoo-community.org/projects/sale-workflow-17-0/sale-workflow-17-0-sale_order_line_sequence
40
39
  :alt: Translate me on Weblate
41
40
  .. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
42
- :target: https://runboat.odoo-community.org/builds?repo=OCA/sale-workflow&target_branch=16.0
41
+ :target: https://runboat.odoo-community.org/builds?repo=OCA/sale-workflow&target_branch=17.0
43
42
  :alt: Try me on Runboat
44
43
 
45
44
  |badge1| |badge2| |badge3| |badge4| |badge5|
@@ -58,7 +57,7 @@ Bug Tracker
58
57
  Bugs are tracked on `GitHub Issues <https://github.com/OCA/sale-workflow/issues>`_.
59
58
  In case of trouble, please check there if your issue has already been reported.
60
59
  If you spotted it first, help us to smash it by providing a detailed and welcomed
61
- `feedback <https://github.com/OCA/sale-workflow/issues/new?body=module:%20sale_order_line_sequence%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
60
+ `feedback <https://github.com/OCA/sale-workflow/issues/new?body=module:%20sale_order_line_sequence%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
62
61
 
63
62
  Do not contact contributors directly about support or help with technical issues.
64
63
 
@@ -99,8 +98,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
99
98
  mission is to support the collaborative development of Odoo features and
100
99
  promote its widespread use.
101
100
 
102
- This module is part of the `OCA/sale-workflow <https://github.com/OCA/sale-workflow/tree/16.0/sale_order_line_sequence>`_ project on GitHub.
101
+ This module is part of the `OCA/sale-workflow <https://github.com/OCA/sale-workflow/tree/17.0/sale_order_line_sequence>`_ project on GitHub.
103
102
 
104
103
  You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
105
-
106
-
@@ -1,6 +1,6 @@
1
- odoo/addons/sale_order_line_sequence/README.rst,sha256=PYhlhcz7PnS404MYdDmb4rxzm-8U8eE-Wy7fxn4S64U,3278
1
+ odoo/addons/sale_order_line_sequence/README.rst,sha256=wqbOZN49xEThzZA58Ia3Zv2kjCjqrnFROnuKPMx92bk,3278
2
2
  odoo/addons/sale_order_line_sequence/__init__.py,sha256=QXl_U5mKDJfzIWJDZpUzH9Rf4Zda8Ko8Q1Df6Lc0MF8,92
3
- odoo/addons/sale_order_line_sequence/__manifest__.py,sha256=uVuZYx3ay1d6TrkKnDIVotNCyKSqXCqekA3NALKaZUk,701
3
+ odoo/addons/sale_order_line_sequence/__manifest__.py,sha256=EoCXj7hcs1ZmqJYp6AI8spkp27zxpoq5z6VnRCFmG_E,701
4
4
  odoo/addons/sale_order_line_sequence/i18n/ca.po,sha256=7yEPiuaRACguMgRTB9zrBBEuAvd_9JTWvcH_djNy8x0,2571
5
5
  odoo/addons/sale_order_line_sequence/i18n/de.po,sha256=se9wS16jFQtVw4xyriAQXENfIso0xR9qvKT1Adw-3sw,2893
6
6
  odoo/addons/sale_order_line_sequence/i18n/el_GR.po,sha256=RPU95vKiARmDdOE7N0En_9dRDUrGwzdag1aFpL9jJ7I,2570
@@ -18,7 +18,7 @@ odoo/addons/sale_order_line_sequence/i18n/nl_NL.po,sha256=hM6qAsUDBqNsRy3Zk9Jzf9
18
18
  odoo/addons/sale_order_line_sequence/i18n/pt.po,sha256=w3hFLbp4NZCR7Ny7F_2hJvwNpe9i6s9nXbm10-SX6Ok,2900
19
19
  odoo/addons/sale_order_line_sequence/i18n/pt_BR.po,sha256=0-96pTLj3s1vAVudIJNxDbF4jCUnWqdVzi4sbHYPPg8,2841
20
20
  odoo/addons/sale_order_line_sequence/i18n/ro.po,sha256=2ILiS8tMKBgFiNuEhce1ZjZj39rIIbYMV1klsx2vmxg,2612
21
- odoo/addons/sale_order_line_sequence/i18n/sale_order_line_sequence.pot,sha256=rgtgDxGztjrR24mPujvEVmL_WUF6fiVwx6OpJodbbEE,2180
21
+ odoo/addons/sale_order_line_sequence/i18n/sale_order_line_sequence.pot,sha256=-Rhutvdh6FBiXaN-GBuN0GulFZIEzlg3Z7wn5Av51QA,2180
22
22
  odoo/addons/sale_order_line_sequence/i18n/sk.po,sha256=-mmaDxD9SvUdSV7D9qN1H8wt6fufMROlQESMcCYl78g,2572
23
23
  odoo/addons/sale_order_line_sequence/i18n/sl.po,sha256=x9nT40WWyHGDW8XxUCtapJrBDHGbUR39AJAEDYIiNdU,2633
24
24
  odoo/addons/sale_order_line_sequence/i18n/tr.po,sha256=Ze_jisIcHFLk9xQradgPEpD-pEVxdQ4vkpmuHigaaRg,2563
@@ -28,19 +28,19 @@ odoo/addons/sale_order_line_sequence/i18n/zh_CN.po,sha256=3E8-BzYIv-c9kFqeGrfiAi
28
28
  odoo/addons/sale_order_line_sequence/models/__init__.py,sha256=VRPd35ij54tshK-q0rTvzxebdiyow6L25QcghlF1TKQ,158
29
29
  odoo/addons/sale_order_line_sequence/models/account_move_line.py,sha256=o2NdsXBlHVnpSsXkLd3FM82i0T3WNI-N-WoT78NTCxE,820
30
30
  odoo/addons/sale_order_line_sequence/models/sale_order.py,sha256=B8VS4-qU1gPXjjoKBBgC7KwpwXXFLKYQNrN6EFdtSog,914
31
- odoo/addons/sale_order_line_sequence/models/sale_order_line.py,sha256=kq3wGXiVaRYydtEzes3gEQtpQBomYVsG48mjQLVIcpk,1048
31
+ odoo/addons/sale_order_line_sequence/models/sale_order_line.py,sha256=MsAZT5SXS6QSyHGQ4ZAPb3e5sel0JA4hd12di5XoNhU,1114
32
32
  odoo/addons/sale_order_line_sequence/readme/CONTRIBUTORS.rst,sha256=4XoJJwCrfktuJDG8CWmr8FU1FB5ZfUZumuVHHhdnOaM,158
33
33
  odoo/addons/sale_order_line_sequence/readme/CREDITS.rst,sha256=jMwRaerf5d-Tt1o4OJyzZVhHmYPGzeQI2M9OliI5bn8,152
34
34
  odoo/addons/sale_order_line_sequence/readme/DESCRIPTION.rst,sha256=-JBPSfPiYUEDM7SHNAjRz_TkGDiRk6WzqWHRfGL0Yt8,140
35
35
  odoo/addons/sale_order_line_sequence/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
36
- odoo/addons/sale_order_line_sequence/static/description/index.html,sha256=4GPN15CywIrT7vnHhrb3Jta1zSgl6qXA9U_dMuNEVh0,13172
36
+ odoo/addons/sale_order_line_sequence/static/description/index.html,sha256=fwVdc9tvYbABc5mpH4U2qrZqJ2KuKXIVV6pY1zhJqPs,13133
37
37
  odoo/addons/sale_order_line_sequence/tests/__init__.py,sha256=nrrUFWs1sNdScz5WKYeeT3b75RGu9EYowrBNnl9z1X0,44
38
- odoo/addons/sale_order_line_sequence/tests/test_sale_order_line_sequence.py,sha256=K5Y-XBfPRpGLodM9sopmP8E72aC1PXQEaLnJRH22VpY,3592
38
+ odoo/addons/sale_order_line_sequence/tests/test_sale_order_line_sequence.py,sha256=TgZRTqCMlYBMMqpZVDQpl7nNoHgTjUSttwUakBolerc,3562
39
39
  odoo/addons/sale_order_line_sequence/views/account_move_view.xml,sha256=uHmBrVCJ631vtGAzsM_q0PWZG6tpkGYnjCK48F8mM0o,698
40
40
  odoo/addons/sale_order_line_sequence/views/report_invoice.xml,sha256=PQf7Lo9jAQCVRlE658Zs_s6QO8lyPBJiI_R6yvPzrNg,948
41
41
  odoo/addons/sale_order_line_sequence/views/report_saleorder.xml,sha256=JVvnNxK871yr0fbD-CwRIu4863wVsC1_CFRkByP2yRY,663
42
42
  odoo/addons/sale_order_line_sequence/views/sale_view.xml,sha256=ZB_hybarQxn5ctk-j1EtWFaf3LWGLaltPGh_41Cw7a0,913
43
- odoo_addon_sale_order_line_sequence-16.0.2.0.0.4.dist-info/METADATA,sha256=RgaAfr6pO8tVpQQ2OpvNly7GZ3bezvaNyW1XsajsJpw,3870
44
- odoo_addon_sale_order_line_sequence-16.0.2.0.0.4.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
45
- odoo_addon_sale_order_line_sequence-16.0.2.0.0.4.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
46
- odoo_addon_sale_order_line_sequence-16.0.2.0.0.4.dist-info/RECORD,,
43
+ odoo_addon_sale_order_line_sequence-17.0.1.0.0.2.dist-info/METADATA,sha256=D1xNgZX4jQj-Y2AVHQv9tmpdNJ1z_fJh8NIshEORec8,3849
44
+ odoo_addon_sale_order_line_sequence-17.0.1.0.0.2.dist-info/WHEEL,sha256=8Rd4enx1PCuyDWP4SABqO5Fv8rpaknqp3VzjoFFLa6c,83
45
+ odoo_addon_sale_order_line_sequence-17.0.1.0.0.2.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
46
+ odoo_addon_sale_order_line_sequence-17.0.1.0.0.2.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: Whool 1.0.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5