odoo-addon-sale-commission-product-criteria-domain 16.0.1.0.1__py3-none-any.whl → 16.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.
@@ -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
  Sale Commission Product Criteria Domain
3
7
  =======================================
@@ -7,13 +11,13 @@ Sale Commission Product Criteria Domain
7
11
  !! This file is generated by oca-gen-addon-readme !!
8
12
  !! changes will be overwritten. !!
9
13
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:68f05649f2fa798589de5a6b032c3bcaf1e5df63e549aee0c672e27fac4ee3a5
14
+ !! source digest: sha256:b543f76e2e9567d9e3b545debdd7a56bb90e3e07bded4ac0ba24189993a2bd70
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%2Fcommission-lightgray.png?logo=github
@@ -3,7 +3,7 @@
3
3
  # License AGPL-3 - See https://www.gnu.org/licenses/agpl-3.0.html
4
4
  {
5
5
  "name": "Sale Commission Product Criteria Domain",
6
- "version": "16.0.1.0.1",
6
+ "version": "16.0.1.0.3",
7
7
  "author": "Ilyas," "Ooops404," "Odoo Community Association (OCA)",
8
8
  "contributors": ["Ilyas"],
9
9
  "maintainers": ["ilyasProgrammer"],
@@ -64,6 +64,14 @@ class ResPartner(models.Model):
64
64
  {"commission_item_agent_ids": [(0, 0, line) for line in to_create]}
65
65
  )
66
66
 
67
+ @api.onchange("commission_id")
68
+ def _onchange_commission_id(self):
69
+ self.update(
70
+ {
71
+ "allowed_commission_group_ids": [(5, 0, 0)],
72
+ }
73
+ )
74
+
67
75
  def write(self, vals):
68
76
  res = super().write(vals)
69
77
  for partner in self:
@@ -8,59 +8,62 @@ class SaleCommissionLineMixin(models.AbstractModel):
8
8
  _inherit = "commission.line.mixin"
9
9
 
10
10
  def _get_commission_items(self, commission, product):
11
- # Method replaced
12
- categ_ids = {}
13
- categ = product.categ_id
14
- while categ:
15
- categ_ids[categ.id] = True
16
- categ = categ.parent_id
17
- categ_ids = list(categ_ids)
18
-
19
- # Module specific mod:
20
- if self.object_id._name == "sale.order.line":
21
- partner = self.object_id.order_id.partner_id
22
- elif self.object_id._name == "account.move.line":
23
- partner = self.object_id.partner_id
11
+ res = []
12
+ if commission.commission_type != "product_restricted":
13
+ res = super()._get_commission_items(commission, product)
24
14
  else:
