odoo10在顶部“创建”按钮附加增加自定义按钮

2023-11-21 17:38

本文主要是介绍odoo10在顶部“创建”按钮附加增加自定义按钮,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

HOW TO ADD BUTTON IN TREE VIEW HEADER NEAR “CREATE” AND “IMPORT” BUTTONS ODOO10


来自:https://supportuae.wordpress.com/2017/09/06/how-to-add-button-in-tree-view-header-near-create-and-import-buttons-odoo10/


1). I create some js script (tree_menu/static/src/js/tree_view_button.js) with click listener for my button :

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
odoo.define( 'tree_menu.tree_view_button' , function (require){
"use strict" ;
var core = require( 'web.core' );
var ListView = require( 'web.ListView' );
var QWeb = core.qweb;
ListView.include({      
     
         render_buttons: function ($node) {
                 var self = this ;
                 this ._super($node);
                     this .$buttons.find( '.o_list_tender_button_create' ).click( this .proxy( 'tree_view_action' ));
         },
         tree_view_action: function () {          
                 
         this .do_action({              
                 type: "ir.actions.act_window" ,              
                 name: "product" ,              
                 res_model: "product.template" ,              
                 views: [[ false , 'form' ]],              
                 target: 'current' ,              
                 view_type : 'form' ,              
                 view_mode : 'form' ,              
                 flags: { 'form' : { 'action_buttons' : true , 'options' : { 'mode' : 'edit' }}}
         });
         return { 'type' : 'ir.actions.client' , 'tag' : 'reload' , } }
});
});

2). After that, create tree_menu/static/src/xml/tree_view_button.xml with the template, which replaces “Create” button if I use project.project model

1
2
3
4
5
6
7
8
9
<? xml version = "1.0" encoding = "UTF-8" ?>
       < template id = "template" xml:space = "preserve" >      
           &l t ;t t-extend = "ListView.buttons" >                  
             &l t ;t t-jquery = "button.o_list_button_add" t-operation = "replace" >                          
                   < button t-if = "widget.model == 'purchase.order'" class = "btn btn-primary btn-sm o_list_tender_button_create" type = "button" >Create Tender</ button >
                   < button t-if = "widget.model != 'purchase.order'" class = "btn btn-primary btn-sm o_list_button_add" type = "button" >Create</ button >
             &l t ;/t>      
           &l t ;/t>  
       </ template >

3). After that, add js script in web.asset_backend (Create file tree_menu/views/tree_view_asset.xml)

1
2
3
4
5
6
7
8
9
10
<? xml version = "1.0" encoding = "utf-8" ?>  
< odoo >      
       < data >          
             < template id = "assets_backend" name = "tree view menu" inherit_id = "web.assets_backend" >              
                   < xpath expr = "." position = "inside" >                  
                         < script type = "text/javascript" src = "/tree_menu/static/src/js/tree_view_button.js" ></ script >              
                   </ xpath >          
             </ template >      
       </ data >  
</ odoo >

4). And finally, add in __manifest__.py section ‘qweb’ for ‘qweb’: [‘static/src/xml/tree_view_button.xml’], and place file views/project.xml in ‘data’ section.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
     'name': 'odoo10 Tree View JS Menu',
     'version': '1.0',
     'category': 'General',
     'summary': 'odoo10 Tree View JS Menu',
     'description': """ odoo10 Tree View JS Menu """,
     'author': 'Ananthu',
     'website': 'http://www.codersfort.com',
     'depends': ['base','purchase','web'],
     'data':[
             'views/tree_view_asset.xml',
             ],
     'qweb': ['static/src/xml/tree_view_button.xml'],      
     'demo': [],
     'installable': True,
     'application': True,
     'auto_install': False,
}


这篇关于odoo10在顶部“创建”按钮附加增加自定义按钮的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/403939

相关文章

使用Sentinel自定义返回和实现区分来源方式

《使用Sentinel自定义返回和实现区分来源方式》:本文主要介绍使用Sentinel自定义返回和实现区分来源方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Sentinel自定义返回和实现区分来源1. 自定义错误返回2. 实现区分来源总结Sentinel自定

idea中创建新类时自动添加注释的实现

《idea中创建新类时自动添加注释的实现》在每次使用idea创建一个新类时,过了一段时间发现看不懂这个类是用来干嘛的,为了解决这个问题,我们可以设置在创建一个新类时自动添加注释,帮助我们理解这个类的用... 目录前言:详细操作:步骤一:点击上方的 文件(File),点击&nbmyHIgsp;设置(Setti

如何自定义Nginx JSON日志格式配置

《如何自定义NginxJSON日志格式配置》Nginx作为最流行的Web服务器之一,其灵活的日志配置能力允许我们根据需求定制日志格式,本文将详细介绍如何配置Nginx以JSON格式记录访问日志,这种... 目录前言为什么选择jsON格式日志?配置步骤详解1. 安装Nginx服务2. 自定义JSON日志格式各

Android自定义Scrollbar的两种实现方式

《Android自定义Scrollbar的两种实现方式》本文介绍两种实现自定义滚动条的方法,分别通过ItemDecoration方案和独立View方案实现滚动条定制化,文章通过代码示例讲解的非常详细,... 目录方案一:ItemDecoration实现(推荐用于RecyclerView)实现原理完整代码实现

SpringBoot项目使用MDC给日志增加唯一标识的实现步骤

《SpringBoot项目使用MDC给日志增加唯一标识的实现步骤》本文介绍了如何在SpringBoot项目中使用MDC(MappedDiagnosticContext)为日志增加唯一标识,以便于日... 目录【Java】SpringBoot项目使用MDC给日志增加唯一标识,方便日志追踪1.日志效果2.实现步

Spring 中使用反射创建 Bean 实例的几种方式

《Spring中使用反射创建Bean实例的几种方式》文章介绍了在Spring框架中如何使用反射来创建Bean实例,包括使用Class.newInstance()、Constructor.newI... 目录1. 使用 Class.newInstance() (仅限无参构造函数):2. 使用 Construc

基于Spring实现自定义错误信息返回详解

《基于Spring实现自定义错误信息返回详解》这篇文章主要为大家详细介绍了如何基于Spring实现自定义错误信息返回效果,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录背景目标实现产出背景Spring 提供了 @RestConChina编程trollerAdvice 用来实现 HTT

SpringSecurity 认证、注销、权限控制功能(注销、记住密码、自定义登入页)

《SpringSecurity认证、注销、权限控制功能(注销、记住密码、自定义登入页)》SpringSecurity是一个强大的Java框架,用于保护应用程序的安全性,它提供了一套全面的安全解决方案... 目录简介认识Spring Security“认证”(Authentication)“授权” (Auth

C#原型模式之如何通过克隆对象来优化创建过程

《C#原型模式之如何通过克隆对象来优化创建过程》原型模式是一种创建型设计模式,通过克隆现有对象来创建新对象,避免重复的创建成本和复杂的初始化过程,它适用于对象创建过程复杂、需要大量相似对象或避免重复初... 目录什么是原型模式?原型模式的工作原理C#中如何实现原型模式?1. 定义原型接口2. 实现原型接口3

SpringBoot自定义注解如何解决公共字段填充问题

《SpringBoot自定义注解如何解决公共字段填充问题》本文介绍了在系统开发中,如何使用AOP切面编程实现公共字段自动填充的功能,从而简化代码,通过自定义注解和切面类,可以统一处理创建时间和修改时间... 目录1.1 问题分析1.2 实现思路1.3 代码开发1.3.1 步骤一1.3.2 步骤二1.3.3