Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
2 Odpovědi
3302 Zobrazení

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
Zrušit
Nejlepší odpověď

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
Zrušit
Autor Nejlepší odpověď

Thanks a lot, Atchunthan!

Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
2
čvn 25
1605
0
bře 25
1471
0
úno 25
1126
3
srp 24
5822
1
dub 24
33