What is the need for two different tables for Product Master in Odoo ? How product.product and product.template differ ?
相关问题
- “relation already exists” after adding a Many2many
- How to remove implied ids from group in odoo?
- How to give user groups(XML) in the model ir.actio
- How Can I wait for an Element will be visible then
- Why are my tests not running on Odoo 10?
相关文章
- How to auto login in Odoo's Web-module for res
- How to inherit or override js file in odoo?
- How to assign current date to a date field in odoo
- How the Delivery orders are created from Sale Orde
- How to browse or search One2many field in Odoo?
- Can we able to inherit and change the noupdate=“1”
- Recover admin password and email Odoo server
- Odoo: How to inherit menu items (make menu items i
Odoo has two models/tables for products because of product variants:
You can use product variants in Odoo by turning on "Products can have several attributes, defining variants" in Sales / Settings. With variants the product.template contains the main product (e.g. T-Shirt) and product.product contains the variants (e.g. T-Shirt size M, T-Shirt size L,...).
If you do not use variants, these two models and tables have almost the same content.
You can find more information on Odoo product variant from https://www.odoo.com/documentation/user/10.0/ecommerce/managing_products/variants.html.