25
- partner = False
26
- if partner:
27
- group_ids = (
28
- partner.commission_item_agent_ids.filtered(
29
- lambda x: x.agent_id == self.agent_id
15
+ categ_ids = {}
16
+ categ = product.categ_id
17
+ while categ:
18
+ categ_ids[categ.id] = True
19
+ categ = categ.parent_id
20
+ categ_ids = list(categ_ids)
21
+
22
+ # Module specific mod:
23
+ if self.object_id._name == "sale.order.line":
24
+ partner = self.object_id.order_id.partner_id
25
+ elif self.object_id._name == "account.move.line":
26
+ partner = self.object_id.partner_id
27
+ else:
28
+ partner = False
29
+ if partner:
30
+ group_ids = (
31
+ partner.commission_item_agent_ids.filtered(
32
+ lambda x: x.agent_id == self.agent_id
33
+ )
34
+ .mapped("group_ids")
35
+ .ids
30
36
  )
31
- .mapped("group_ids")
32
- .ids
33
- )
34
- else:
35
- group_ids = []
37
+ else:
38
+ group_ids = []
36
39
 
37
- # Select all suitable items. Order by best match
38
- # (priority is: all/cat/subcat/product/variant).
39
- self.env.cr.execute(
40
- """
41
- SELECT
42
- item.id
43
- FROM
44
- commission_item AS item
45
- LEFT JOIN product_category AS categ ON item.categ_id = categ.id
46
- LEFT JOIN commission_item_agent AS cia ON item.group_id = cia.id
47
- WHERE
48
- (item.product_tmpl_id IS NULL OR item.product_tmpl_id = any(%s))
49
- AND (item.product_id IS NULL OR item.product_id = any(%s))
50
- AND (item.categ_id IS NULL OR item.categ_id = any(%s))
51
- AND (item.commission_id = %s)
52
- AND (item.active = TRUE)
53
- AND (cia.id IS NULL OR cia.id = any(%s))
54
- ORDER BY
55
- item.applied_on, item.based_on, categ.complete_name desc
56
- """,
57
- (
58
- product.product_tmpl_id.ids,
59
- product.ids,
60
- categ_ids,
61
- commission._origin.id,
62
- group_ids,
63
- ),
64
- )
65
- item_ids = [x[0] for x in self.env.cr.fetchall()]
66
- return item_ids
40
+ # Select all suitable items. Order by best match
41
+ # (priority is: all/cat/subcat/product/variant).
42
+ self.env.cr.execute(
43
+ """
44
+ SELECT
45
+ item.id
46
+ FROM
47
+ commission_item AS item
48
+ LEFT JOIN product_category AS categ ON item.categ_id = categ.id
49
+ LEFT JOIN commission_item_agent AS cia ON item.group_id = cia.id
50
+ WHERE
51
+ (item.product_tmpl_id IS NULL OR item.product_tmpl_id = any(%s))
52
+ AND (item.product_id IS NULL OR item.product_id = any(%s))
53
+ AND (item.categ_id IS NULL OR item.categ_id = any(%s))
54
+ AND (item.commission_id = %s)
55
+ AND (item.active = TRUE)
56
+ AND (cia.id IS NULL OR cia.id = any(%s))
57
+ ORDER BY
58
+ item.applied_on, item.based_on, categ.complete_name desc
59
+ """,
60
+ (
61
+ product.product_tmpl_id.ids,
62
+ product.ids,
63
+ categ_ids,
64
+ commission._origin.id,
65
+ group_ids,
66
+ ),
67
+ )
68
+ res = [x[0] for x in self.env.cr.fetchall()]
69
+ return res
@@ -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>Sale Commission Product Criteria Domain</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="sale-commission-product-criteria-domain">
363
- <h1 class="title">Sale Commission Product Criteria Domain</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="sale-commission-product-criteria-domain">
370
+ <h1>Sale Commission Product Criteria Domain</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:68f05649f2fa798589de5a6b032c3bcaf1e5df63e549aee0c672e27fac4ee3a5
375
+ !! source digest: sha256:b543f76e2e9567d9e3b545debdd7a56bb90e3e07bded4ac0ba24189993a2bd70
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/commission/tree/16.0/sale_commission_product_criteria_domain"><img alt="OCA/commission" src="https://img.shields.io/badge/github-OCA%2Fcommission-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/commission-16-0/commission-16-0-sale_commission_product_criteria_domain"><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/commission&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/commission/tree/16.0/sale_commission_product_criteria_domain"><img alt="OCA/commission" src="https://img.shields.io/badge/github-OCA%2Fcommission-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/commission-16-0/commission-16-0-sale_commission_product_criteria_domain"><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/commission&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 limit applied commission items for specific groups.</p>
373
379
  <p>This module allows to manage the following commission structure use case:</p>
374
380
  <blockquote>
@@ -390,7 +396,7 @@ ul.auto-toc {
390
396
  </ul>
391
397
  </div>
392
398
  <div class="section" id="usage">
393
- <h1><a class="toc-backref" href="#toc-entry-1">Usage</a></h1>
399
+ <h2><a class="toc-backref" href="#toc-entry-1">Usage</a></h2>
394
400
  <p>Go to Commissions &gt; Configuration &gt; Commission Type Items Groups</p>
395
401
  <p>Create one or more new Groups, eg. “Italy” and “Spain”</p>
396
402
  <p>Create new Commission type, select type “Product Criteria (with restrictions)”, eg: “Southern Europe”</p>
@@ -406,7 +412,7 @@ ul.auto-toc {
406
412
  <p>On sales for customer X, only Commission type lines with group “Spain” will be applied to agent; on sales for customer Y, only Commission type lines with group “Italy” will be applied to agent.</p>
407
413
  </div>
408
414
  <div class="section" id="bug-tracker">
409
- <h1><a class="toc-backref" href="#toc-entry-2">Bug Tracker</a></h1>
415
+ <h2><a class="toc-backref" href="#toc-entry-2">Bug Tracker</a></h2>
410
416
  <p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/commission/issues">GitHub Issues</a>.
411
417
  In case of trouble, please check there if your issue has already been reported.
412
418
  If you spotted it first, help us to smash it by providing a detailed and welcomed
@@ -414,16 +420,16 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
414
420
  <p>Do not contact contributors directly about support or help with technical issues.</p>
415
421
  </div>
416
422
  <div class="section" id="credits">
417
- <h1><a class="toc-backref" href="#toc-entry-3">Credits</a></h1>
423
+ <h2><a class="toc-backref" href="#toc-entry-3">Credits</a></h2>
418
424
  <div class="section" id="authors">
419
- <h2><a class="toc-backref" href="#toc-entry-4">Authors</a></h2>
425
+ <h3><a class="toc-backref" href="#toc-entry-4">Authors</a></h3>
420
426
  <ul class="simple">
421
427
  <li>Ilyas</li>
422
428
  <li>Ooops404</li>
423
429
  </ul>
424
430
  </div>
425
431
  <div class="section" id="contributors">
426
- <h2><a class="toc-backref" href="#toc-entry-5">Contributors</a></h2>
432
+ <h3><a class="toc-backref" href="#toc-entry-5">Contributors</a></h3>
427
433
  <ul class="simple">
428
434
  <li><a class="reference external" href="https://www.ooops404.com">Ooops404</a>:<ul>
429
435
  <li>Ilyas &lt;<a class="reference external" href="mailto:irazor147&#64;gmail.com">irazor147&#64;gmail.com</a>&gt;</li>
@@ -436,9 +442,11 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
436
442
  </ul>
437
443
  </div>
438
444
  <div class="section" id="maintainers">
439
- <h2><a class="toc-backref" href="#toc-entry-6">Maintainers</a></h2>
445
+ <h3><a class="toc-backref" href="#toc-entry-6">Maintainers</a></h3>
440
446
  <p>This module is maintained by the OCA.</p>
441
- <a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
447
+ <a class="reference external image-reference" href="https://odoo-community.org">
448
+ <img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
449
+ </a>
442
450
  <p>OCA, or the Odoo Community Association, is a nonprofit organization whose
443
451
  mission is to support the collaborative development of Odoo features and
444
452
  promote its widespread use.</p>
@@ -449,5 +457,6 @@ promote its widespread use.</p>
449
457
  </div>
450
458
  </div>
451
459
  </div>
460
+ </div>
452
461
  </body>
453
462
  </html>
@@ -1,19 +1,22 @@
1
1
  Metadata-Version: 2.1
2
- Name: odoo-addon-sale-commission-product-criteria-domain
3
- Version: 16.0.1.0.1
2
+ Name: odoo-addon-sale_commission_product_criteria_domain
3
+ Version: 16.0.1.0.3
4
4
  Summary: Sale Commission Product Criteria Domain
5
5
  Home-page: https://github.com/OCA/commission
6
6
  Author: Ilyas,Ooops404,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-addon-sale-commission-product-criteria <16.1dev,>=16.0dev
16
- Requires-Dist: odoo <16.1dev,>=16.0a
14
+ Requires-Dist: odoo-addon-sale-commission-product-criteria<16.1dev,>=16.0dev
15
+ Requires-Dist: odoo<16.1dev,>=16.0a
16
+
17
+ .. image:: https://odoo-community.org/readme-banner-image
18
+ :target: https://odoo-community.org/get-involved?utm_source=readme
19
+ :alt: Odoo Community Association
17
20
 
18
21
  =======================================
19
22
  Sale Commission Product Criteria Domain
@@ -24,13 +27,13 @@ Sale Commission Product Criteria Domain
24
27
  !! This file is generated by oca-gen-addon-readme !!
25
28
  !! changes will be overwritten. !!
26
29
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
27
- !! source digest: sha256:68f05649f2fa798589de5a6b032c3bcaf1e5df63e549aee0c672e27fac4ee3a5
30
+ !! source digest: sha256:b543f76e2e9567d9e3b545debdd7a56bb90e3e07bded4ac0ba24189993a2bd70
28
31
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
29
32
 
30
33
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
31
34
  :target: https://odoo-community.org/page/development-status
32
35
  :alt: Beta
33
- .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
36
+ .. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
34
37
  :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
35
38
  :alt: License: AGPL-3
36
39
  .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fcommission-lightgray.png?logo=github
@@ -139,5 +142,3 @@ Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
139
142
  This module is part of the `OCA/commission <https://github.com/OCA/commission/tree/16.0/sale_commission_product_criteria_domain>`_ project on GitHub.
140
143
 
141
144
  You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
142
-
143
-
@@ -1,6 +1,6 @@
1
- odoo/addons/sale_commission_product_criteria_domain/README.rst,sha256=UD7XvyFVGEbbwRPbakzh2wYDtPOQ_MhdMSwKphncLy4,4815
1
+ odoo/addons/sale_commission_product_criteria_domain/README.rst,sha256=AwDPchZ3CtNXfP8FV56gfQJETRXSGhepl5DMpeqK_dU,4980
2
2
  odoo/addons/sale_commission_product_criteria_domain/__init__.py,sha256=X9EJGOE2GtZbS0G82PtSXmWSZ_R8jEM0rlJTDliQjp4,21
3
- odoo/addons/sale_commission_product_criteria_domain/__manifest__.py,sha256=X1l2yXxKufcaR6mofmPlKLtnoQ1wRuevRk96VAJsYug,763
3
+ odoo/addons/sale_commission_product_criteria_domain/__manifest__.py,sha256=hJm55vIffuJsjz9T8nus4P8gxvvI-Mt4ucYGDbOfdEY,763
4
4
  odoo/addons/sale_commission_product_criteria_domain/demo/demo_data.xml,sha256=Y7mgP_NPlkUzZKV6BIdlxtEQH1aq7vt2OJ7MGMWtp-Q,5541
5
5
  odoo/addons/sale_commission_product_criteria_domain/i18n/it.po,sha256=WNPmZTOBV7QRXv575PAxh2-JdY4xpBkq9gIwlFceB6w,14614
6
6
  odoo/addons/sale_commission_product_criteria_domain/i18n/sale_commission_product_criteria_domain.pot,sha256=lg-INIxe1wuWZIlQZP1Zae_fpZfhujRV9-aIU2x2EEo,11488
@@ -8,19 +8,19 @@ odoo/addons/sale_commission_product_criteria_domain/models/__init__.py,sha256=GL
8
8
  odoo/addons/sale_commission_product_criteria_domain/models/account_invoice_line_agent.py,sha256=sGvFIV4r8OdJu-vy6o_YpMM1fb-xU3YlqUmuqGhrOLs,973
9
9
  odoo/addons/sale_commission_product_criteria_domain/models/commission.py,sha256=g9mdRGnTrqq32Lym3e5F3shvstTDjrRdelHhV4d0e9c,3125
10
10
  odoo/addons/sale_commission_product_criteria_domain/models/commission_group.py,sha256=zV3N_6RaI4I3BFp4rt2Nhl2vJSLMLoaVIFAm6a43G-E,2387
11
- odoo/addons/sale_commission_product_criteria_domain/models/partner.py,sha256=TVZxjK22_xsF9oTD6QpzzAV9syEv9ToafaPq3n6U7Mw,3072
12
- odoo/addons/sale_commission_product_criteria_domain/models/sale_commission_line_mixin.py,sha256=JfmxcwkYq-zhRgjiatNgZ0i6e-_QAcq5Kk8BMyjsbo8,2313
11
+ odoo/addons/sale_commission_product_criteria_domain/models/partner.py,sha256=_xMZYcqAZb0H2zylniaHE8smkkLDXSh9o3ZrcFZNDwc,3267
12
+ odoo/addons/sale_commission_product_criteria_domain/models/sale_commission_line_mixin.py,sha256=OvD-MtaO3fMhVno7LgHrTGmX-IzciGSDvLnmUUcF76M,2648
13
13
  odoo/addons/sale_commission_product_criteria_domain/models/sale_order_line_agent.py,sha256=YJQfTxz6vewckhj6Scv4mIq8wbEpdF9jTIxJgMoJKjY,995
14
14
  odoo/addons/sale_commission_product_criteria_domain/readme/CONTRIBUTORS.rst,sha256=QY6T07gmiPvozyM8CAFJN6IQBD0SFtwghoDU5fLIIjA,168
15
15
  odoo/addons/sale_commission_product_criteria_domain/readme/DESCRIPTION.rst,sha256=qsRXR_UvuOjbDPqTPItEm1gYwvJ0DvDbBCSG7R-zAXk,411
16
16
  odoo/addons/sale_commission_product_criteria_domain/readme/USAGE.rst,sha256=CnL3oaHfNgAOItbFzGR25ZLDv3KVG-qdqQq7QHnHTD4,1086
17
17
  odoo/addons/sale_commission_product_criteria_domain/security/ir.model.access.csv,sha256=-vtY9FSb3jQBI1HkDNVD0ej2Oy4AMkwCMnExdDkEXII,385
18
18
  odoo/addons/sale_commission_product_criteria_domain/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
19
- odoo/addons/sale_commission_product_criteria_domain/static/description/index.html,sha256=smPyRhnpbCKX4not6DXhQeiBwL2YMi1MLE-3g1bmFeA,14590
19
+ odoo/addons/sale_commission_product_criteria_domain/static/description/index.html,sha256=ycoDcQeF1r1U4Yx1SUhqVtTCcDrDR_-bPZMz98VajcE,14871
20
20
  odoo/addons/sale_commission_product_criteria_domain/tests/__init__.py,sha256=K_GPhvCh3bp_MHaPKdXSc0Wn5qBDFBUiMXKD5pQbc0E,59
21
21
  odoo/addons/sale_commission_product_criteria_domain/tests/test_sale_commission_product_criteria_domain.py,sha256=hnsSbveqMGByUjs3i4IoGxHARWF4lYq5zODvdqSY7Gw,14967
22
22
  odoo/addons/sale_commission_product_criteria_domain/views/views.xml,sha256=tidsdWjUfVy2pgMmmUFUzD1NrQFoKHC3B60uO0GHYw8,9168
23
- odoo_addon_sale_commission_product_criteria_domain-16.0.1.0.1.dist-info/METADATA,sha256=F6f5DwnKZl--A_9y1iEEKHbaqRkJJrfcCNVVxlfNio8,5468
24
- odoo_addon_sale_commission_product_criteria_domain-16.0.1.0.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
25
- odoo_addon_sale_commission_product_criteria_domain-16.0.1.0.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
26
- odoo_addon_sale_commission_product_criteria_domain-16.0.1.0.1.dist-info/RECORD,,
23
+ odoo_addon_sale_commission_product_criteria_domain-16.0.1.0.3.dist-info/METADATA,sha256=mjZojhkn4IdRwaWJpM6yadd7rsLHfVPLV0Qbo89AGAI,5611
24
+ odoo_addon_sale_commission_product_criteria_domain-16.0.1.0.3.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
25
+ odoo_addon_sale_commission_product_criteria_domain-16.0.1.0.3.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
26
+ odoo_addon_sale_commission_product_criteria_domain-16.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