Skip to content

Commit

Permalink
[9.0][IMP] mail_tracking: Improve view with error details
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosdauden authored and payen000 committed Sep 25, 2023
1 parent 1898bb1 commit f0aff3b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mail_tracking/views/mail_tracking_event_view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
<field name="tracking_email_id"/>
<field name="recipient"/>
<field name="event_type"/>
<field name="error_details" invisible="not context.get('event_error_filter', False)"/>
<field name="date" invisible="1"/>
<field name="ip"/>
<field name="url"/>
Expand Down Expand Up @@ -91,7 +92,8 @@
<filter name="bounce" string="Bounce"
domain="[('event_type', 'in', ('hard_bounce', 'soft_bounce'))]"/>
<filter name="exception" string="Failed"
domain="[('event_type', 'in', ('reject', 'spam'))]"/>
domain="[('event_type', 'in', ('reject', 'spam'))]"
context="{'event_error_filter': True}"/>
<separator/>
<group expand="0" string="Group By">
<filter string="Type" domain="[]" context="{'group_by': 'event_type'}"/>
Expand Down

0 comments on commit f0aff3b

Please sign in to comment.