Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
3 Trả lời
23084 Lượt xem
  • 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.

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

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>       

 

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

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

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

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.

 

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
2
thg 3 19
27730
1
thg 1 23
1962
1
thg 9 23
4585
1
thg 9 18
300
4
thg 12 23
17552