Hello Everyone,
i have created one JS widget and it is properly working on odoo 11, but in master[Odoo 12.0alpha1+e] it's show me a console error "Could not find client action MyWidget".
Bellow are the files. Please help me.
Thanks in advance..
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hello Everyone,
i have created one JS widget and it is properly working on odoo 11, but in master[Odoo 12.0alpha1+e] it's show me a console error "Could not find client action MyWidget".
Bellow are the files. Please help me.
Thanks in advance..
Hi,
Just add below changes
var AbstractAction = require('web.AbstractAction');
Instead of
var myWidget = Widget.extend({
})
Use
var myWidget = AbstractAction.extend({
})
Hope this will solve your issue.
I have the same problem
**********************Mi archivo JS*******************
odoo.define('df_hc_acuifero.graficoClientAction', function (require) {
"use strict";
var AbstractAction = require('web.AbstractAction');
var ControlPanelMixin = require('web.ControlPanelMixin');
var core = require('web.core');
var Widget = require('web.Widget');
var _t = core._t;
var QWeb = core.qweb;
var Grafico_acuiferoAction = AbstractAction.extend(ControlPanelMixin, {
template: "df_hc_acuifero_grafico_acuifero_view",
init: function (parent, context) {
this._super(parent, context);
},
start: function () {
alert("pavel");
},
});
core.action_registry.add('grafico_acuifero_view', Grafico_acuiferoAction);
return {
Grafico_acuiferoAction: Grafico_acuiferoAction,
};
});
***********Mi Template****************
<?xml version="1.0" encoding ="UTF-8"?>
<templates xml:space="preserve">
<div t-name="df_hc_acuifero_grafico_acuifero_view" >
<div id="tabstrip">
<div>
<div/>
</div>
</div>
</div>
</templates>********* Mi view ******************
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<data>
<template id="assets_backend" name="account assets" inherit_id="web.assets_backend">
<xpath expr="." position="inside">
<script type="text/javascript" src="/df_hc_acuifero/static/src/js/df_hc_acuifero_src.js"/>
</xpath>
</template>
<record id="df_action_grafico_acuifero" model="ir.actions.client">
<field name="name">GCBAS</field>
<field name="tag">grafico_acuifero_view</field>
</record>
</data>
</odoo>
****** Mi manifest **********
{
'name': "acuifero",
'summary': """
Short (1 phrase/line) summary of the module's purpose, used as
subtitle on modules listing or apps.openerp.com""",
'description': """
Long description of module's purpose
""",
'author': "My Company",
'website': "http://www.yourcompany.com",
# Categories can be used to filter modules in modules listing
# Check https://github.com/odoo/odoo/blob/10.0/odoo/addons/base/module/module_data.xml
# for the full list
'category': 'Uncategorized',
'version': '0.1',
# any module necessary for this one to work correctly
'depends': ['base','df_hc_embalse','df_hc_rain_base'],
# always loaded
'data': [
'security/df_hc_acuifero_security.xml',
'security/ir.model.access.csv',
'views/views.xml',
'views/templates.xml',
'views/df_cuenca_subterranea_inherit_view.xml',
'views/df_pozo_view.xml',
'views/df_nivel_anual_pozo_view.xml',
'views/df_probabilidad_cuenca_view.xml',
'views/df_probabilidad_sector_view.xml',
'views/df_probabilidad_bloque_view.xml',
'views/df_probabilidad_pozo_view.xml',
# # 'views/df_zona_hidrografica_pluviometro_view.xml',
# # 'views/df_tramo_view.xml',
'views/df_sector_hidrologico_view.xml',
'views/df_explotacion_real_view.xml',
'views/df_explotacion_anual_pozo_view.xml',
'views/df_grafico_comportamiento_acuifero.xml',
'wizard/df_importar_pozos.xml',
'wizard/df_importar_niveles_pozos.xml',
'wizard/df_importar_explotacion.xml',
'wizard/df_configurar_grafica_gcbas.xml',
'report/df_report_cota_agua_view.xml',
'report/report_view.xml',
'report/df_hc_cota_agua.xml',
'views/df_acuerifero_main_view.xml',
],
# only loaded in demonstration mode
'demo': [
'demo/demo.xml',
],
'qweb' : ['static/src/xml/grafico_comportamiento_acuifero.xml'],
'application': True
}
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
1
May 23
|
4868 | ||
|
1
Jul 16
|
2753 | ||
|
1
Jun 23
|
1591 | ||
|
0
Jan 21
|
1730 | ||
|
1
Dec 19
|
4579 |