Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
2 Antwoorden
9468 Weergaven

I try to replace one field in below form but get an error 


<record id="view_order_form" model="ir.ui.view">

            <field name="name">sale.order.form</field>

            <field name="model">sale.order</field>

            <field name="arch" type="xml">

                <form string="Sales Order" class="o_sale_order">

   ...

                   <sheet>

                     ...

                     <notebook>

                        ...

                        <page string="Other Information">

                            <group>

                               <group string="Sales Information" name="sales_person">

                                   ...

                                   <field name="related_project_id"

                                           attrs="{'readonly': ['|',('project_id','!=',False),('invoice_count','!=',0),             

                                           ('state','=','sale')],'invisible':[('state','!=','sale')]}"

                                           context="{'default_partner_id':partner_invoice_id, 'default_name':name}"

                                           groups="analytic.group_analytic_accounting"/>

                                </group>

                            </group>

                        </page>

                     </notebook>

                   </sheet>

               </form>

my xml:

(line 4)<record id="view_order_form_inherit" model="ir.ui.view">

            <field name="name">sale.order.form.inherit</field>

            <field name="model">sale.order</field>

            <field name="inherit_id" rel="sale.view_order_form"/>

            <field name="arch" type="xml">

                                <group string="Sales Information" name="sales_person">

                                    <xpath expr="//field[@name='related_project_id']" position="replace">

                                        <field name="related_project_id"

                                           attrs="{'readonly': ['|',('project_id','!=',False),('invoice_count','!=',0),

                                    ('state','=','sale'),('invoice_status','!=','to invoice')],'invisible':[('state','!=','sale')]}"

                                           context="{'default_partner_id':partner_invoice_id, 'default_name':name}"

                                           groups="analytic.group_analytic_accounting"/>

                                    </xpath>

                                </group>

            </field>

        </record>

Avatar
Annuleer
Beste antwoord

Hi,
The inherited code is correct except one thing that you have made a simple mistake here that's why the error is shown. That is you wrote the inheritance reference as 'rel' instead of 'ref'. This is the error in the mentioned code. So please follow the code given below;

<record id="view_order_form_inherit" model="ir.ui.view">


    <field name="name">sale.order.form.inherit</field>


    <field name="model">sale.order</field>


    <field name="inherit_id" ref="sale.view_order_form"/>


    <field name="arch" type="xml">


        <group string="Sales Information" name="sales_person">


            <xpath expr="//field[@name='related_project_id']" position="replace">


                <field name="related_project_id"


                       attrs="{'readonly': ['|',('project_id','!=',False),('invoice_count','!=',0),


                                ('state','=','sale'),('invoice_status','!=','to invoice')],'invisible':[('state','!=','sale')]}"


                       context="{'default_partner_id':partner_invoice_id, 'default_name':name}"


                       groups="analytic.group_analytic_accounting"/>


            </xpath>


        </group>


    </field>


</record>


Regards

Avatar
Annuleer
Beste antwoord

Hi,

Remove the following line from the inherited code and see,

<group string="Sales Information" name="sales_person">. also remove corresponding closing , </group>


Thanks

Avatar
Annuleer
Auteur

Hi Niyas, the same error indicated line 4: <record id="view_order_form_inherit" model="ir.ui.view">

Gerelateerde posts Antwoorden Weergaven Activiteit
2
dec. 19
2533
0
nov. 18
3095
1
apr. 15
12966
1
sep. 17
6729
1
aug. 24
1866