Skip to content

Commit

Permalink
[17.0][FIX] use _get_partner_ids_from_mail instead of deprecated meth…
Browse files Browse the repository at this point in the history
…od _get_default_mail_partner_*
  • Loading branch information
andrel-exo committed Sep 30, 2024
1 parent ed82ad5 commit 312c7f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mail_composer_cc_bcc_account/wizards/account_move_send.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ def _get_mail_move_values(self, move, wizard=None):
or self._get_default_mail_attachments_widget(move, mail_template),
"partner_cc_ids": wizard
and wizard.partner_cc_ids
or self._get_default_mail_partner_cc_ids(move, mail_template),
or self._get_partner_ids_from_mail(move, mail_template.email_cc),
"partner_bcc_ids": wizard
and wizard.partner_bcc_ids
or self._get_default_mail_partner_bcc_ids(move, mail_template),
or self._get_partner_ids_from_mail(move, mail_template.email_bcc),
}

# -------------------------------------------------------------------------
Expand Down

0 comments on commit 312c7f7

Please sign in to comment.