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>