تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
5 الردود
15931 أدوات العرض

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/

الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
0
أكتوبر 15
3835
1
مارس 15
3845
2
مارس 15
5517
1
مارس 15
5989
1
فبراير 25
7752