Skip to content

Commit 0400b64

Browse files
sergio-teruelfkantelberg
authored andcommitted
[IMP] stock_picking_product_assortment: use base_view_inheritance_extension module to extend product domain. Unnecessary code removed
1 parent c5f4194 commit 0400b64

File tree

10 files changed

+72
-123
lines changed

10 files changed

+72
-123
lines changed

stock_picking_product_assortment/README.rst

+12-8
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22
Stock Picking Product Assortment
33
================================
44

5-
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
67
!! This file is generated by oca-gen-addon-readme !!
78
!! changes will be overwritten. !!
89
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:cd886493c73e5958194c26e12eca0c499577bba11688f478fcfc329378dfa991
11+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
912
1013
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
1114
:target: https://odoo-community.org/page/development-status
@@ -17,13 +20,13 @@ Stock Picking Product Assortment
1720
:target: https://github.com/OCA/stock-logistics-workflow/tree/16.0/stock_picking_product_assortment
1821
:alt: OCA/stock-logistics-workflow
1922
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
20-
:target: https://translation.odoo-community.org/projects/stock-logistics-workflow-15-0/stock-logistics-workflow-15-0-stock_picking_product_assortment
23+
:target: https://translation.odoo-community.org/projects/stock-logistics-workflow-16-0/stock-logistics-workflow-16-0-stock_picking_product_assortment
2124
:alt: Translate me on Weblate
22-
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
23-
:target: https://runbot.odoo-community.org/runbot/154/15.0
24-
:alt: Try me on Runbot
25+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
26+
:target: https://runboat.odoo-community.org/builds?repo=OCA/stock-logistics-workflow&target_branch=16.0
27+
:alt: Try me on Runboat
2528

26-
|badge1| |badge2| |badge3| |badge4| |badge5|
29+
|badge1| |badge2| |badge3| |badge4| |badge5|
2730

2831
This module allows to use the product assortments related to a partner on outgoing stock
2932
pickings. Whith this implementation, we just allow to select the products defined on
@@ -54,8 +57,8 @@ Bug Tracker
5457

5558
Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-workflow/issues>`_.
5659
In case of trouble, please check there if your issue has already been reported.
57-
If you spotted it first, help us smashing it by providing a detailed and welcomed
58-
`feedback <https://github.com/OCA/stock-logistics-workflow/issues/new?body=module:%20stock_picking_product_assortment%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
60+
If you spotted it first, help us to smash it by providing a detailed and welcomed
61+
`feedback <https://github.com/OCA/stock-logistics-workflow/issues/new?body=module:%20stock_picking_product_assortment%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
5962

6063
Do not contact contributors directly about support or help with technical issues.
6164

@@ -73,6 +76,7 @@ Contributors
7376
* `Tecnativa <https://www.tecnativa.com>`_:
7477

7578
* Carlos Roca
79+
* Sergio Teruel
7680

7781
* Dhara Solanki <[email protected]>
7882

stock_picking_product_assortment/__manifest__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
"maintainers": ["CarlosRoca13"],
1111
"license": "AGPL-3",
1212
"installable": True,
13-
"depends": ["stock", "product_assortment"],
13+
"depends": ["base_view_inheritance_extension", "product_assortment", "stock"],
1414
"data": ["views/stock_picking_view.xml"],
1515
}
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
from . import stock_move
2-
from . import stock_move_line
31
from . import stock_picking

stock_picking_product_assortment/models/stock_move.py

-18
This file was deleted.

stock_picking_product_assortment/models/stock_move_line.py

