Ir al contenido
Menú
Se marcó esta pregunta
3 Respuestas
23117 Vistas
  • Parent Record
  •        (One to many)
  •         Child Record1------>(One to many)-->Child Child Record1
  •                                                                  -->Child Child Record12     
  •          child Record2------>(One to many)-->Child Child Record3
                                                                     -->Child Child Record4

How Can show above structure in opnerp tree and form ....? but Before it is show record count  after clicking it showing record.

Avatar
Descartar
Mejor respuesta

The below sample code design based on your requirement.

pyhton code:-

class sample_order(osv.osv):
    _name = "sample.order"
    _columns = {
       'name'    : fields.char('Name',  size=64),
       'order_line': fields.one2many('sample.order', 'line_id', 'Order Lines'),
        }

class sample_order_line(osv.osv):        
    _name = "sample.order.line"
    _columns = {
       'name'    : fields.char('Name',  size=64),
       'order_subline': fields.one2many('sample.order.line', 'subline_id', 'Order Lines'),
       'line_id'       : fields.many2one('sample_order', 'Line'),
        }    
 
class sample_line_subline(osv.osv):
_name = "sample.line.subline"
    _columns = {
       'name'    : fields.char('Name',  size=64),
       'subline_id'       : fields.many2one('sample.order.line', 'Line'),
               }    
             

xml file:-

<?xml version="1.0" encoding="utf-8"?>
<openerp>
    <data>
    <record id="view_sample_order_form" model="ir.ui.view">
      <field name="name">sample.order.form</field>
      <field name="model">sample.order</field>
      <field name="type">form</field>
      <field name="arch" type="xml">
      <form string="Sample Order">
        <field name="name"/>
        <notebook colspan="4">
          <page string="Order Line">
           <field name="order_line" nolabel="1" colspan="4">
            <form string="Order">
               <field name="name"/>
                <notebook colspan="4">
                   <page string="Sub Line">
                     <field name="order_subline" nolabel="1" colspan="4">
                      <form string="Sub Line">
                         <field name="name"/>
                      </form>
                      <tree string="Sub Line">
                         <field name="name"/>
                      </tree>
                      </field>
                    </page>
                </notebook>
            </form>
            </field>
            </page>    
        </notebook>
        </form>
        </field>
    </record>
    </data>
</openerp>       

 

Avatar
Descartar
Mejor respuesta

I got the same question! Prakash's answer works for me, thanks!

Avatar
Descartar
Mejor respuesta

sample.order.line: when i am clicking on sample.order.line it is showing sample.line.subline. But i do want like that it have show while loding the page it self.

In the 1st table self i want the 2nd data (but in another pop up) 

In the 2nd table self i want the 3rd data (but in another pop up) 

i am unable to shar the image, due to site portal bug.

If you are able to give email id so that we can share image of the requiremnt.

 

Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
2
mar 19
27822
1
ene 23
2003
1
sept 23
4637
1
sept 18
300
4
dic 23
17607