Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

How to hide the default buttons in a popup window(defined by "ir.actions.client")

Subscribe

Get notified when there's activity on this post

This question has been flagged
newtargetir.actionspopupwindowclientwidget
1 Reply
1744 Views
Avatar
FarmingWolf

Hi, everyone!

In odoo17, I tried to open a popup window using a client action. Here‘s the code:

client action definition in view xml:

<record id="estate_lease_contract_terminate_popup" model="ir.actions.client">
<field name="name">Confirm Terminate</field>
<field name="tag">estate_lease_contract.contract_terminate_dialog</field>
<field name="target">new</field>
</record>

static xml source for popup window:

<?xml version="1.0" encoding="utf-8"?>

<templates xml:space="preserve">

<t t-name="estate_lease_contract.ContractTerminateAction">
<div class="ms-1 mt-1">
<div class="align-self-center" style="display: flex; justify-content: center;">
<div>
<span>Please confirm the following jobs done, then click "Terminate" btton!</span>
<t t-foreach="terminate_todo_list" t-as="todo" t-key="todo.id">
<TodoItem todo="todo" toggleState.bind="toggleTodo" removeTodo.bind="removeTodo"/>
</t>
</div>
</div>
<div class="align-self-center" style="display: flex; justify-content: center;">
<div class="col-sm-5 mt16" style="display: flex; justify-content: center;">
<button class="btn btn-primary mb16" t-on-click="() => this.onClickTerminateContract()" t-att-disabled="this.confirm_button_disable()">
<div class="mb16 mt16">Terminate</div>
</button>
</div>
</div>
</div>
</t>
</templates>

static js source for popup window:

/** @odoo-module */

import {Component, useState} from "@odoo/owl";
import { registry } from "@web/core/registry";
import {useService} from "@web/core/utils/hooks";
import {TodoItem} from "./todo_item";

let todo_list = [
'Job A done!',
'Job B done!',
'Job C done!',
]

export class EstateLeaseContractTerminate extends Component {
static template = "estate_lease_contract.ContractTerminateAction";
static components = { TodoItem };

setup() {
this.action = useService("action");
this.terminate_todo_list = useState([]);
let i = 0;
for (const todo_c of todo_list) {
this.terminate_todo_list.push({
id: i,
description: todo_c,
isCompleted: false
});
i++;
}
if (this.footer) {
this.footer.destroy();
}
}
toggleTodo(todoId) {
const todo = this.terminate_todo_list.find((todo) => todo.id === todoId);
if (todo) {
todo.isCompleted = !todo.isCompleted;
}
}

removeTodo(todoId) {
const todoIndex = this.terminate_todo_list.findIndex((todo) => todo.id === todoId);
if (todoIndex >= 0) {
this.terminate_todo_list.splice(todoIndex, 1);
}
}

confirm_button_disable(){
for (const each_todo of this.terminate_todo_list) {
if (!each_todo.isCompleted) {
return true;
}
}
return false;
}

getURLParams() {
const urlParams = new URLSearchParams(window.location.hash.substring(1));

console.log(urlParams);
console.log(urlParams.get('id'));
const params = {};

urlParams.forEach((value, key) => {
params[key] = value;
});

console.log(params);
console.log(params['id']);
return params;
}

onClickTerminateContract(){
const params = this.getURLParams();
console.log(params);
console.log(params['id']);

this.action.doAction("estate_lease_contract.estate_lease_contract_terminate_svr_action",
{additionalContext: params});
}
}

registry.category("actions").add("estate_lease_contract.contract_terminate_dialog", EstateLeaseContractTerminate);

Through out the source code above, the default 'OK' button always displays in the popup window. How to hide the default 'OK' button in the footer of the popup window?

I have tried the following methods, but the default ok button is still there...

  1. adding params to the client action definition as below:<field name="params" eval="&quot;{'flags': {'form': {'action_buttons': False}}}&quot;"/>
  2. adding destroy in js setup() method: if (this.footer) {this.footer.destroy();}
  3. adding xpath expr="//footer" position="inside" to the view xml, but compile exception happend while server starting up because of "xml file does not fit the required schema! " or "Invalid field 'arch' on model 'ir.actions.client'" 

Is it possible to hide the default button in client popup window ?

0
Avatar
Discard
Avatar
FarmingWolf
Author Best Answer

I noticed source in form_view_dialog widget(.xml and .js):

<t t-if="props.preventEdit and props.preventCreate">
<button class="btn btn-primary" t-on-click="() => props.close()">Close</button>
</t>

May be there's some way to show close button instead of OK button.

But I open the popup window through out an "ir.actions.client" defined in my view.xml

<record id="estate_lease_contract_terminate_popup" model="ir.actions.client">
<field name="name">Confirm to Terminate</field>
<field name="tag">estate_lease_contract.contract_terminate_dialog</field>
<field name="target">new</field>
</record>

How to pass True to "props.preventEdit" and "props.preventCreate"?

0
Avatar
Discard
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Sign up
Related Posts Replies Views Activity
A custom form widget causes weird undesirable side effects
clientwidget
Avatar
0
Mar 15
6670
hide popup form default save/cancel buttons Solved
popupwindow odoo10
Avatar
Avatar
Avatar
Avatar
3
Oct 24
18682
Cobros con tarjeta
target card
Avatar
Avatar
1
Jan 24
1505
V15: how to make customisable for target in do_action?
action target
Avatar
Avatar
1
Nov 23
3529
after insaling -how to get modules Solved
installation new
Avatar
Avatar
Avatar
2
Sep 23
2545
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now