Odoo Help
Odoo is the world's easiest all-in-one management software. It includes hundreds of business apps:
CRM
|
e-Commerce
|
Accounting
|
Inventory
|
PoS
|
Project management
|
MRP
|
etc.
Uncaught Error: QWeb2 - template['ListView.row']: Runtime Error: Error: Unknown field state in domain [["state","not in",["draft"]]](SOLVED)
I want to add 2 fields in pos.order.line for discount.. but when i click the Add an item in pos.order.line there is an error occured:
"Uncaught Error: QWeb2 - template['ListView.row']: Runtime Error: Error: Unknown field state in domain [["state","not in",["draft"]]]"
Can anyone here knows how to resolve this??
Here's my code:
<record model="ir.ui.view" id="company_form_view">
<field name="name">company.pos.form.view</field>
<field name="model">pos.order</field>
<field name="priority" eval="1"/>
<field name="inherit_id" ref="point_of_sale.view_pos_pos_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='session_id']" position="after">
<field name="warehouse_id"/>
</xpath>
<xpath expr="//field[@name='lines']/tree/field[@name='discount']" position="after">
<field name="bo_disc"/>
<field name="cod_disc"/>
</xpath>
</field>
</record>
I have the same error, if you find solution tell me please . this is a part of my code
Error: QWeb2 - template['ListView.rows']: Runtime Error: Error: QWeb2 - template['ListView.row']: Runtime Error: Error: Champ state inconnu dans le domaine [["state","in",["done"]]]<record model="ir.ui.view" id="crm_case_tree_view_leads">
<field name="name">Leads</field>
<field name="model">crm.lead</field>
<field name="arch" type="xml">
<tree string="Leads" decoration-bf="message_needaction==True" decoration-muted="probability == 100">
<field name="date_deadline" invisible="1"/>
<field name="create_date"/>
<field name="name" string="Lead"/>
<field name="contact_name"/>
<field name="country_id"/>
<field name="email_from"/>
<field name="phone"/>
<field name="stage_id"/>
<field name="user_id" invisible="1"/>
<field name="partner_id" domain="[('is_aband','=',False)]"/>
<field name="user_id"/>
<field name="probability" invisible="1"/>
<field name="campaign_id" invisible="1"/>
<field name="referred" invisible="1"/>
<field name="medium_id" invisible="1"/>
<field name="message_needaction" invisible="1"/>
</tree>
</field>
</record>
About This Community
This platform is for beginners and experts willing to share their Odoo knowledge. It's not a forum to discuss ideas, but a knowledge base of questions and their answers.
RegisterOdoo Training Center
Access to our E-learning platform and experience all Odoo Apps through learning videos, exercises and Quizz.
Test it nowQuestion tools
Stats
Asked: 11/18/14, 9:41 PM |
Seen: 3589 times |
Last updated: 7/4/17, 5:30 AM |