Skip to content

Commit

Permalink
Merge PR #426 into 16.0
Browse files Browse the repository at this point in the history
Signed-off-by pedrobaeza
  • Loading branch information
OCA-git-bot committed Oct 16, 2024
2 parents 98ec8b5 + 6adab5b commit 1401a8f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions rma/views/rma_views.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,25 @@
<field name="arch" type="xml">
<search>
<field name="name" />
<field name="origin" />
<field name="user_id" />
<field name="tag_ids" />
<filter
string="Awaiting Action"
name="waiting_action"
domain="[('state', 'in', ['waiting_return', 'waiting_replacement', 'confirmed'])]"
/>
<filter
string="Processed"
name="processed"
domain="[('state', 'in', ['received', 'refunded', 'replaced', 'finished'])]"
/>
<filter
string="Closed"
name="closed"
domain="[('state', 'in', ['locked', 'cancelled'])]"
/>
<separator />
<filter
name="draft_filter"
string="Draft"
Expand Down

0 comments on commit 1401a8f

Please sign in to comment.