Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
5120 Widoki

hi to all,
firstly for give me about my quesstion , may be is not clear ( i am very new to openerp ).

when we add new product, there is tab to add supplier info.such as sec,name,limited delay, qty, etc.

en i need to appear data of suppier name info on tree view of product.product..

ould be great thanks for help.
thanks in advance

Awatar
Odrzuć

One2many fields are not feasible to put on the tree view, you might have multiple supplier records on one product and a list view cannot show all, but it will show only the number of suppliers. Thanks.

Najlepsza odpowiedź

Hi Henro,

If you want to retrive data of product supplier info.

1) You need to have browse record of product itself.

2) As product supplier info is one2many field than you need to iterate loop to get information of related supplier info.

Than, you can perform your next action for it.

For eg:

I already browse record of product.product model

Than you can get info like this:

for supplier_info in product.seller_ids:
    print "Access info of any fields which is defined in supplier info table", suppplier_info.name  
    print "Product Name:::", suppplier_info.product_name 
    #so on...


@Note: seller_ids is one2many field defined in product model.


Hope this will helps you.

Regads,

Anil.



Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
0
cze 16
3487
2
paź 17
8390
3
lut 25
3501
0
maj 24
46
1
kwi 24
3330