Ir al contenido
Menú
Se marcó esta pregunta
2 Respuestas
3298 Vistas

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
Mejor respuesta

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 Mejor respuesta

Thanks a lot, Atchunthan!

Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
2
jun 25
1577
0
mar 25
1435
0
feb 25
1103
3
ago 24
5801
1
abr 24
33