<field name="file_type" attrs="{'readonly':[('field_type','!=', False)]}" on_change="onchange_file_type(file_type)" />
it causes the error as follows,
Uncaught Error: Unknown field field_type in domain [["field_type","!=",false]]
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
<field name="file_type" attrs="{'readonly':[('field_type','!=', False)]}" on_change="onchange_file_type(file_type)" />
it causes the error as follows,
Uncaught Error: Unknown field field_type in domain [["field_type","!=",false]]
you can use this in the xml.view.
<field name="field_type"/>
<field name="file_type" attrs="{'readonly':[('field_type','=True)]}" on_change="onchange_file_type(file_type)" />
I think there is no field named field_type. it should be file type. just change your attrs like
attrs="{'readonly':[('file_type','!=', False)]}"
or
if you have field_type field on your model, then put it in the form view. you can make it invisible.
[Note: Is there a field "field_type" defined in your object
If field is unavailable, then modify your
<field name="file_type" attrs="{'readonly':[('file_type','!=', False)]}" on_change="onchange_file_type(file_type)" />
]
field_type needs to be defined in your FORM view.
Generally,
when we try to use a field in the domain, it needs to be defined in its respective view. Also, it works even if the field is hidden
<field name="field_type" invisible="1" />
It works .. but when i try to save the following error occured,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: file_type - file.type]
Erstellen Sie heute ein Konto, um exklusive Funktionen zu nutzen und mit unserer tollen Community zu interagieren!
Registrieren
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.
[["field_type","!=",false]] or [["file_type","!=",false]] ??
What??