Skip to Content
Menu
This question has been flagged
2 Replies
9276 Views

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>
       

 

Avatar
Discard
Best Answer

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>
Avatar
Discard
Best Answer

Hi,

I think the issue of the priority of the inheritance. So, please make the change as below and see its effect.

<field name="priority" eval="20"/>

 

Avatar
Discard