Browse Source

Merge pull request #211 from Ommo73/8.0-mail_private-fix_uncheck_all

🚑 mail_private issue with sending to unmarked recipients
pull/253/head
Bot 5 years ago
committed by GitHub
parent
commit
34beee344f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      mail_private/__openerp__.py
  2. 6
      mail_private/doc/changelog.rst
  3. 2
      mail_private/static/src/js/mail_private.js

2
mail_private/__openerp__.py

@ -10,7 +10,7 @@
"category": "Discuss",
# "live_test_url": "http://apps.it-projects.info/shop/product/DEMO-URL?version=8.0",
"images": [],
"version": "8.0.1.1.0",
"version": "8.0.1.1.1",
"application": False,
"author": "IT-Projects LLC, Pavel Romanchenko",

6
mail_private/doc/changelog.rst

@ -1,4 +1,8 @@
`1.1.0`
`1.1.1`
-------
- **Fix**: issue with sending to unmarked recipients.
-------
- **New**: internal users are flagged automatically.

2
mail_private/static/src/js/mail_private.js

@ -18,7 +18,7 @@ openerp.mail_private = function(instance){
.find("input:checked").each(function() {
$(this).prop("checked", false);
});
_.each(self.recipients, function(res) {
_.each(this.recipients, function(res) {
res.checked = false;
});
},

Loading…
Cancel
Save