-18
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Copyright 2020 Tecnativa - Carlos Roca
2+
# Copyright 2023 Tecnativa - Sergio Teruel
23
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).
34
from odoo import api, fields, models
45
from odoo.osv import expression
@@ -19,20 +20,15 @@ def _compute_product_assortment_ids(self):
1920
# If we don't initialize the fields we get an error with NewId
2021
self.assortment_product_ids = self.env["product.product"]
2122
self.has_assortment = False
22-
for record in self:
23-
if record.partner_id and record.picking_type_id.code == "outgoing":
24-
# As all_partner_ids can't be a stored field
25-
filters = self.env["ir.filters"].search(
26-
[
27-
(
28-
"all_partner_ids",
29-
"in",
30-
(self.partner_id + self.partner_id.parent_id).ids,
31-
),
32-
]
23+
product_domain = []
24+
partners = self.partner_id + self.partner_id.parent_id
25+
if partners:
26+
for ir_filter in partners.applied_assortment_ids:
27+
product_domain = expression.AND(
28+
[product_domain, ir_filter._get_eval_domain()]
29+
)
30+
if product_domain:
31+
self.assortment_product_ids = self.env["product.product"].search(
32+
product_domain
3333
)
34-
domain = []
35-
for fil in filters:
36-
domain = expression.AND([domain, fil._get_eval_domain()])
3734
self.has_assortment = True
38-
self.assortment_product_ids = self.env["product.product"].search(domain)
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
* `Tecnativa <https://www.tecnativa.com>`_:
22

33
* Carlos Roca
4+
* Sergio Teruel
45

56
* Dhara Solanki <[email protected]>

stock_picking_product_assortment/static/description/index.html

+31-25
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
<?xml version="1.0" encoding="utf-8" ?>
21
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
32
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
43
<head>
54
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6-
<meta name="generator" content="Docutils 0.15.1: http://docutils.sourceforge.net/" />
5+
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
76
<title>Stock Picking Product Assortment</title>
87
<style type="text/css">
98

109
/*
1110
:Author: David Goodger ([email protected])
12-
:Id: $Id: html4css1.css 7952 2016-07-26 18:15:59Z milde $
11+
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
1312
:Copyright: This stylesheet has been placed in the public domain.
1413
1514
Default cascading style sheet for the HTML output of Docutils.
15+
Despite the name, some widely supported CSS2 features are used.
1616
17-
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
17+
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
1818
customize this style sheet.
1919
*/
2020

@@ -275,7 +275,7 @@
275275
margin-left: 2em ;
276276
margin-right: 2em }
277277

