Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
2 Trả lời
6271 Lượt xem

I have a one2many field in res.partner. How i code the one2many field in aeroo report?

Any one knows , how to print one2many field in aeroo report?

Ảnh đại diện
Huỷ bỏ

please show an example

Tác giả Câu trả lời hay nhất

I had find out a solution for this.

Code is <for each="line in o.one2many field in res.partner table">

<line.fieldname in="" one2many="" field.columnname="">

</for>

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

I cand did it.. im new at this pls explain wih this example:

_name = 'gs.pet'

_columns= {

          'pet_id': fields.char('Código', size=20, required='True'),
           'name': fields.char('Nome', size=60, required='True'),
           'owner_id':fields.many2one('gs.owner','ID_owner'),
           'register_data': fields.date('Data de Registo', required='True'),
           'gender':fields.selection([(1,'Macho'),(2,'Femea')],'Gender',required='True'),
           'born_date':fields.date('Data de Nascimento',required='True'),
           'imagemPet': fields.binary('Imagem'),
            'active': fields.boolean('Activo')
           }

_name = 'gs.owner'

_columns= {

           'owner_id': fields.one2many('gs.pet', 'owner_id','Pets'),
           'name': fields.char('Name', size=60, required='True'),
           'street':fields.char('Adress',size=60, required='True'),
           'phone':fields.char('Phone',size=15, required='True'),
           'imagemOwner': fields.binary('Imagem'),
           'active': fields.boolean('Activo')
           }

I want to list all the pets of the owner I dont know what can I do

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 9 17
5586
0
thg 3 15
3539
1
thg 5 17
15683
0
thg 9 15
4202
1
thg 3 15
6308