4

I am working with the TreeView in OpenERP. But my tree view takes a long time to load. How can customize that?

enter image description here

I have defined a Many2many field in the product.product model.

product_ids = fields.Many2many(
    comodel_name='product.product', 
    relation='product_procurement_rel',
    column1='process_id',
    column2='product_id',
    string='Products'
)

How can I solve this?

ChesuCR
  • 9,352
  • 5
  • 51
  • 114
Harshit Trivedi
  • 764
  • 9
  • 33
  • Sometimes the `name_get` method (at least in previous versions) takes too long time in retrieving all the many2many field names. Is it that what's happening to you? – ChesuCR Nov 25 '17 at 18:16

0 Answers0