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 a fields in a given stage odoo14 errors?

Iscriviti

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

La domanda è stata contrassegnata
crmv14
3 Risposte
4434 Visualizzazioni
Avatar
Jay

I trying am trying to hide fields as per the change of states in the statusbar eg 

when the state is new I want to show this field    


This is the error I am getting

Error: While parsing modifiers for field for modifier "invisible": Unknown field state in the domain


When I use this:


I get below error:

"Error: While parsing modifiers for field approved_date: for modifier" invisible ": Unknown field state in the domain

0
Avatar
Abbandona
Jay
Autore

Where I'm I going wrong here
<record id="crm_case_form_view_oppor_inherit_product" model="ir.ui.view">
<field name="name">crm.lead.oppor.inherited</field>
<field name="model">crm.lead</field>
<field name="inherit_id" ref="crm.crm_lead_view_form" />
<field name="arch" type="xml">
<xpath expr="//field[@name='lead']" position="after">
<field name = "name" string = "Name" attrs = "{'invisible': [('state', '! =', new)]}" />
</xpath>
</field>
</record>

Avatar
Boubaker Abdallah
Risposta migliore

Hi Jay,

may be badly formatted in xml

Try this 




0
Avatar
Abbandona
Avatar
Jay
Autore Risposta migliore
This is my field and the error I'm getting below.
approved_date" string = " approved_date" attrs = "{'invisible': [('state', '! =', new)]}" />
Odoo Server Error
Traceback (most recent call last): 
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ tools \ convert.py", line 677, in _tag_root 
    f (rec) 
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ tools \ convert.py", line 580, in _tag_record 
    record = model._load_records ([data], self.mode == 'update') 
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ models.py", line 4196, in _load_records 
    data ['record'] ._ load_records_write (data ['values']) 
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ addons \ base \ models \ ir_ui_view. Py", line 1842, in _load_records_write 
    super (View, self) ._ load_records_write (values)
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ models.py", line 4133, in _load_records_write 
    self.write (values) 
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ addons \ website \ models \ theme_models.py", line 267, in write 
    res = super (IrUiView, other_views) .write (vals) 
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ addons \ website \ models \ ir_ui_view.py", line 68, in write 
    return super (View, self) .write (vals) 
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ addons \ base \ models \ ir_ui_view.py", line 500, in write 
    res = super (View, self) .write (self._compute_defaults (vals)) 
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ models.py", line 3691, in write
    fields [0] .determine_inverse (real_recs) 
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ fields.py", line 1185, in determine_inverse 
    getattr (records, self.inverse) () 
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ addons \ base \ models \ ir_ui_view.py", line 300, in _inverse_arch 
    view.write (data) 
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ addons \ website \ models \ theme_models.py", line 267, in write 
    res = super (IrUiView, other_views) .write (vals) 
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ addons \ website \ models \ ir_ui_view.py", line 68, in write 
    return super (View, self) .write (vals)
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ addons \ base \ models \ ir_ui_view.py", line 500, in write 
    res = super (View, self) .write (self._compute_defaults (vals)) 
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ models.py", line 3681, in write 
    real_recs._validate_fields (vals, inverse_fields) 
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ models.py", line 1260, in _validate_fields 
    check (self) 
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ addons \ base \ models \ ir_ui_view.py", line 411, in _check_xml 
    )). with_traceback (e .__ traceback__) from None
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ addons \ base \ models \ ir_ui_view.py", line 391, in _check_xml 
    view.postprocess_and_fields (view_doc, validate = True) 
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ addons \ base \ models \ ir_ui_view.py", line 851, in postprocess_and_fields 
    arch, name_manager = self._postprocess_view (node, model, validate = validate) 
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ addons \ base \ models \ ir_ui_view.py", line 863, in _postprocess_view 
    self.postprocess (node, [], editable, name_manager) 
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ addons \ base \ models \ ir_ui_view.py", line 963, in postprocess
    self.postprocess (child, current_node_path, node_info ['editable'], name_manager) 
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ addons \ base \ models \ ir_ui_view.py", line 963, in postprocess 
    self. postprocess (child, current_node_path, node_info ['editable'], name_manager)
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ addons \ base \ models \ ir_ui_view.py", line 963, in postprocess 
    self.postprocess (child, current_node_path, node_info ['editable'], name_manager) 
  [Previous line repeated 1 more time] 
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ addons \ base \ models \ ir_ui_view.py", line 958, in postprocess
    transfer_node_to_modifiers (node, node_info ['modifiers'], self._context, current_node_path) 
  File "C: \ Program Files \ Odoo 14 \ server \ odoo \ addons \ base \ models \ ir_ui_view.py", line 66, in transfer_node_to_modifiers 
    modifiers. update (ast.literal_eval (attrs))
  File "C: \ Program Files \ Odoo 14 \ python \ lib \ ast.py", line 91, in literal_eval 
    return _convert (node_or_string) 
  File "C: \ Program Files \ Odoo 14 \ python \ lib \ ast.py", line 79, in _convert 
    map (_convert, node.values))) 
  File "C: \ Program Files \ Odoo 14 \ python \ lib \ ast.py", line 74, in _convert 
    return list (map (_convert, node.elts))
  File "C: \ Program Files \ Odoo 14 \ python \ lib \ ast.py", line 72, in _convert 
    return tuple (map (_convert, node.elts)) 
  File "C: \ Program Files \ Odoo 14 \ python \ lib \ ast.py", line 90, in _convert 
    return _convert_signed_num (node) 
  File "C: \ Program Files \ Odoo 14 \ python \ lib \ ast.py", line 63, in _convert_signed_num 
    return _convert_num (node) 
  File "C: \ Program Files \ Odoo 14 \ python \ lib \ ast.py", line 55, in _convert_num 
    raise ValueError ('malformed node or string:' + repr (node)) 
odoo.exceptions.ValidationError: Error while validating view: 

malformed node or string: 

The above exception was the direct cause of the following exception:


0
Avatar
Abbandona
Jay
Autore

@Boubaker Abdallah
Kindly post again.

Avatar
Sakthi Priya
Risposta migliore

<field name="name" string="Name" attrs="{'invisible': [('state','!=',new)]}"/>

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à
How can I create 3 pipelines in CRM that are independent from the main pipeline.
crm pipeline v14
Avatar
Avatar
Avatar
Avatar
Avatar
5
lug 24
16909
Attached PDF file is not formatted properly
v14
Avatar
Avatar
1
dic 25
407
Odoo14 alternative for Automated Translations through Gengo API module
v14
Avatar
Avatar
Avatar
Avatar
3
set 25
3838
Odoo Community v14 Slow on High-End Servers, Fast on i5/i7 PCs
v14
Avatar
0
ago 25
1223
How to Managing Birthdate and Age in Odoo
v14
Avatar
Avatar
1
ago 25
3629
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