Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

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

Odoberať

Get notified when there's activity on this post

This question has been flagged
newtargetir.actionspopupwindowclientwidget
1 Odpoveď
1739 Zobrazenia
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
Zrušiť
Avatar
FarmingWolf
Autor 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
Zrušiť
Enjoying the discussion? Don't just read, join in!

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
A custom form widget causes weird undesirable side effects
clientwidget
Avatar
0
mar 15
6665
hide popup form default save/cancel buttons Solved
popupwindow odoo10
Avatar
Avatar
Avatar
Avatar
3
okt 24
18681
Cobros con tarjeta
target card
Avatar
Avatar
1
jan 24
1502
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
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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