2

Is it possible to create information message with options like proceed or cancel in OpenERP ? If it is possible how to create one ?

ManishaS
  • 45
  • 6

2 Answers2

0

You can extend a js web module to do that.
Create script.js under /module_name/static/src/js/ which contains:

openerp.module_name = function(instance) {
    var _t = instance.web._t,
        _lt = instance.web._lt;
    var QWeb = instance.web.qweb;

    /* For example */
    instance.web.FormView.include({
    });

};
Kenly
  • 24,317
  • 7
  • 44
  • 60
0

You can create a wizard with cancel and proceed button within