自学内容网 自学内容网

odoo添加自定义网页---添加模块图标

1.新建一个模块

python odoo-bin scaffold test_web <路径>

2.我们需要修改一下几个文件

在这里插入图片描述

3.web.xml

<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">

    <t t-name="TestPage">
        <div class="container-fluid py-2 o_web_settings_dashboard">
            <div class="form-row">
                <div class="col-12 col-lg-6 o_web_settings_dashboard_col">
                    <div class="card" elevation="3">
                        <div class="card-body">
                            <p>自定义内容</p>
                        </div>

                    </div>
                </div>
            </div>
        </div>
    </t>

</templates>

4.web.js

odoo.define('test_page.demo', function (require) {
"use strict";

var AbstractAction = require('web.AbstractAction');
var core = require('web.core');

var TestPageDemo= AbstractAction.extend({
    template: 'TestPage',
    //  可在中间插入web.xml文件事件功能
});

core.action_registry.add('test_page.demo', TestPageDemo);

return TestPageDemo;

});

5.test_web.xml

<odoo>
    <data>
        <record id="action_test_page" model="ir.actions.client">
            <field name="name">测试网页</field>
            <field name="tag">test_page.demo</field>
        </record>

        <menuitem
                id="menu_root_test_page"
                name="测试网页"
                action="action_test_page"
                web_icon="test_web,static/description/test.png"
                groups="base.group_user"
                sequence="1"/>
    </data>
</odoo>

6.在上面的menuitem中的web_icon中添加模块名称以及模块图标的路径,并在manifest文件的data中引入,另外static中的js和xml文件也需要在manifest中的assets中引入

在这里插入图片描述

7.效果

在这里插入图片描述


原文地址:https://blog.csdn.net/weixin_42744834/article/details/137871777

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!