Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
5 Ответы
15914 Представления

Is there a way to filter products, by product_code from supplierinfo?

Аватар
Отменить
Лучший ответ

Add this to your Inherited View of the base Search View:


Then you can find this product ...


Like this ...


Аватар
Отменить
Лучший ответ

Hi,

If the requirement is only to search products with 'Supplier Product Code', then there is no need for creating any functional field. Create a related field and Include this field in Search View.

'product_code' : fields.related('seller_ids', 'product_code',  string='Supplier Product Code', type='char', size=64)

Аватар
Отменить
Лучший ответ

I started working on that. So far I found out how to add the field showing the Supplier Code of the default Supplier but have issues making it searchable.

In /product/product.py change the function _calc_seller adding field:

'seller_product_code': main_supplier and main_supplier.product_code or False

then in the class product_product add field:

'seller_product_code': fields.function( _calc_seller, type='string',string='Supplier Reference Code',multi="seller_info"),

You can easily make it visible in the tree view. just add:

<field name="seller_product_code" string="Supplier Refference"/>

in product_product_tree_view in /product/product_view.xml

Now to search in this field is more complicated cause it is a calculated field: fields.function( _calc_seller,... Either it has to be stored (I couldn't make it work), or to provide _fnct_search (how do you do that?) Or maybe it doesn't need to be function field since the Supplier Code is already in stored in the database, but it uses function to get the code of the default supplier (the one with the most priority).

Can someone can help with this?

Аватар
Отменить

The correct code would be: 'seller_product_code': fields.function( _calc_seller, type='char',string='Supplier Reference Code',multi="seller_info",store=True)

Лучший ответ

Hi @Branimir, I am also looking for the same kind of feature.  User shall be able to search products by "Supplier Product code".  

I tried your above solution.  But did not work for me.  Please help me if I need to do any thing more.

I am getting following error:

ProgrammingError: column product_product.seller_product_code does not exist LINE 1:   ...ct."default_code",product_product."name_template",product_pr...

I could not find place to comment.  So I am putting in answer block.  Sorry.

Аватар
Отменить
Лучший ответ

Use module following module from Akretion : 

https://www.odoo.com/apps/modules/7.0/product_search_supplier_code/

Аватар
Отменить
Related Posts Ответы Просмотры Активность
0
окт. 15
3801
1
мар. 15
3843
2
мар. 15
5505
1
мар. 15
5979
1
февр. 25
7751