跳至内容
菜单
此问题已终结
2 回复
3324 查看

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.

形象
丢弃
最佳答案

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>

形象
丢弃
编写者 最佳答案

Thanks a lot, Atchunthan!

形象
丢弃
相关帖文 回复 查看 活动
1
8月 25
103
2
6月 25
1662
0
3月 25
1539
0
2月 25
1183
3
8月 24
5881