Skip to content

Commit

Permalink
[16.0][FIX] rma, change filter of moves to allow select pickings with…
Browse files Browse the repository at this point in the history
… children of partner selected
  • Loading branch information
ChrisOForgeFlow authored and AaronHForgeFlow committed Sep 20, 2024
1 parent 117e46c commit 0844c39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rma/views/rma_order_line_view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@
<field
name="reference_move_id"
options="{'no_create': True}"
domain="[('picking_id.partner_id', '=', partner_id),
domain="[('picking_id.partner_id', 'child_of', partner_id),
('location_dest_id.usage', '=', 'customer'),
('state', '=', 'done')]"
readonly="state not in ['draft']"
Expand Down Expand Up @@ -400,7 +400,7 @@
<field name="reference_move_id" position="attributes">
<attribute
name="domain"
>[('picking_id.partner_id', '=', partner_id),
>[('picking_id.partner_id', 'child_of', partner_id),
('location_id.usage', '=', 'supplier'),
('state', '=', 'done')]</attribute>
</field>
Expand Down

0 comments on commit 0844c39

Please sign in to comment.