3
0
Fork 0

[MIG] web_notify: Migrated in v17

17.0
Nikul-OSI 2024-02-16 16:30:37 +05:30 committed by trisdoan
parent b3625009ba
commit 8aeaa46174
7 changed files with 25 additions and 6 deletions

View File

@ -151,6 +151,9 @@ Contributors
- David Vidal
- Nikul Chaudhary <nchaudhary@opensourceintegrators.com>
- Tris Doan <tridm@trobz.com>
Maintainers
-----------

View File

@ -6,7 +6,7 @@
"name": "Web Notify",
"summary": """
Send notification messages to user""",
"version": "16.0.2.0.1",
"version": "17.0.1.0.0",
"license": "AGPL-3",
"author": "ACSONE SA/NV," "AdaptiveCity," "Odoo Community Association (OCA)",
"development_status": "Production/Stable",

View File

@ -5,3 +5,5 @@
- Kevin Khao \<<kevin.khao@akretion.com>\>
- [Tecnativa](https://www.tecnativa.com):
- David Vidal
- Nikul Chaudhary \<<nchaudhary@opensourceintegrators.com>\>
- Tris Doan \<<tridm@trobz.com>\>

View File

@ -479,6 +479,8 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
<li>David Vidal</li>
</ul>
</li>
<li>Nikul Chaudhary &lt;<a class="reference external" href="mailto:nchaudhary&#64;opensourceintegrators.com">nchaudhary&#64;opensourceintegrators.com</a>&gt;</li>
<li>Tris Doan &lt;<a class="reference external" href="mailto:tridm&#64;trobz.com">tridm&#64;trobz.com</a>&gt;</li>
</ul>
</div>
<div class="section" id="maintainers">

View File

@ -1,8 +1,8 @@
/** @odoo-module */
import {Notification} from "@web/core/notifications/notification";
import {patch} from "web.utils";
import {patch} from "@web/core/utils/patch";
patch(Notification.props, "webNotifyProps", {
patch(Notification.props, {
type: {
type: String,
optional: true,

View File

@ -1,5 +1,6 @@
/** @odoo-module **/
import {Markup} from "web.utils";
import {markup} from "@odoo/owl";
import {browser} from "@web/core/browser/browser";
import {registry} from "@web/core/registry";
@ -34,7 +35,7 @@ export const webNotificationService = {
},
];
}
const notificationRemove = notification.add(Markup(notif.message), {
const notificationRemove = notification.add(markup(notif.message), {
title: notif.title,
type: notif.type,
sticky: notif.sticky,

View File

@ -3,7 +3,7 @@
import json
from odoo import exceptions
from odoo import SUPERUSER_ID, exceptions
from odoo.tests import common
from ..models.res_users import DANGER, DEFAULT, INFO, SUCCESS, WARNING
@ -22,6 +22,7 @@ class TestResUsers(common.TransactionCase):
"params": {},
}
self.env.user.notify_success(**test_msg)
self.env.cr.precommit.run() # trigger the creation of bus.bus records
news = bus_bus.search(domain) - existing
self.assertEqual(1, len(news))
test_msg.update({"type": SUCCESS})
@ -40,6 +41,7 @@ class TestResUsers(common.TransactionCase):
"params": {},
}
self.env.user.notify_danger(**test_msg)
self.env.cr.precommit.run()
news = bus_bus.search(domain) - existing
self.assertEqual(1, len(news))
test_msg.update({"type": DANGER})
@ -58,6 +60,7 @@ class TestResUsers(common.TransactionCase):
"params": {},
}
self.env.user.notify_warning(**test_msg)
self.env.cr.precommit.run()
news = bus_bus.search(domain) - existing
self.assertEqual(1, len(news))
test_msg.update({"type": WARNING})
@ -76,6 +79,7 @@ class TestResUsers(common.TransactionCase):
"params": {},
}
self.env.user.notify_info(**test_msg)
self.env.cr.precommit.run()
news = bus_bus.search(domain) - existing
self.assertEqual(1, len(news))
test_msg.update({"type": INFO})
@ -94,6 +98,7 @@ class TestResUsers(common.TransactionCase):
"params": {},
}
self.env.user.notify_default(**test_msg)
self.env.cr.precommit.run()
news = bus_bus.search(domain) - existing
self.assertEqual(1, len(news))
test_msg.update({"type": DEFAULT})
@ -114,6 +119,12 @@ class TestResUsers(common.TransactionCase):
with self.assertRaises(exceptions.UserError):
other_user_model.browse(self.env.uid).notify_info(message="hello")
# This method for SUPER user
other_user = self.env.ref("base.user_demo")
other_user_model = self.env["res.users"].with_user(other_user)
with self.assertRaises(exceptions.UserError):
other_user_model.browse(SUPERUSER_ID).notify_info(message="hello")
def test_notify_admin_allowed_other_user(self):
other_user = self.env.ref("base.user_demo")
other_user.notify_info(message="hello")