Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Guest House
    • Drankenhandelaar
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Solar Energy Systems
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC Services
    Others
    • Nonprofit Organization
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

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

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

How to solve this problem Uncaught Error: Unknown field state in domain [["state","not in",["draft"]]]?

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
python2.7openerp7odooV8
4 Antwoorden
35935 Weergaven
Avatar
Mohammed Khamis

I work On hr Contract Of Employee when i open it's form this client side error Uncaught Error: Unknown field state in domain [["state","not in",["draft"]]] I want to know how to arrive to this domain in my code I can't find this domain in my code If any one faced this problem before please help me how to solve this issue 

thank you so much

0
Avatar
Annuleer
Avatar
Glenda Julia
Beste antwoord

You have to add the field 'state' in your form

<field name="state" invisible="1"/> 

2
Avatar
Annuleer
DIno

Thank you!

Avatar
HemKumar
Beste antwoord

Hi,

This is because, you defined domain or attributes for one2many field inside the tree view

INCORRECT :

<page string="Purchase Request">

<field name="order_line"> ----------- (one2many field)

<tree string="Purchase Req Order Lines" editable="bottom">

<field name="part_name" attrs="{'readonly':[('state','not in',('draft',))]}"/>

<field name="price_unit" attrs="{'readonly':[('state','not in',('draft',))]}"/>

<field name="sub_total" attrs="{'readonly':[('state','not in',('draft',))]}" />

</tree>

</field>

</page>

Correct :

<page string="Purchase Request">

<field name="order_line" attrs="{'readonly':[('state','not in',('draft',))]}"> ----------- (one2many field)

<tree string="Purchase Req Order Lines" editable="bottom">

<field name="part_name" />

<field name="price_unit"/>

<field name="sub_total" />

</tree>

</field>

</page>

- state field is present only in main class. Hope this may solve your problem

4
Avatar
Annuleer
Avatar
Emipro Technologies Pvt. Ltd.
Beste antwoord

Hi,

You just need to define "state" field into tree/form view of the HR Contract model.

I hope this issue will resolve.

0
Avatar
Annuleer
Mohammed Khamis
Auteur

thank you for your responding for me but I am try to make it but still error find , So If I find this domain where to find is more useful but I can't find it please if you know any easy way to find it please help me

Emipro Technologies Pvt. Ltd.

can you tell me that which module you were installed ? and in which version this error is there ? in you tag I can see openerp7 and odooV8 but both are different.

Mohammed Khamis
Auteur

I don't install any module this error appear when I change from tree view to form view and on odd 8

Avatar
Sergio Guzman
Beste antwoord

I know this is an old question, I'm answering if someone else happens to experience this.


I had the states attribute set in my class for another field, this attribute expects the state field to be defined in the file or though inheritance but I didn't have it and the view was not able to load because of this.

0
Avatar
Annuleer
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
Different header and footer in sale,purchase,invoice report
python2.7 openerp7 odooV8
Avatar
Avatar
Avatar
2
mrt. 15
5185
How to solve this error Integrity Error The operation cannot be completed, probably due to the following: - deletion: you may be trying to delete a record while other records still reference it - creation/update: a mandatory field is not correctly set [object with reference: order_id - order.id] ?
python2.7 openerp7 odooV8
Avatar
0
mrt. 15
4820
How to break from for loop in qweb? Opgelost
qweb python2.7 openerp7 odooV8
Avatar
Avatar
Avatar
Avatar
Avatar
5
dec. 23
23193
How to context.get from another object?
xml python2.7 openerp7 odooV8
Avatar
Avatar
1
mrt. 15
8960
How to add domain filter for the Analytic Account in Sales Order
python2.7 odooV8
Avatar
Avatar
1
apr. 25
4498
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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