diff options
| author | Indoteknik . <it@fixcomart.co.id> | 2025-08-11 12:54:54 +0700 |
|---|---|---|
| committer | Indoteknik . <it@fixcomart.co.id> | 2025-08-11 12:54:54 +0700 |
| commit | 8cda2bffdae2ad10c32421958e0114a5f3a9d6e1 (patch) | |
| tree | 039fd1a461f67ab5d180bb791702c4ac35fd39c7 | |
| parent | 74e2ec630680c2e9a679f837bd1278a7d0a838de (diff) | |
(andri) fix
| -rw-r--r-- | indoteknik_custom/models/account_move.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_custom/models/account_move.py b/indoteknik_custom/models/account_move.py index 85ded4cd..273bcdf9 100644 --- a/indoteknik_custom/models/account_move.py +++ b/indoteknik_custom/models/account_move.py @@ -296,7 +296,7 @@ class AccountMove(models.Model): # 'email_to': 'andrifebriyadiputra@gmail.com', 'email_to': email_to, 'email_from': 'finance@indoteknik.co.id', - 'email_cc': ",".join(cc_list), + 'email_cc': ",".join(sorted(set(cc_list))), 'body_html': body_html, 'reply_to': 'finance@indoteknik.co.id', } |
