Skip to Content
Menú
This question has been flagged
2 Respostes
3297 Vistes

Is there any way to keep 2 references for a single product?

The use case is like this:

1. A company have managed product numbers to identify products.

2. At some point of time, that company changed the numbering system.

3. However, still many customers request quotation based on the old numbers.

4. Internally the company manages product inventory, purchase, etc. based on new numbers.

5. So we need to keep old and new numbers as references for product at the same time.

If it is supported out of the box by Odoo, can you provide instruction on how to?

If it's not, then how much effor would be needed and can you provide a overall explanation on how to implement it?

Thanks in advance.

Regards,

Kibong.

Avatar
Descartar
Best Answer

Try these steps

1. Add a new field 'old_code' or something.
2. Change name_get and name_search function of product.product with old_code also.
3. Show field in TREE view of products
4. Modify search view for product name.
        <record model="ir.ui.view" id="product_product_search_form_view_inherit">
            <field name="model">product.product</field>
            <field name="inherit_id" ref="product.product_search_form_view" />
            <field name="arch" type="xml">
                <field name="name" position="replace">
                    <field name="name" string="Product"
                        filter_domain="['|','|',('name','ilike',self),('default_code','ilike',self),('old_code','ilike',self)]" />
                </field>
            </field>
        </record>

Avatar
Descartar
Autor Best Answer

Thanks a lot, Atchunthan!

Avatar
Descartar
Related Posts Respostes Vistes Activitat
2
de juny 25
1575
0
de març 25
1430
0
de febr. 25
1100
3
d’ag. 24
5799
1
d’abr. 24
33