I want to trigger a JS event from another JS function from a different file. I want to apply a discount from customer card when user will set a customer in POS. I already made a JS function which is working perfectly but its need to set customer first then needs to click another button but I want to apply this when customer will set. Is there any way to trigger event from another class function?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Comptabilité
- Inventaire
- PoS
- Project
- MRP
Cette question a été signalée
1
Répondre
3981
Vues
Hi,
Try like following.
// Import this in both files
const { posbus } = require("point_of_sale.utils");
// use this inside the function where you need to trigger the action
posbus.trigger('a-unique-custom-name');
// Import this in the file where you want to receive the action
const { useBus } = require("@web/core/utils/hooks");
// Add this to the setup function of your component
useBus(posbus, 'a-unique-custom-name', this.functionName);
// define your function
Regards
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !
Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !
S'inscrirePublications associées | Réponses | Vues | Activité | |
---|---|---|---|---|
|
2
sept. 23
|
8833 | ||
|
1
déc. 22
|
3469 | ||
|
3
mars 25
|
7247 | ||
|
0
janv. 24
|
1379 | ||
|
1
oct. 23
|
3652 |