跳至內容
選單
此問題已被標幟
2 回覆
6143 瀏覽次數

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?

頭像
捨棄

please show an example

作者 最佳答案

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>

頭像
捨棄
最佳答案

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

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
1
9月 17
5392
0
3月 15
3433
1
5月 17
15185
0
9月 15
4074
1
3月 15
6158