278-
pre.code .ln { color: grey; } /* line numbers */
278+
pre.code .ln { color: gray; } /* line numbers */
279279
pre.code, code { background-color: #eeeeee }
280280
pre.code .comment, code .comment { color: #5C6576 }
281281
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
@@ -301,7 +301,7 @@
301301
span.pre {
302302
white-space: pre }
303303

304-
span.problematic {
304+
span.problematic, pre.problematic {
305305
color: red }
306306

307307
span.section-subtitle {
@@ -366,33 +366,35 @@ <h1 class="title">Stock Picking Product Assortment</h1>
366366
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
367367
!! This file is generated by oca-gen-addon-readme !!
368368
!! changes will be overwritten. !!
369+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370+
!! source digest: sha256:cd886493c73e5958194c26e12eca0c499577bba11688f478fcfc329378dfa991
369371
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
370-
<p><a class="reference external" 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" 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" href="https://github.com/OCA/stock-logistics-workflow/tree/16.0/stock_picking_product_assortment"><img alt="OCA/stock-logistics-workflow" src="https://img.shields.io/badge/github-OCA%2Fstock--logistics--workflow-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/stock-logistics-workflow-15-0/stock-logistics-workflow-15-0-stock_picking_product_assortment"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/154/15.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
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-workflow/tree/16.0/stock_picking_product_assortment"><img alt="OCA/stock-logistics-workflow" src="https://img.shields.io/badge/github-OCA%2Fstock--logistics--workflow-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/stock-logistics-workflow-16-0/stock-logistics-workflow-16-0-stock_picking_product_assortment"><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-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>
371373
<p>This module allows to use the product assortments related to a partner on outgoing stock
372374
pickings. Whith this implementation, we just allow to select the products defined on
373375
whitelist and we don’t allow to select the products defined on blacklist on outgoing
374376
stock pickings.</p>
375377
<p><strong>Table of contents</strong></p>
376378
<div class="contents local topic" id="contents">
377379
<ul class="simple">
378-
<li><a class="reference internal" href="#configuration" id="id1">Configuration</a></li>
379-
<li><a class="reference internal" href="#usage" id="id2">Usage</a></li>
380-
<li><a class="reference internal" href="#bug-tracker" id="id3">Bug Tracker</a></li>
381-
<li><a class="reference internal" href="#credits" id="id4">Credits</a><ul>
382-
<li><a class="reference internal" href="#authors" id="id5">Authors</a></li>
383-
<li><a class="reference internal" href="#contributors" id="id6">Contributors</a></li>
384-
<li><a class="reference internal" href="#maintainers" id="id7">Maintainers</a></li>
380+
<li><a class="reference internal" href="#configuration" id="toc-entry-1">Configuration</a></li>
381+
<li><a class="reference internal" href="#usage" id="toc-entry-2">Usage</a></li>
382+
<li><a class="reference internal" href="#bug-tracker" id="toc-entry-3">Bug Tracker</a></li>
383+
<li><a class="reference internal" href="#credits" id="toc-entry-4">Credits</a><ul>
384+
<li><a class="reference internal" href="#authors" id="toc-entry-5">Authors</a></li>
385+
<li><a class="reference internal" href="#contributors" id="toc-entry-6">Contributors</a></li>
386+
<li><a class="reference internal" href="#maintainers" id="toc-entry-7">Maintainers</a></li>
385387
</ul>
386388
</li>
387389
</ul>
388390
</div>
389391
<div class="section" id="configuration">
390-
<h1><a class="toc-backref" href="#id1">Configuration</a></h1>
392+
<h1><a class="toc-backref" href="#toc-entry-1">Configuration</a></h1>
391393
<p>Follow the steps of product_assortment module to define a whitelist or a blacklists or
392394
both to some partner.</p>
393395
</div>
394396
<div class="section" id="usage">
395-
<h1><a class="toc-backref" href="#id2">Usage</a></h1>
397+
<h1><a class="toc-backref" href="#toc-entry-2">Usage</a></h1>
396398
<ol class="arabic simple">
397399
<li>Go to Inventory.</li>
398400
<li>Create a new outgoing picking.</li>
@@ -401,39 +403,43 @@ <h1><a class="toc-backref" href="#id2">Usage</a></h1>
401403
</ol>
402404
</div>
403405
<div class="section" id="bug-tracker">
404-
<h1><a class="toc-backref" href="#id3">Bug Tracker</a></h1>
406+
<h1><a class="toc-backref" href="#toc-entry-3">Bug Tracker</a></h1>
405407
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/stock-logistics-workflow/issues">GitHub Issues</a>.
406408
In case of trouble, please check there if your issue has already been reported.
407-
If you spotted it first, help us smashing it by providing a detailed and welcomed
408-
<a class="reference external" href="https://github.com/OCA/stock-logistics-workflow/issues/new?body=module:%20stock_picking_product_assortment%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
409+
If you spotted it first, help us to smash it by providing a detailed and welcomed
410+
<a class="reference external" href="https://github.com/OCA/stock-logistics-workflow/issues/new?body=module:%20stock_picking_product_assortment%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
409411
<p>Do not contact contributors directly about support or help with technical issues.</p>
410412
</div>
411413
<div class="section" id="credits">
412-
<h1><a class="toc-backref" href="#id4">Credits</a></h1>
414+
<h1><a class="toc-backref" href="#toc-entry-4">Credits</a></h1>
413415
<div class="section" id="authors">
414-
<h2><a class="toc-backref" href="#id5">Authors</a></h2>
416+
<h2><a class="toc-backref" href="#toc-entry-5">Authors</a></h2>
415417
<ul class="simple">
416418
<li>Tecnativa</li>
417419
</ul>
418420
</div>
419421
<div class="section" id="contributors">
420-
<h2><a class="toc-backref" href="#id6">Contributors</a></h2>
422+
<h2><a class="toc-backref" href="#toc-entry-6">Contributors</a></h2>
421423
<ul class="simple">
422424
<li><a class="reference external" href="https://www.tecnativa.com">Tecnativa</a>:<ul>
423425
<li>Carlos Roca</li>
426+
<li>Sergio Teruel</li>
424427
</ul>
425428
</li>
429+
<li>Dhara Solanki &lt;<a class="reference external" href="mailto:dhara.solanki&#64;initos.com">dhara.solanki&#64;initos.com</a>&gt;</li>
426430
</ul>
427431
</div>
428432
<div class="section" id="maintainers">
429-
<h2><a class="toc-backref" href="#id7">Maintainers</a></h2>
433+
<h2><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h2>
430434
<p>This module is maintained by the OCA.</p>
431-
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
435+
<a class="reference external image-reference" href="https://odoo-community.org">
436+
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
437+
</a>
432438
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
433439
mission is to support the collaborative development of Odoo features and
434440
promote its widespread use.</p>
435441
<p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainer</a>:</p>
436-
<p><a class="reference external" href="https://github.com/CarlosRoca13"><img alt="CarlosRoca13" src="https://github.com/CarlosRoca13.png?size=40px" /></a></p>
442+
<p><a class="reference external image-reference" href="https://github.com/CarlosRoca13"><img alt="CarlosRoca13" src="https://github.com/CarlosRoca13.png?size=40px" /></a></p>
437443
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/stock-logistics-workflow/tree/16.0/stock_picking_product_assortment">OCA/stock-logistics-workflow</a> project on GitHub.</p>
438444
<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>
439445
</div>

stock_picking_product_assortment/tests/test_stock_picking_product_assortment.py

+3-9
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,7 @@ def test_stock_picking_product_assortment(self):
4949
stock_picking_form = Form(self.stock_picking_obj)
5050
stock_picking_form.partner_id = self.partner_1
5151
stock_picking_form.picking_type_id = self.pick_type_out
52-
with stock_picking_form.move_ids_without_package.new() as move_id:
53-
move_id.assortment_product_id = self.product_1.product_variant_id
54-
self.assertEqual(move_id.product_id, self.product_1.product_variant_id)
52+
5553
stock_picking_1 = stock_picking_form.save()
5654
self.assertEqual(
5755
stock_picking_1.assortment_product_ids,
@@ -71,9 +69,7 @@ def test_stock_picking_product_assortment(self):
7169
stock_picking_form = Form(self.stock_picking_obj)
7270
stock_picking_form.partner_id = self.partner_1
7371
stock_picking_form.picking_type_id = self.pick_type_out
74-
with stock_picking_form.move_ids_without_package.new() as move_id:
75-
move_id.assortment_product_id = self.product_1.product_variant_id
76-
self.assertEqual(move_id.product_id, self.product_1.product_variant_id)
72+
7773
stock_picking_2 = stock_picking_form.save()
7874
self.assertEqual(
7975
stock_picking_2.assortment_product_ids,
@@ -84,9 +80,7 @@ def test_stock_picking_product_assortment(self):
8480
stock_picking_form = Form(self.stock_picking_obj)
8581
stock_picking_form.partner_id = self.partner_2
8682
stock_picking_form.picking_type_id = self.pick_type_out
87-
with stock_picking_form.move_ids_without_package.new() as move_id:
88-
move_id.assortment_product_id = self.product_1.product_variant_id
89-
self.assertEqual(move_id.product_id, self.product_1.product_variant_id)
83+
9084
stock_picking_3 = stock_picking_form.save()
9185
self.assertFalse(
9286
stock_picking_3.assortment_product_ids

0 commit comments

Comments
 (0)