Skip to content

Commit

Permalink
CO-3006 Don't send unread B2S letter to delivered emails
Browse files Browse the repository at this point in the history
  • Loading branch information
ecino committed Mar 23, 2020
1 parent 7346d54 commit a7bcfd1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<field name="model_id" ref="model_correspondence"/>
<field name="kind">on_time</field>
<field name="trg_date_id" ref="field_correspondence_sent_date"/>
<field name="filter_domain">[('communication_id.state', '=', 'done'), ('communication_id.send_mode', '=', 'digital'), ('email_read', '=', None)]</field>
<field name="filter_domain">[('communication_id.state', '=', 'done'), ('communication_id.send_mode', '=', 'digital'), ('email_read', '=', None), ('letter_delivered', '=', False)]</field>
<field name="trg_date_range">3</field>
<field name="trg_date_range_type">day</field>
<field name="server_action_ids" eval="[(6, 0, [ref('send_unread_b2s')])]"/>
Expand Down

0 comments on commit a7bcfd1

Please sign in to comment.