Browse Source
🚑 mail_private issue with sending to unmarked recipients
pull/211/head
ommo73
6 years ago
No known key found for this signature in database
GPG Key ID: E7E1F5C23505AFF8
3 changed files with
7 additions and
3 deletions
-
mail_private/__openerp__.py
-
mail_private/doc/changelog.rst
-
mail_private/static/src/js/mail_private.js
|
@ -10,7 +10,7 @@ |
|
|
"category": "Discuss", |
|
|
"category": "Discuss", |
|
|
# "live_test_url": "http://apps.it-projects.info/shop/product/DEMO-URL?version=8.0", |
|
|
# "live_test_url": "http://apps.it-projects.info/shop/product/DEMO-URL?version=8.0", |
|
|
"images": [], |
|
|
"images": [], |
|
|
"version": "8.0.1.1.0", |
|
|
|
|
|
|
|
|
"version": "8.0.1.1.1", |
|
|
"application": False, |
|
|
"application": False, |
|
|
|
|
|
|
|
|
"author": "IT-Projects LLC, Pavel Romanchenko", |
|
|
"author": "IT-Projects LLC, Pavel Romanchenko", |
|
|
|
@ -1,4 +1,8 @@ |
|
|
`1.1.0` |
|
|
|
|
|
|
|
|
`1.1.1` |
|
|
|
|
|
------- |
|
|
|
|
|
|
|
|
|
|
|
- **Fix**: issue with sending to unmarked recipients. |
|
|
|
|
|
|
|
|
------- |
|
|
------- |
|
|
|
|
|
|
|
|
- **New**: internal users are flagged automatically. |
|
|
- **New**: internal users are flagged automatically. |
|
|
|
@ -18,7 +18,7 @@ openerp.mail_private = function(instance){ |
|
|
.find("input:checked").each(function() { |
|
|
.find("input:checked").each(function() { |
|
|
$(this).prop("checked", false); |
|
|
$(this).prop("checked", false); |
|
|
}); |
|
|
}); |
|
|
_.each(self.recipients, function(res) { |
|
|
|
|
|
|
|
|
_.each(this.recipients, function(res) { |
|
|
res.checked = false; |
|
|
res.checked = false; |
|
|
}); |
|
|
}); |
|
|
}, |
|
|
}, |
|
|