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 2af11be commit 44a3669
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 @@ -217,7 +217,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')]"
/>
Expand Down Expand Up @@ -367,7 +367,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 44a3669

Please sign in to comment.