changeset 3308c0da16a6 in modules/product_kit:6.0
details:
https://hg.tryton.org/modules/product_kit?cmd=changeset&node=3308c0da16a6
description:
Add missing parent domain clause on search_shipments_returns
issue10688
review365831002
(grafted from ec4ae07d0c590517f7d8c6587d1d3044221554a1)
diffstat:
common.py | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diffs (11 lines):
diff -r e249340d67a6 -r 3308c0da16a6 common.py
--- a/common.py Wed Jul 21 08:28:09 2021 +0200
+++ b/common.py Thu Aug 26 19:33:00 2021 +0200
@@ -44,6 +44,7 @@
else:
target = 'id'
return ['OR',
+ domain,
('lines.components.moves.shipment.' + target,)
+ tuple(clause[1:3]) + (model_name,)]
return wrapper