Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

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

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
newtargetir.actionspopupwindowclientwidget
1 Rispondi
1737 Visualizzazioni
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
Abbandona
Avatar
FarmingWolf
Autore Risposta migliore

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
Abbandona
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
A custom form widget causes weird undesirable side effects
clientwidget
Avatar
0
mar 15
6664
hide popup form default save/cancel buttons Risolto
popupwindow odoo10
Avatar
Avatar
Avatar
Avatar
3
ott 24
18680
Cobros con tarjeta
target card
Avatar
Avatar
1
gen 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 Risolto
installation new
Avatar
Avatar
Avatar
2
set 23
2545
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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