Browse Source

🚑 mail_private issue with sending to unmarked recipients

pull/211/head
ommo73 6 years ago
parent
commit
22a3109852
No known key found for this signature in database GPG Key ID: E7E1F5C23505AFF8
  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