This question has been flagged
1 Reply
6514 Views

I am fairly new to OpenERP and don't have much experience as far as programming is concerned, so please bare with me.

I have a custom field in product.template which is a many2many field, tied to res.partner so it pulls up a list of customers in a form of checkboxes with the intention to indicate what customers buy what product.

Now, I am trying to have this data come up as a field in the Sales Order view when I click "search more" on the sales order line. I got the field to appear but there doesn't seem to be any data in it. The search window is using product.product.tree view in the sales order line which is obviously tied to the product.product object. So what seems to be happening is that my field is getting filled in on one spot (the product page), but the data doesn't go to the other. I have looked through the docs and I'm getting a bit confused. Seems like it should be a simple thing to ask for. So, to summarize, how do I make a field in the Product.Product Object which gets the same value as the Product.Template module?

Avatar
Discard
Best Answer

Product.product and Product.template are associate/compound object, One can access the field from template object just the way you access from the product object...

Example:

suppose you have product_id in your custom object,

then case.product_id.name_template [from product.product object]
like wise case.product_id.name [from product.template object]

So you can acces the columns just the way you acces from product object, most cases, the product and template will have same Database ID..

But if you feel you need a defined data to be fetch, then browse the template object by using foreign key present in the product object

 

Avatar
Discard