Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
3 Răspunsuri
23089 Vizualizări
  • 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.

Imagine profil
Abandonează
Cel mai bun răspuns

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>       

 

Imagine profil
Abandonează
Cel mai bun răspuns

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

Imagine profil
Abandonează
Cel mai bun răspuns

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.

 

Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
2
mar. 19
27736
1
ian. 23
1964
1
sept. 23
4588
1
sept. 18
300
4
dec. 23
17557