Skip to content

Commit

Permalink
Merge pull request #1047 from ecino/CO-3006
Browse files Browse the repository at this point in the history
CO-3006 Don't send unread B2S letter to delivered emails
  • Loading branch information
ecino authored Mar 23, 2020
2 parents 7346d54 + a7bcfd1 commit dd930a5
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 dd930a5

Please sign in to comment.